跳到主要内容

2 篇博文 含有标签「树莓派」

查看所有标签

修改rc.local文件,设置开机启动

· 2 分钟阅读
zx06
Maintainer of Blog

为了在树莓派启动的时候运行一个命令或程序,你需要将命令添加到rc.local文件中。这对于想要在树莓派接通电源后无需配置直接运行程序,或者不希望每次都手动启动程序的情况非常有用。

  • 编辑rc.local文件

pi@raspberrypi / $ sudo nano /etc/rc.local
#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.

# Print the IP address
_IP=$(hostname -I) || true
if [ "$_IP" ]; then
printf "My IP address is %s\n" "$_IP"
fi

exit 0

在eixt 0 前面加入要执行的命令 '/bin/oraynewph status &' #如果你的命令需要长时间运行(例如死循环)或者运行后不能退出,那么你必须确保在命令的最后添加“&”符号让命令运行在其它进程

树莓派安装samba

· 1 分钟阅读
zx06
Maintainer of Blog

通过使用samba服务,可以自由访问修改树莓派home目录下的文件

  • 安装 smaba:

sudo apt-get install samba samba-common-bin
  • 修改配置文件

sudo nano /etc/samba/smb.conf

下面的配置是让用户可以访问自己的 home 目录

  1. 开启用户认证,找到“##### Authentication #####”,添加“security = user”
  2. 配置用户可以读写自己的 home 目录,在“[homes]”节中,把 “read only = yes” 改为 “read only = no”
  3. 找到browseable=no改为yes 否则等会访问时此文件夹会隐藏
  • 重启samba服务

sudo /etc/init.d/samba restart
  • 把系统默认用户pi添加到samba

sudo smbpasswd -a pi

根据提示输入密码

  • windows访问

打开文件资源管理器,输入\192.168.1.104\pi 文件资源管理器