raspberry 发表于 2018-1-6 22:03:43

树莓派常用设置

本帖最后由 raspberry 于 2018-1-6 22:52 编辑

1.安装中文支持

1.1 安装中文字体

进入树莓派LX终端,在命令行输入:sudo apt-get install ttf-wqy-zenhei 将安装文泉驿的开源中文字体,现在可以正常显示中文了。

1.2 安装中文输入法

安装Linux下的中文输入法SCIM(Smart Common Input Method),命令行输入sudo apt-get install scim-pinyin 安装好拼音输入法后,可以直接命令行输入scim激活,下次启动是会自动启动的。快捷键是Ctrl+空格。或者直接点击屏幕右上角的输入法图标选择。

1.3 配置中文操作系统

命令行运行:sudo raspi-config进行系统设置。选择Localisation Options-->Change Locale-->zh_CN.UTF-8UTF-8 -->OK ---> en_GB.UTF-8,然后重启系统,设置为中文操作系统。
framebuffer_width=1280
framebuffer_height=800===========================修改分辨率=============
sudo nano /boot/config.txt

raspberry 发表于 2018-1-6 22:07:37

http://blog.csdn.net/iracer/article/details/51620051

raspberry 发表于 2018-1-6 22:11:38


安装 vscode 未成功...http://www.ickey.cc/community/thread-44450-1-1.html

官网介绍:http://code.visualstudio.com/安装过程如下:一、升级系统软件包sudo apt-get updatesudo apt-get upgrade -y
二、删除老的node软件包,并安装最新的node软件包1、删除
sudo apt-get remove nodered
sudo apt-get remove nodejs-legacy
2、安装最新的node软件包
wget http://node-arm.herokuapp.com/node_latest_armhf.deb
sudo dpkg -i node_latest_armhf.deb
三、安装其它依赖包sudo apt-get install npm libx11-dev四、编译安装Visual Studio Codegit clone https://github.com/microsoft/vscode --depth=1
cd vscode
./scripts/npm.sh install --arch=armhf
在树莓派3上大约需要20分钟http://s1.ickimg.com/bbs/plugins/pubs/kindeditor/attached/image/20160320/20160320012639_84023.png五、运行:./scripts/code.sh
http://s1.ickimg.com/bbs/plugins/pubs/kindeditor/attached/image/20160320/20160320014652_74374.png

raspberry 发表于 2018-1-6 22:13:02

解压缩
树莓派(debian)下解压缩rarsudo apt-get install p7zip-full


7z x filename.rar
页: [1]
查看完整版本: 树莓派常用设置