Forum
Mounting a truecrypt device - wrong File permissions for xbian user - Printable Version

+- Forum (http://forum.xbian.org)
+-- Forum: Community (/forum-5.html)
+--- Forum: Uncategorized (/forum-59.html)
+--- Thread: Mounting a truecrypt device - wrong File permissions for xbian user (/thread-1178.html)



Mounting a truecrypt device - wrong File permissions for xbian user - CoilGun12 - 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:
Code:
#! /bin/sh
truecrypt -k "" -p mypassword --protect-hidden=no /dev/sda2 ~/Videos/
and put the right permissons in sudoers to get truecryt executed without asking for password validation:
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
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.
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 Wink )

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...Smile

Thanks.


Re: Mounting a truecrypt device - wrong File permissions for xbian user - f1vefour - 2nd Aug, 2013 10:15 AM

Add it to a startup cronjob.

See this: http://www.cyberciti.biz/faq/linux-execute-cron-job-after-system-reboot/


RE: Mounting a truecrypt device - wrong File permissions for xbian user - mk01 - 2nd Aug, 2013 03:21 PM

(2nd Aug, 2013 08:48 AM)CoilGun12 Wrote:  i have got a problem with mounting my truecrypt device at autostart.

coilgun, it doesn't matter, which user calls your scripts. as soon as any command is "sudoed", effective user id and group id is 0.

but this is not a problem. effective user permissions are not related to truecrypt volume, but the fs on top of it.

so unlock the tc volume, then mount it under root. then simply do "chown -Rc xbian:xbian /home/xbian/Videos"

if you intend to use volume on other system (other uid) as well, mount the filesystem with options dmask=0000,fmask=0111 (what effectively creates all new files with chmod 666 and dirs with 777).

mk


RE: Mounting a truecrypt device - wrong File permissions for xbian user - CoilGun12 - 2nd Aug, 2013 09:31 PM

thanks mk,

changing the permissions mit chown didnt work, but changing the overall permissions and mounting the options with dmask=0000 and fmask=0111 work out pretty well Smile
So the solution is:

Code:
#! /bin/sh
truecrypt --fs-optons="" -k "dmask=0000, fmask=0111" -p mypassword --protect-hidden=no /dev/sda2 /home/xbian/Videos/

Thanks for the fast reply Smile