Soft-float Debian “wheezy”


Soft-float Debian “wheezy”
 
【前言】 
安装的操作系统,适合开发者,官方明确指出,JVM的支持版本。 
2012-08-08-wheezy-armel 
SSH中启动配置界面的命令,包括修改分区,修改内存等功能 
raspi-config 
默认用户名密码 
Username: pi Password: raspberry 
  www.2cto.com  
【修改以太网卡】 
auto eth0 
iface eth0 inet static 
address 192.168.2.100 
netmask 255.255.255.0 
gateway 192.168.2.1 
 
重启命令 
/etc/init.d/networking restart 
  www.2cto.com  
【启用root帐号】 
启用root 
sudo passwd root 
禁用root 
sudo passwd -l root 
 
【升级系统】 
sudo apt-get update 更新源 
sudo apt-get upgrade 更新已安装的包 
sudo apt-get dist-upgrade 升级系统 
sudo apt-get clean && sudo apt-get autoclean 清理无用的包 
 
【安装vim】 
1 设置文件夹颜色 
vi /root/.bashrc 
去掉注释 
export LS_OPTIONS='--color=auto' 
eval "`dircolors`" 
alias ls='ls $LS_OPTIONS' 
alias ll='ls $LS_OPTIONS -l' 
alias l='ls $LS_OPTIONS -lA' 
source /root/.bashrc 
文件夹颜色生效 
 
2 设置编辑文件颜色 
/etc/vim/vimrc 
去掉(20行) 
syntax on前面的引号" 
 
【切换标准的bash shell】 
ubuntu 默认使用dash解释 
sudo dpkg-reconfigure dash 
选择:否

相关内容

    暂无相关文章