
Pi
小白笑苍
沉默是一种生活方式。
展开
-
树莓派如何挂载硬盘/U盘
默认挂载外接U盘或移动硬盘时,默认不会自动挂载,所以需要用 mount 命令挂载。通常我们在 /mnt 或 /media 目录下新建一个目录作为挂载点。比如: 查询当前硬盘目录:sudo fdisk -l挂载硬盘,sda1 是取决于你的实际情况,a表示第一个硬盘,1表示第一个分区:sudo mkdir /mnt/1GB_USB_flashsudo mount -o uid=pi,gid=pi /转载 2017-08-18 15:54:01 · 1833 阅读 · 0 评论 -
How to Install Nas System with PI
I want to share all of my files with all of my equipments in my home,so I want to install an Nas system in my PI. firstly setup some related softwares:sudo apt-get install samba samba-common-binsudo原创 2017-08-26 15:12:00 · 325 阅读 · 0 评论 -
How to Install Git Server in the PI
install the git software:sudo apt-get install wget git-coreif you don’t have ssh,install it:sudo apt-get install sshstart ssh:sudo /etc/init.d/ssh startset default start:sudo update-rc.d ssh defaultsad原创 2017-08-23 00:57:36 · 358 阅读 · 0 评论 -
Fix perl: warning: Setting locale failed. perl: warning: Please check that your locale settings:
when I want to add a user named git,Here occurs a problem and the print is:perl: warning: Setting locale failed.perl: warning: Please check that your locale settings: LANGUAGE = (unset), LC_AL原创 2017-08-22 20:26:55 · 1663 阅读 · 0 评论 -
How to Config the Pi with a Static IP
sudo nano /etc/network/interfacesthen modify the file.For example my IP is 192.168.1.102,like:auto loiface lo inet loopbackiface eth0 inet staticaddress 192.168.1.102netmask 255.255.255.0gateway 1原创 2017-08-22 17:22:06 · 294 阅读 · 0 评论 -
How to Login Automatically in PI3
The question is that I don’t want to input the account and password whenever the PI reboot.It is boring and I have to connect the PI with a monitor.But many solutions on the Internet is to edit the fil原创 2017-08-25 10:18:34 · 370 阅读 · 0 评论 -
How to Push the Video streams to DouYu/XiongMao/Bilibili using PI
Setup the decodersudo git clone git://git.videolan.org/x264cd x264./configure --host=arm-unknown-linux-gnueabi --enable-static --disable-openclmakesudo make installcd ..rm -rf x264Setup the ffmpe原创 2017-08-19 20:27:55 · 1137 阅读 · 0 评论 -
How to communicate with PI Through the SSH
If you don’t setup the software of ssh,input:##the one be controledsudo apt-get install openssh-server##the one controls the serversudo apt-get install openssh-clientmake sure the ssh server is star原创 2017-08-19 20:17:23 · 389 阅读 · 0 评论 -
How to Setup RaspBerry Pi with RASPBIAN STRETCH LITE
enter the Download URL to download the setupfile named RASPBIAN STRETCH LITE.extract the file,get the .img file.insert the TF Card,find the directory of this device.Mine is /dev/sdc:sudo fdisk -lwr原创 2017-08-18 17:00:03 · 2220 阅读 · 1 评论 -
玩转树莓派-Raspberry,无线网配置方法
https://my.oschina.net/u/2306127/blog/392442摘要: 推荐树莓派上使用8188CUS芯片的无线网卡,如EDUP8188。这里介绍通过interfaces和wpa_supplicant配置WiFi的方法,以及设置静态IP地址,将树莓派变为一个低功耗的无线服务器的方法。 要想让树莓派方便操作,肯定需要配置无线网卡,这样可以大大增强树莓派的移动性和便利性,转载 2017-08-18 16:49:18 · 2689 阅读 · 0 评论 -
How to config RaspBerry's Wireless Networking Setting
1.Check the status of Network Cardinput ifconfig -a to see if the output has information of wlan0.Yes means the status is OK,you can ignore the second topic.If not,you should setup the driver of the Ne原创 2017-08-18 16:43:29 · 402 阅读 · 0 评论 -
How to Install a BTDownloader in the PI
install the transmission:sudo apt-get install transmission-daemoncreate the download file’s directory,because I have mounted the PI with a hard-driver,so I will choose it doing my store machine:##be ca原创 2017-08-23 01:27:16 · 322 阅读 · 0 评论