树莓派安装Ubuntu mate15.10 系统笔记 machh的专栏 CSDN博客
树莓派安装Ubuntu mate15.10-系统笔记_machh的专栏-CSDN博客
设置root账户
sudo passwd root
之后输入两遍root的密码 然后
sudo passwd--unlock root
1. 更换软件源(apt-get sources)
sudo nano /etc/apt/sources.list
中科大镜像主页:<https://lug.ustc.edu.cn/wiki/mirrors/help/raspbian>
清华镜像主页:<https://mirrors.tuna.tsinghua.edu.cn/raspbian/raspbian/>
sudo nano``/etc/apt/sources``.list
编辑
/etc/apt/sources.list文件。
删除原文件所有内容,用以下内容取代:
deb <http://mirrors.ustc.edu.cn/raspbian/raspbian>/ wheezy main non-free contrib
deb-src <http://mirrors.ustc.edu.cn/raspbian/raspbian>/ wheezy main non-free contrib
编辑此文件后,请使用sudo apt-get update
命令,更新软件列表。
Ctrl+O保存文件 【M+B】,Ctrl+X退出编辑器,
然后执行命令更新软件列表:
sudo apt-get update
2.设置SSH
详细:ubuntu安装 ssh
判断是否安装ssh服务,命令:sshlocalhost
如果提示: ssh:connecttohostlocalhostport22:Connectionrefused 就表示没有还没有安装SSH,
安装命令:sudoapt-getinstallopenssh-server 卸载命令:sudoapt-getremoveopenssh-server
确认是否安装正常 ps-e|grepssh 1418?00:00:00sshd 看到sshd那说明ssh-server已经启动了
如果没有则可以这样启动:sudo/etc/init.d/sshstart或者servicesshstart sudo /etc/init.d/ssh restart重启
ssh-server配置文件为:/etc/ssh/sshd_config,更改配置需重启SSH服务。
3.扩展可用空间
- 输入sudo fdisk /dev/mmcblk0后【0零 ,l小写L】
- d 回车
- 2 回车
- n 回车
- p 回车
- 2回车
- 然后提示first xxxx 这时候按 回车
- 之后提示Last xxxxx 按回车
- 最后按w 回车
- sudo reboot
-
重启后 再打开终端输入sudo resize2fs /dev/mmcblk0p2
-
sudo reboot
详细 : 扩展树莓派中的SD卡空间
4.安装VNC
1、sudo apt-get update
2、sudo apt-get install tightvncserver
3、开启服务器
tightvncserver 备注:第一个开启需要配置密码
4、VCN的简单控制
1) 停止VNC窗口:vncserver -kill:1
2) 修改密码:vncpasswd
3) 重启服务器:service vncserver restart
远程桌面(mstsc.exe)连接树莓派
sudo``apt-get``install``xrdp
5.设置分辨率
树莓派-设置屏幕分辩率.note
树莓派屏幕旋转角度参数.note
树莓派 配置文档 config.txt 说明 .note
6.安装samba
Ubuntu15.04安装samba服务.note
7,设置中文
打开 控制中心 (在面板的系统里)点击languages support
检查语言系统
点击安装
重启即可
8.安装中文输入法
这里安装的是fcitx的拼音输入法:
sudo apt-getinstall fcitx fcitx-sunpinyin
sunpinyin是基本的拼音输入,如果需要云词库拼音,也建议安装google拼音和云拼音
sudo apt-getinstall fcitx-googlepinyin
sudo apt-getinstall fcitx-module-cloudpinyin
另一个开源输入法RIME在树莓派下效果很好,基于fcitx安装也很方便 1. sudo apt-get install fcitx-rime
9.root账户开启SSH登陆
参考文章
Ubuntu mate 系统配置>树莓派吧(baidu)