News:

The Latest electronic and computer Tips that work!

Main Menu

Run CMD or Reconnect Remote Drive after Boot

Started by branx86, January 12, 2016, 05:56:02 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

branx86

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.