- 1. 更新到最新的软件包
Open up System -> Administration -> Update Manager Click on Settings Open the Updates Tab Set ‘Release upgrade‘ to ‘Never‘. That makes the option to upgrade to Karmic go away. Close the settings dialog box. Click on ‘Check‘ to check for upgraded packages. It will look for packages that are upgraded from the version that is installed on your box. Choose to install the upgrades. This will take a while on a freshly installed box. |
- 2. 安装代码编辑工具
sudo apt-get install vim-gtk |
- 3. 安装网络工具
TFTP服务器
sudo apt-get install tftp-hpa tftpd-hpa |
# /etc/default/tftpd-hpa TFTP_USERNAME="tftp" TFTP_DIRECTORY="/tftpboot" TFTP_ADDRESS="0.0.0.0:69" TFTP_OPTIONS="-l -c -s" |
sudo mkdir /tftpboot sudo chmod 777 /tftpboot sudo service tftpd-hpa restart |
$tftp tftp服务器地址 >get 文件名(取文件) >put 文件名(发送文件) >quit (退出) |
例子:set bootcmd tftpboot c0008000 192.168.1.10:kernel.img\; bootm c0008000 |
NFS服务器
|
SAMBA服务器
1:安装SAMBA服务器及客户端 sudo apt-get install samba sudo apt-get install smbfs sudo apt-get install system-config-samba |
2:修改配制文件 sudo cp /etc/samba/smb.conf /etc/samba/smb.conf.bck sudo vim /etc/samba/smb.conf 只留下[global] |
3:打开配制工具 sudo system-config-samba 配制samba用户和共享目录 |
4:重启SAMBA sudo /etc/init.d/smbd restart |
5:windows下 \\samba服务器地址 |
SSH
sudo apt-get install openssh-server openssh-client |
修改主机名
sudo vim /etc/hostname