1. 安裝、配置、啟動ftp服務
a. 執行安裝ftp服務命令: sudo apt-get install vsftpd
b. 修改vsftpd的配置檔案/etc/vsftpd.conf,將以下幾行前面的「#」符號去掉
#local_enable = yes #表示是否允許本地使用者登入
#write_enable = yes #表示是否允許使用者上傳檔案
c. 執行從新啟動ftp服務命令: sudo /etc/init.d/vsftpd restart
2. 安裝、配置、啟動shh服務
a. 執行安裝shh服務命令: sudo apt-get install openssh-server
b. 它的配置檔案是/etc/shh/shhd_config。預設配置即可。
3. 安裝、配置、啟動nfs服務
a. 執行安裝nfs服務命令: sudo apt-get install nfs-kernel-server portmap
b. nfs配置檔案問/etc/exports,通過編輯軟體在檔案尾端新增以下內容
/work/nfs_root *(rw,sync,no_root_squash)
c. 從新啟動nfs命令: sudo /etc/init.d/nfs-kernel-server restart
ubuntu 網路配置
進入網路配置檔案 sudo vi etc network inte ces 在這裡你應該會看到如下內容 auth lo iface lo inet loopback 這個正是 lo回環,我需要讓這台執行 ubuntu server 的機子通過 dhcp 獲得ip 來加入網路,那麼我只需要在上面的 l...
Ubuntu 網路配置
1 sudo vi etc network inte ces 更改配置為 autoeth0 ifaceeth0 inet static address 192.168.3.90 gateway 192.168.3.1 netmask 255.255.255.0 sudo etc init.d net...
ubuntu 網路配置
檢查網路配置命令 ifconfig 4 如果以dhcp方式配置網絡卡,則改為 auto eth0 iface eth0 inet dhcp 也可以在命令列下直接輸入下面的命令來獲取位址 sudo dhclient eth0 5 配置dns伺服器的位址,最多可以使用3個dns伺服器 sudo vi e...