Le 13/11/2016 à 13:29, Thomas Schmitt a écrit :
Check whether there is really no filesystem on /dev/sdb6 !
How ? I may suggest amongst others : file -sk /dev/sdb6 wipefs /dev/sdb6 blkid /dev/sdb6
Only if not, create one by mkfs -t ext3 /dev/sdb6
Why use an obsolete filesystem type as ext3 instead of ext4 ?
Prepare the mount point mkdir /mnt/my_sdb6 Make it permanent by vi /etc/fstab where you add this line /dev/sdb6 /mnt/my_sdb6 ext3 rw 0 0
My understanding of the FHS was that /mnt was intended to be used as a temporary mount point, not to contain any subdirectories used as permanent mount points.