
Raspberry Pi
文章平均质量分 53
dijk
这个作者很懒,什么都没留下…
展开
-
Raspberry Pi: 系统安装及配置(SSH、ROOT账号、扩张可用空间、软件源、IP)
操作系统下载树莓派官方 Raspbian 系统下载:http://www.raspberrypi.org/downloads 或直接下载 http://downloads.raspberrypi.org/raspbian_latest.torrent 最新版的 BT 种子。还有一个选择是由国人制作的超级精简版,更低内存占用:http://pan.baidu.com/share/link?shar转载 2015-05-20 08:25:18 · 3173 阅读 · 0 评论 -
Raspberry Pi: WiFi设置
准备工作准备好Raspberry Pi 的USB WiFi 适配器,如下: 插上USB适配器,重启Raspberry Pi,用以下方法查看该适配器是否被识别方法一:ifconfig看到结果中有红框中的“wlan0”,说明已被识别方法二:sudo lsusb看到结果中有类似红框中信息,说明已被识别具体设置图形界面设置如果已经配置vnc,可以直接在图形化界面设置WiFi,与普通电脑连WiFi一样:原创 2017-06-20 01:37:08 · 2111 阅读 · 0 评论 -
Raspberry Pi: 相关配置及相关命令
相关配置root账号设置1.设置root账号密码$ sudo passwd root2.解锁root账号命令$ sudo passwd --unlock root3.锁住root账号命令$ sudo passwd --lock root示例:pi@raspberrypi:~ $ sudo passwd --lock rootpasswd: password expiry informatio原创 2017-06-19 23:41:40 · 1454 阅读 · 0 评论 -
Raspberry Pi: SSH连接Raspberry Pi
SSH命令Raspberry Pi 经过装系统、查ip,就可以通过ssh命令来连接(默认用户名:pi,默认密码:raspberry)ssh pi@your_pi_ip_addr新版系统默认关闭SSH如果安装的是新版的Raspbian系统,默认关闭了ssh,此时ssh连接会报以下错误 ssh: connect to host your_pi_ip_addr port 22: Connection原创 2017-06-19 18:22:20 · 3135 阅读 · 0 评论 -
Raspberry Pi: MacOS下安装Raspbian系统
命令行安装1.确保SD卡为FAT32格式格式正确跳过该步,可以使用Mac自带的Disk Utility进行格式化,如下图: 2.依次执行以下命令(1)首先执行命令diskutil list(2)SD卡插入电脑后,再次执行命令diskutil list(3)查看返回结果中多出的一个disk,这个就是刚插入的SD卡,记住红框中的数字3(注意:这里SD卡对应的数字3千万不要弄错,不然执行dd命令后,原创 2017-06-19 15:25:14 · 1214 阅读 · 0 评论 -
Raspberry Pi: 查看Raspberry Pi的ip地址
问题描述Raspberry Pi没有配置显示器,需要查看其ip地址问题解决1.网段扫描推荐工具:PortScan、Advanced IP Scanner、Angry IP Scanner用以上工具扫描,若显示结果有制造商项,注意“Raspberry Pi”字样2.连路由器连上路由器后,打开路由器管理配置界面,在客户端列表中查看。若安装的是Raspbian系统,默认客户端名是raspberrypi,即原创 2017-06-19 01:17:44 · 4911 阅读 · 0 评论 -
Raspberry Pi: How to set up WiFi
Raspberry PiAlthough the Raspberry Pi Model B comes with built-in 100Mbps wired Ethernet, it can also use WiFi via a USB dongle. The Model A doesn’t come with Ethernet at all, so using a WiFi adapter i转载 2015-05-19 08:07:10 · 1241 阅读 · 0 评论 -
Raspberry Pi: Installing TightVNC
Installing TightVNC on the Raspberry PiSometimes connecting a keyboard, mouse, and monitor to Raspberry Pi is really inconvenient. But what’s the alternative if you want to interact directly with your转载 2015-05-20 07:46:54 · 1039 阅读 · 0 评论 -
Raspberry Pi: Use ssh to talk with your Raspberry Pi
PrepareThis brief guide explains how to use ssh to talk with your Raspberry Pi.You will need: 1 Raspberry Pi connected to your router (Monitor and keyboard.)If you are looking for a guide to access y转载 2015-05-20 08:16:20 · 669 阅读 · 0 评论 -
Raspberry Pi: Remote GUI access to a Linux computer using Tightvnc
DescriptionThe command line is a great way to manage a remote Linux computer if you don’t mind typing in commands, but sometimes you need to be able to view a GUI. Short of a very long cable one of the转载 2015-05-19 08:37:07 · 1031 阅读 · 0 评论 -
Raspberry Pi: INSTALLING OPERATING SYSTEM IMAGES ON MAC OS
On Mac OS you have the choice of the command line dd tool or using the graphical tool ImageWriter to write the image to your SD card.(MOSTLY) GRAPHICAL INTERFACEConnect the SD card reader with the SD转载 2015-05-20 08:40:47 · 1008 阅读 · 0 评论 -
Raspberry Pi: VNC安装与配置
Server1.下载安装TightVNC Server$ sudo apt-get install tightvncserver2.开启vncserver$ vncserver此时会要求设置密码,此密码Client端连接时会用到3.查看vncserver开启情况$ sudo netstat -tulpn执行命令,将显示tcp和udp的侦听端口并且显示相应的程序id和程序名执行关闭vncserv原创 2017-06-19 22:44:22 · 2235 阅读 · 0 评论