2nd Aug, 2013, 08:48 AM
Hello,
i have got a problem with mounting my truecrypt device at autostart.
First of all I wrote a bash script:
and put the right permissons in sudoers to get truecryt executed without asking for password validation:
and put a modified version:
to etc/init.d/ then i configured
update-rc.d. It worked so far that the root user had got read and write permissons
on the drive, but the xbian user didnt. I tried it again with different options in
truecrypt but the problem was still the same. In xbmc I cannot access the drive,
because i aint got the right permissons. Changing the permissons with chmod 777 didnt
take any affect on the files at all. Permissons still only for the root user. I tried out
every single runtime level (/etc/rc1-5.d), still no change as well as writing the code into
/etc/rc.local or /etc/init.d/local.tc. It looks like that the code, executed by root wont get the
xbian user permissons for write or read on the device.
If I'm running the script via ssh with the xbian user, there no issues in mounting
and viewing my movies via xbmc.
I thought, well the i try to run the script when the x-server is starting. So I´ll be sure the code is
executed by the xbian user. I created a .desktop file in ~/.config/autostart/mount.desktop and /etc/xdg/autostart/
mount.desktop. Both file were not executed at startup.
(wont start with and without the last line )
So my question would be what do you recon to use for autostart or how could i get the right permissons to view my movies
in xbmc?
I do not want to connect a keyboard to my RasberryPi or execute the script via ssh. It has to start every boot. Is there a
possibility to run sh scripts via xbmc? I didnt find any addon that would do something like that for me. Or maybe
start xbmc as root on startup? How can i do that?
I hope that are not too many questions...
Thanks.
i have got a problem with mounting my truecrypt device at autostart.
First of all I wrote a bash script:
Code:
#! /bin/sh
truecrypt -k "" -p mypassword --protect-hidden=no /dev/sda2 ~/Videos/
Code:
xbian ALL=(ALL) NOPASSWD: /usr/local/sbin/xbian-config, /sbin/halt, /sbin/reboot, /usr/bin/splash, /usr/bin/truecrypt
and put a modified version:
Code:
TC_DEVICE="/dev/sda2"
TC_MOUNT_POINT="/home/xbian/Videos"
test -f /usr/bin/truecrypt || exit 0
. /lib/lsb/init-functions
case "$1" in
start) log_daemon_msg "Mounting truecrypt dirs" "tc"
echo
test -d $TC_MOUNT_POINT || mkdir $TC_MOUNT_POINT
/usr/bin/truecrypt -p mypassword -k "" --protect-hidden=no $TC_DEVICE $TC_MOUNT_POINT
log_end_msg $?
;;
stop) log_daemon_msg "Umounting truecrypt dirs" "tc"
echo
/usr/bin/truecrypt -d $TC_MOUNT_POINT
log_end_msg $?
;;
*) log_action_msg "Usage: /etc/init.d/tc.sh {start|stop}"
exit 2
;;
esac
exit 0
update-rc.d. It worked so far that the root user had got read and write permissons
on the drive, but the xbian user didnt. I tried it again with different options in
truecrypt but the problem was still the same. In xbmc I cannot access the drive,
because i aint got the right permissons. Changing the permissons with chmod 777 didnt
take any affect on the files at all. Permissons still only for the root user. I tried out
every single runtime level (/etc/rc1-5.d), still no change as well as writing the code into
/etc/rc.local or /etc/init.d/local.tc. It looks like that the code, executed by root wont get the
xbian user permissons for write or read on the device.
If I'm running the script via ssh with the xbian user, there no issues in mounting
and viewing my movies via xbmc.
I thought, well the i try to run the script when the x-server is starting. So I´ll be sure the code is
executed by the xbian user. I created a .desktop file in ~/.config/autostart/mount.desktop and /etc/xdg/autostart/
mount.desktop. Both file were not executed at startup.
Code:
[Desktop Entry]
Name=tc-mount
Comment=Mounting my Movies
Exec=sh /home/xbian/mount_tc.sh
Terminal=false
Type=Application
X-GNOME-Autostart-Phase=Initialization
(wont start with and without the last line )
So my question would be what do you recon to use for autostart or how could i get the right permissons to view my movies
in xbmc?
I do not want to connect a keyboard to my RasberryPi or execute the script via ssh. It has to start every boot. Is there a
possibility to run sh scripts via xbmc? I didnt find any addon that would do something like that for me. Or maybe
start xbmc as root on startup? How can i do that?
I hope that are not too many questions...
Thanks.