首页 > 代码库 > 树莓派安装笔记
树莓派安装笔记
硬件树莓派B+
软件 2017-01-11-raspbian-jessie.img 树莓派官方的系统
测试了fedroa arm 25 、centos 7 arm 和ubuntu arm 最后还是会到了官方的系统,因为其他几个系统的要么桌面有问题,要么运行起来超级慢尤其是fedroa,慢指的图形化模式下
设置安装源,可以直接使用阿里云的
http://mirrors.aliyun.com/help/raspbian
一、安装vim ,自带会出现按上下左右变成AWSD的现象,这个和ubuntu的vim是同一个问题(总于明白老外为啥喜欢nano了)
卸载系统自带的vim
sudo apt-get remove vim-common
重新安装vim
sudo apt-get install vim
终于可以顺畅的使用vi了
二、安装中文语言包
1、aptitude install locales
2、dpkg-reconfigure locales
3、进入选择:
zh_CN GB2312
zh_CN.GBK
zh_CN.UTF-8
en_US.UF84、apt-get install xfonts-intl-chinese xfonts-wqy
三、安装中文输入法
1、apt-get install scim
2、apt-get install scim-chinese
3、apt-get install scim-pinyin
四、开启ssh终端
apt-get install -y openssh-server
update-rc.d enable 3 5 #开机自启动
五、搜索软件包
apt-cache search all|grep 需要的软件包名
六、安装libreoffice中文语音包
apt-get install -y libreoffice-l10n-zh-cn libreoffice-help-zh-cn
树莓派安装笔记