Posts: 34
taigarden
Joined: 14 Aug 2013
#1
Using file managers I can't see contents of volumes and partitions different than the one in which I have antiX. I tried to mount volumes with the terminal as a regular user and as root user but I got error messages. I have two physical hard drives, one for Windows and one for Linux; in sda2 I have Windows 7, in sdb3 I have PCLOS KDE, and in sdb9 I have antiX.

I checked fstab and saw my volumes:

Code: Select all

# Pluggable devices are handled by uDev, they are not in fstab
UUID=279bc843-9087-4df1-9ba7-64b5c1e67d5f / auto defaults,noatime 1 1
UUID=dfbde59c-5db9-4d5d-b7ad-335fcca74609 swap swap sw,pri=1 0 0
proc /proc proc defaults 0 0
devpts /dev/pts devpts mode=0622 0 0
UUID=931a95ed-f6e3-4be7-b044-387462974de9 /home auto defaults,noatime 1 2
UUID=F4D2680DD267D282 /media/sda1 ntfs-3g noauto,users,noexec,uid=1000,gid=users,dmask=002,fmask=113,relatime 0 0
UUID=F2266A2B2669F151 /media/sda2 ntfs-3g noauto,users,noexec,uid=1000,gid=users,dmask=002,fmask=113,relatime 0 0
UUID=b921d022-9e91-4253-bf03-92dc7f9aa44b /media/sdb1 ext4 noauto,users,exec,relatime 0 0
UUID=76dd8392-6c4b-4c34-a5b9-7d46eb590b21 /media/sdb3 ext4 noauto,users,exec,relatime 0 0
UUID=851f01fd-09d7-4700-8228-faff9a230ce1 /media/sdb6 ext4 noauto,users,exec,relatime 0 0
UUID=e6683c1a-b9cc-426d-988e-2b6b2c1f196e /media/sdb9 ext4 noauto,users,exec,relatime 0 0
UUID=495E-2397 /media/sdh1 vfat noauto,users,gid=users,dmask=002,fmask=113,relatime 0 0
UUID=50e9131d-4b6e-4f95-b873-33608559fd87 /media/sdh2 ext4 noauto,users,exec,relatime 0 0
/dev/cdrom /media/cdrom udf,iso9660 noauto,users,exec,ro 0 0
/dev/sr0 /media/cdrom udf,iso9660 noauto,users,exec,ro 0 0
How can I access files in other OS's from my antiX install?
Last edited by taigarden on 04 Feb 2014, 00:25, edited 1 time in total.
Posts: 850
fatmac
Joined: 26 Jul 2012
#2
You need to mount them. Looking at your fstab they are ready to be mounted by any user. However, your problem is likely to be a permissions problem, the files you are trying to see belong to another user ID, even if they are 'yours' on another system, they likely are owned by a different user ID. Only the root user will be able to see them.
Posts: 34
taigarden
Joined: 14 Aug 2013
#3
fatmac: thank you. I opened Xfe as root, mounted the partitions and saw all files. SOLVED