ubuntu 重啟網路命令:
sudo /etc/init.d/networking restart sudo service networking start
ubuntu 重啟網絡卡命令:先關閉介面:sudo ifconfig eth0 down 然後開啟:sudo ifconfig eth0 up
ubuntu 關閉防火牆:
sudo ufw disable
ubuntu配置靜態ip:
$ sudo vim /etc/network/inte***ces
configure static ip
auto eth0
iface eth0 inet static
address 192.168.0.5
gateway 192.168.0.253
netmask 255.255.255.0 n
fs 配置
開發板和主機之間共享檔案,常常需要配置nfs服務:
伺服器端
安裝:root#:apt-get install nfs-common
root#:apt-get install nfs-kernel-server
重啟nfs 服務:
/etc/init.d/nfs-kernel-server start (可選stop, restart)
客戶端:
目標板上,掛載nfs服務端共享的資料夾:
mount [server ip]:/[share dir] [local mount poin]
例如:mount -o nolock -t nfs 192.168.1.3:/home/nfs-share /mnt/nfs
這樣就可以訪問主機的檔案了。
tftp 服務配置
sudo apt-get install tftpd tftp xinetd
2、建立配置檔案
在/etc/xinetd.d/下建立乙個配置檔案tftp
sudo vi tftp
在檔案中輸入以下內容:
service tftp
儲存退出
4、tftp 重新啟動服務
sudo /etc/init.d/xinetd restart
在使用put 的時候,一定要現在/tftpshare 目錄中建立乙個名為將put的新檔案,且許可權為777否則失敗。
5:ubuntu 檢視gdb 版本資訊:
gdb --version
6.安裝ssh服務 default port
$sudo apt-get instal openssh-server //server
$sudo apt-get install openssh-client //client
$sudo /etc/init.d/ssh start // start ssh service
ubuntu常用操作
第一步 ubuntu主機名位於 etc hostname裡,將其修改為自己需要的名稱。第二步 修改 etc hosts檔案,將其中127.0.1.1對應的主機名更改為新的主機名,與 etc hostname裡的主機名一致。第三步 重啟系統。ubuntu 12.04中,針對系統啟動的時候執行的prof...
Ubuntu常用操作指令
2 報錯 1 若a為檔案,b為目錄,則將a移入到資料夾b中 2 若a b均為檔案,則是將a重新命名為b 3 若a b均為資料夾 當b存在時,則是將a資料夾移入到b資料夾中 當b不存在時,則是將a改名為b 注意 該指令實在a所在目錄下執行。mkdir a b c 同時建立多個目錄 mkdir p aa...
ubuntu常用指令以及操作
安裝包命令 安裝deb包 deb是debian linus的安裝格式,跟red hat的rpm非常相似,最基本的安裝命令是 dpkg i file.deb dpkg 是debian package的簡寫,是為debian 專門開發的套件管理系統,方便軟體的安裝 更新及移除。所有源自debian的li...