03-27-2014, 08:45 PM
Hello All,
Having partitioned and installed, which all appeared to go O.K,
I'm now at a point where I don't want to break things.
I'm trying to figure out, how to mount the partitions I created.
I'm trying to follow: https://www.linuxliteos.com/manual/install.html
In Thunar file manager, system files(/ root .?)
I see folders that correspond to the partitions/names I created:
/linwin
/myfiles
/myvms
does this mean they are mounted, just not in the right place.?
In my Linux naivety I thought they would show up as Drives.?
(First a confession, jumping the gun, I used the Menu > System > "NTFS Configuration Tool" to make the NTFS partition /linwin writable?)
if I do $ sudo blkid I have 2 disks sdb4 is the [extended] partition
If I do $sudo leafpad /etc/fstab
I think the /dev/sdb6 looks a bit odd..?? see my confession above, have I broken sdb6)
So I'm not clear what I do next.?
In the guide it shows for:
NTFS
ext4
Do I just add /home/user in front of my:
/home/user/myfiles ext4 defaults 0 2
/home/user/myvms ext4 defaults 0 2
and the ntfs partition, given my confession.?
/home/user/linwin ntfs defaults,umask=007,uid=1000,gid=1000 0 0
changing "user" to my actual user name.?
Any help very much appreciated.
Many Thanks...
Dave
Having partitioned and installed, which all appeared to go O.K,
I'm now at a point where I don't want to break things.
I'm trying to figure out, how to mount the partitions I created.
I'm trying to follow: https://www.linuxliteos.com/manual/install.html
In Thunar file manager, system files(/ root .?)
I see folders that correspond to the partitions/names I created:
/linwin
/myfiles
/myvms
does this mean they are mounted, just not in the right place.?
In my Linux naivety I thought they would show up as Drives.?
(First a confession, jumping the gun, I used the Menu > System > "NTFS Configuration Tool" to make the NTFS partition /linwin writable?)
if I do $ sudo blkid I have 2 disks sdb4 is the [extended] partition
Code:
/dev/zram0: UUID="1be8d1be-031a-4102-8be7-0df3f79a422f" TYPE="swap"
/dev/sda1: UUID="85bb35c9-1a52-4f2e-8b44-b539f14fcc4d" TYPE="ext4"
/dev/sdb1: UUID="6dc2bc5a-c0e5-450e-bf71-e65cc33f19e2" TYPE="swap"
/dev/sdb2: UUID="bb79cb58-ea6c-4a48-9820-61fe46f18854" TYPE="ext4"
/dev/sdb3: UUID="c0c7dfde-b76c-4116-b83e-434dab6e18b9" TYPE="ext4"
/dev/sdb5: UUID="3a7d9dbc-2cba-4ca1-8ec4-36c8d6852286" TYPE="ext4"
/dev/sdb6: LABEL="linwin" UUID="747D4C9C1EFAD1F2" TYPE="ntfs"
If I do $sudo leafpad /etc/fstab
Code:
# /etc/fstab: static file system information.
#
# <file system> <mount point> <type> <options> <dump> <pass>
proc /proc proc nodev,noexec,nosuid 0 0
#Entry for /dev/sda1 :
UUID=85bb35c9-1a52-4f2e-8b44-b539f14fcc4d / ext4 errors=remount-ro 0 1
#Entry for /dev/sdb1 :
UUID=6dc2bc5a-c0e5-450e-bf71-e65cc33f19e2 none swap sw 0 0
#Entry for /dev/sdb2 :
UUID=bb79cb58-ea6c-4a48-9820-61fe46f18854 /home ext4 defaults 0 2
#Entry for /dev/sdb3 :
UUID=c0c7dfde-b76c-4116-b83e-434dab6e18b9 /myfiles ext4 defaults 0 2
#Entry for /dev/sdb5 :
UUID=3a7d9dbc-2cba-4ca1-8ec4-36c8d6852286 /myvms ext4 defaults 0 2
#Entry for /dev/sdb6 :
UUID=747D4C9C1EFAD1F2 /linwin ntfs-3g defaults,locale=en_US.UTF-8 0 0
So I'm not clear what I do next.?
In the guide it shows for:
NTFS
Code:
UUID=0463741f-a838-40c8-b40f-3dbb7f988e29 /home/user/ntfsfiles ntfs defaults,umask=007,uid=1000,gid=1000 0 0
ext4
Code:
UUID=0463741f-a838-40c8-b40f-3dbb7f988e29 /home/user/ext4files ext4 defaults 0 2
Do I just add /home/user in front of my:
/home/user/myfiles ext4 defaults 0 2
/home/user/myvms ext4 defaults 0 2
and the ntfs partition, given my confession.?
/home/user/linwin ntfs defaults,umask=007,uid=1000,gid=1000 0 0
changing "user" to my actual user name.?
Any help very much appreciated.
Many Thanks...
Dave