cBrandon Community

General Category => Raspberry Pi => Topic started by: branx86 on January 12, 2016, 05:56:02 PM

Title: Run CMD or Reconnect Remote Drive after Boot
Post by: branx86 on January 12, 2016, 05:56:02 PM
Create a sh file with :
#!/bin/sh
(sleep 30;
mount -t cifs -o username=user,rw //192.168.0.30/tvseries /storage/tvseries;
)&

Then put and line in the rc.local file above the exit 0 to point to the file.sh you just created.