2021-05-12 14:32:11
樹莓派3B 安裝Ubuntu Mate筆記
1、系統安裝
1.1、下載Ubuntu-mate映象:https://ubuntu-mate.org/raspberry-pi/
下載SDFormatterv4:https://www.sdcard.org/downloads/formatter_4/
下載Win32DiskImager:https://sourceforge.net/projects/win32diskimager/
1.2、準備一張大於8GB的TF卡,使用SDFormatterv4格式化TF
1.3、用Win32DiskImager將ubuntu-mate映象(ubuntu-mate-16.04-desktop-armhf-raspberry-pi.img)寫入TF中
2、系統設定
2.1、修改檔案系統大小
輸入sudo fdisk /dev/mmcblk0
輸入d 回車
輸入2 回車
輸入n 回車
輸入p 回車
輸入2 回車
輸入 迴車 迴車 w 回車
然後重新啟動系統後輸入sudo resize2fs /dev/mmcblk0p2
再重新啟動系統
2.2、設定網路檔案共用
2.2.1、安裝Samba
sudo apt-get install samba sudo apt-get install smbclient
2.2.2、設定Samba
sudo nano /etc/samba/smb.conf
在檔案尾新增:
[share] comment=this is Linux share directory path=/home/ public=yes writable=yes
儲存Ctrl+o退出Ctrl+x
2.2.3、啟動Samba服務:
sudo /etc/init.d/samba restart
在Windows下存取共用目錄:
192.168.1.102share
2.3、設定VNC遠端控制
2.3.1、安裝tightvncserver
sudo apt-get install tightvncserver
2.3.2、設定密碼
vncpasswd
2.3.3、設定開機自啟動
sudo nano /etc/init.d/tightvncserver
輸入:
#!/bin/sh ### BEGIN INIT INFO # Provides: tightvncserver # Required-Start: $local_fs # Required-Stop: $local_fs # Default-Start: 2 3 4 5 # Default-Stop: 0 1 6 # Short-Description: Start/stop tightvncserver ### END INIT INFO # More details see: # http://www.penguintutor.com/linux/tightvnc ### Customize this entry # Set the USER variable to the name of the user to start tightvncserver under export USER='pi' ### End customization required eval cd ~$USER case "$1" in start) # 啟動命令列。此處自定義解析度、控制台號碼或其它引數。 su $USER -c '/usr/bin/tightvncserver -depth 16 -geometry 960x600 :1' echo "Starting TightVNC server for $USER " ;; stop) # 終止命令列。此處控制台號碼與啟動一致。 su $USER -c '/usr/bin/tightvncserver -kill :1' echo "Tightvncserver stopped" ;; *) echo "Usage: /etc/init.d/tightvncserver {start|stop}" exit 1 ;; esac exit 0
儲存Ctrl+o退出Ctrl+x
2.3.4、設定檔案許可權,更新開機自啟動列表
sudo chmod 777 /etc/init.d/tightvncserver sudo update-rc.d tightvncserver defaults
2.3.5、在Windows或Android VNC用戶端連線:192.168.1.102:5901即可
2.4、設定Windows遠端桌面
2.4.1、安裝xrdp
sudo apt-get install xrdp
2.4.2、Windows端使用mstsc.exe連線即可
2.5、安裝輸入法
2.5.1、安裝ibus
sudo apt-get install ibus sudo apt-get install ibus-pinyin
2.5.2、設定ibus輸入法:系統設定->語言支援->鍵盤輸入方式系統 改為 IBus
2.6、更新
sudo apt-get update sudo apt-get upgrade
sudo rpi-update
本文永久更新連結地址:http://www.linuxidc.com/Linux/2016-10/136433.htm
相關文章