On Wed, 17 Oct 2018 10:46:48 -0700 (PDT)
Rich Shepard <rshep...@appl-ecosys.com> dijo:

>Tell us what mount points are defined and what partitions are on each.
>The command 'mount' displays available mount points.
>
>To learn what's on each one you can use either 'less /etc/fstab'
>or'lsblk'.
>
>I assume that /, /boot, and /swap are all on /dev/sda/. Is this
>correct?

There are two physical drives inside the computer:

        /dev/sdb which contains partitions for / and /home, sdb1 and
                sdb2
        /dev/sda which is just one partition, sda1

Normally you would expect /home and / to be on sda, but they were
installed on sdb because sdb is mSATA and the original sda was a
regular disk (and slower), and I wanted / and /home on the mSATA. I
tried to figure out how to reverse them so the mSATA would be sda, but
eventually I gave up and installed Xubuntu on sdb.

$mount (results below, edited)
/dev/sdb1 on / type ext4 (rw,relatime,errors=remount-ro,data=ordered)
/dev/sdb2 on /home type ext4 (rw,relatime,stripe=32745,data=ordered)
192.168.1.115:/volume1/Synology on /media/jjj/Synology type nfs
        (rw,nosuid,nodev,noexec,relatime,vers=3,rsize=131072,wsize=131072,
        namlen=255,hard,proto=tcp,timeo=600,retrans=2,sec=sys,mountaddr=
        192.168.1.115,mountvers=3,mountport=892,mountproto=udp,local_lock=
        none,addr=192.168.1.115,user)
/dev/sdc1 on /media/jjj/Movies type ext4
        (rw,relatime,stripe=8191,data=ordered)
/dev/sdc1       on /export/users/Movies type ext4
        (rw,relatime,stripe=8191,data=ordered) 
/dev/sdd1 on /media/jjj/128GB type ext4
        (rw,nosuid,nodev,relatime,data=ordered,uhelper=udisks2) 
/dev/sdd1 on /export/users/128GB type ext4
        (rw,nosuid,nodev,relatime,data=ordered) 
/dev/sda1 on /media/jjj/Data1 type ext4
        (rw,nosuid,nodev,relatime,data=ordered,uhelper=udisks2) 
/dev/sda1 on /export/users/Data1 type ext4 
        (rw,nosuid,nodev,relatime,data=ordered)

/dev/sdc1 is my Mediasonic enclosure (the source of recent angst, but
working fine now), connected by USB. Its label is 'Movies.' /dev/sdd1 is
a 128GB USB flash drive. Its label is '128GB.'

$ lsblk
NAME   MAJ:MIN RM   SIZE RO TYPE MOUNTPOINT
sda      8:0    0 953.9G  0 disk 
└─sda1   8:1    0 953.9G  0 part /export/users/Data1
sdb      8:16   0 447.1G  0 disk 
├─sdb1   8:17   0  78.1G  0 part /
└─sdb2   8:18   0   369G  0 part /home
sdc      8:32   0  10.9T  0 disk 
└─sdc1   8:33   0  10.9T  0 part /export/users/Movies
sdd      8:48   1 119.2G  0 disk 
└─sdd1   8:49   1 119.2G  0 part /export/users/128GB
sr0     11:0    1  33.9G  0 rom  <a Blu-ray drive>
sr1     11:1    1   4.1G  0 rom  <a DVD drive, by USB)
loop0    7:0    0    87M  1 loop /snap/core/5145
loop1    7:1    0  87.9M  1 loop /snap/core/5328
loop2    7:2    0  87.9M  1 loop /snap/core/5548

Here is fstab (also edited to remove instructional comments):
UUID=27c11f6b-b443-417e-9853-12c99789d8d9 / ext4
        errors=remount-ro 0  1 
# /home was on /dev/sdb2 during installation
UUID=9a201393-e364-4d11-b372-877cded3b9cc /home  ext4
        defaults 0  2
/media/jjj/Synology nfs auto,user  0  0 192.168.1.115:/volume1/Synology 
        /media/jjj/Synology nfs auto,user 0 0
#so clients can see nfs share
/media/jjj /export/users  none bind 0 0
#/dev/disk/by-label/256GB-1 /media/jjj/256GB-1 auto
        nosuid,nodev,nofail,noauto,x-gvfs-show,x-gvfs-n$
        <Something created this line, but not me. Just today I commented
        it out because I didn't want '256GB' showing up in the GUI file
        manager when it wasn't even plugged in. The device is a USB
        flash drive.>

Any ideas how to get 'mount' to mount sda1 on /media/jjj/Data where I
tell it to instead of creating a new Data1 folder and mounting it there?
_______________________________________________
PLUG mailing list
PLUG@pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug

Reply via email to