Last active
April 2, 2019 05:17
-
-
Save willwhui/acc6a0ab8fc2f78040f1f822d62a5363 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
为树莓派3B安装raspbian+设置初始环境+备份 |
在lite版的基础上添加图形界面
https://www.raspberrypi.org/forums/viewtopic.php?f=66&t=133691
安装前,运行一下free命令:
~ $ free
total used free shared buff/cache available
Mem: 949448 107968 520540 48104 320940 741744
Swap: 102396 0 102396
安装完成之后:
~ $ free
total used free shared buff/cache available
Mem: 949448 233160 214628 26156 501660 634356
Swap: 102396 0 102396
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
使用sshfs在本地挂接pi上的目录
首先安装sshfs,如:
然后把某目录挂接到ubuntu(我的工作电脑)上来:
这样就可以在ubuntu上通过访问~/mypi目录来操作pi上的~/pi目录了。