系統:Ubuntu 8.10
現在如果電腦不能上網,真的…不太能幹嘛,大概只能看影片吧~
所以能上網是很重要的,所以記錄一下怎麼設定網路。
首先:編輯 /etc/network/interfaces
sudo vi /etc/network/interfaces
DHCP 設定方式:
auto eth0
iface eth0 inet dhcp
Static 設定方式:
auto eth0
iface eth0 inet static
address 192.168.1.90
netmask 255.255.255.0
gateway 192.168.1.254
接著設定 DNS:
sudo vi /etc/resolv.conf
輸入:
nameserver 168.95.1.1
然後重新啟動網路服務:
sudo /etc/init.d/networking restart
測試一下可不可以ping的到外面的網路:
ping xuite.net
PING 的到就完成了。
更詳細的內容可以參考:Ubuntu Networking Configuration Using Command Line
chown -> 改變擁有者。
chgrp -> 改變群組擁有者。
chmod -> 改變讀、寫和執行權限。
chown root:user1 /home/.....
chgrp root /home/...
chmod -c -R(底下所有資料夾權限) /_
假設阿舍要刪除 /home/ayu/xyz 資料夾和它底下的所有檔案及子資料夾,那就可以用下面這個指令來操作,執行完成之後,xyz 這個資料夾就會和它底下的檔案和子資料夾一起消失哩 !
sudo rm -rf /home/ayu/xyz
http://ahhafree.blogspot.tw/2011/11/ubuntulinux.html
#6 回覆: 無法進入ubuntu...
sudo chown username:username /home/username/.ICEauthority
sudo chmod 600 /home/username/.ICEauthority
[ubuntu] Could not update ICEauthority file /home/test/.ICEauthority
留言列表