修改树莓派交换分区 SWAP
sudo nano /etc/dphys-swapfile
将 CONF_SWAPSIZE 的值修改成你想要的大小。 一般在内存小于2G的情况下,交换分区应为内存的2倍!
然后,重新启动 dphys-swapfile 文件服务:
sudo /etc/init.d/dphys-swapfile restart
最后查看大小:
$ free -h
total used free shared buff/cache available
Mem: 976M 66M 801M 12M 108M 849M
Swap: 2.0G 0B 2.0G
输入法显示黑框
可以执行以下命令试着解决:
killall fcitx-qimpanel
执行完这个以后找个地方试一下输入法正常不 如果输入法好了的话 就是我说的这个问题 如果没用的话 你再找别的方法吧
如果执行完正常的话 再执行下面的 设置每次开机不启动 fcitx-qimpanel
sudo mv /etc/xdg/autostart/fcitx-qimpanel-autostart.desktop /etc/xdg/autostart/fcitx-qimpanel-autostart.desktop.bak
默认是有 中文输入法
sudo apt-get install fcitx fcitx-googlepinyin fcitx-sunpinyin
fcitx-module-cloudpinyin
安装远程桌面
sudo apt-get install xrdp
Windows 下就可以用远程桌面链接了
安装 WEB 环境
安装 Nginx
sudo apt-get update
sudo apt-get install nginx
MySQL
sudo apt-get install mysql-server mysql-client
# libmysqlclient-dev
PHP
新增 php5 软件源
echo "deb https://packages.sury.org/php/ $(lsb_release -sc) main" > /etc/apt/sources.list.d/php5.list
现在我们就可以开始安装 php 5.6 了,
sudo apt-get update
sudo apt-get install php7.2-fpm php7.2-mysql php7.2-curl php7.2-gd php7.2-mbstring php7.2-xml php7.2-xmlrpc php7.2-zip php7.2-opcache
# apt-get install php5.6 php5.6-mysql php5.6-xml php5.6-zip php5.6-json php5.6-gd php5.6-bcmath