You are not logged in.

#1 2014-03-26 10:47:14

ThElitEyeS
Banned
Registered: 2014-03-25
Posts: 129

SATA 3 SSD does not mount automatically

Screenshot_from_2014_03_26_12_43_30.png

Screenshot_from_2014_03_26_12_44_58.png


NAME   FSTYPE LABEL           UUID                                 MOUNTPOINT
sda                                                                
├─sda1 ntfs   System Reserved 460EC7C90EC7B06B                     
└─sda2 ntfs                   04F4CAF3F4CAE5D0                     
sdb                                                                
└─sdb1 ntfs   ElitE Za    D4B4D9A9B4D98E7C                     /run/media/ElitE/ElitE Za
sdc                                                                
├─sdc1                                                             
├─sdc2 ext4   root            8da5f695-2e59-4b20-ae82-218bb927846e /
├─sdc3 swap                   80c1a8b8-2a3c-498c-90c1-c75e8ebe591a [SWAP]
└─sdc4 ext4                   d2e6aa46-e8d4-4a25-ab1a-321cf15092ec /home

When i tried to use fstab

#Samsung SSD
UUID=04F4CAF3F4CAE5D0       /run/media/ElitE/SamsungSSD               ntfs            rw,relatime,data=ordered        0 3

It gave me that error

[root@ElitE ElitE]# systemctl status ran-edia-ElitE-SamsungSSD.mount
ran-edia-ElitE-SamsungSSD.mount
   Loaded: not-found (Reason: No such file or directory)
   Active: inactive (dead)

Note: I have also tried Kingston SSD.. also it have the same problem

How i can fix this problem ?

Last edited by ThElitEyeS (2017-02-12 08:33:53)

Offline

#2 2014-03-26 11:13:22

\hbar
Member
Registered: 2014-03-15
Posts: 165

Re: SATA 3 SSD does not mount automatically

Try running

sudo mount -a

Does that mount the SSD?

Offline

#3 2014-03-26 11:15:40

ThElitEyeS
Banned
Registered: 2014-03-25
Posts: 129

Re: SATA 3 SSD does not mount automatically

\hbar wrote:

Try running

sudo mount -a

Does that mount the SSD?

Last edited by ThElitEyeS (2017-02-12 08:35:02)

Offline

#4 2014-03-26 11:17:04

\hbar
Member
Registered: 2014-03-15
Posts: 165

Re: SATA 3 SSD does not mount automatically

Okay what does this do?

sudo mount /dev/sda2 /run/media/bahaa/SamsungSSD

Offline

#5 2014-03-26 11:40:26

ThElitEyeS
Banned
Registered: 2014-03-25
Posts: 129

Re: SATA 3 SSD does not mount automatically

\hbar wrote:

Okay what does this do?

sudo mount /dev/sda2 /run/media/x/SamsungSSD

Yep manually mount works

Last edited by ThElitEyeS (2017-10-03 20:19:37)

Offline

#6 2014-03-26 12:09:42

\hbar
Member
Registered: 2014-03-15
Posts: 165

Re: SATA 3 SSD does not mount automatically

So manually mounting works, but if you run mount -a with

UUID=04F4CAF3F4CAE5D0       /run/media/bahaa/SamsungSSD               ntfs            rw,relatime,data=ordered        0 3

in your fstab it does not mount, and shows no errors?

Offline

#7 2014-03-26 12:13:11

bstaletic
Member
Registered: 2014-02-02
Posts: 658

Re: SATA 3 SSD does not mount automatically

In fstab try using 'auto' instead of 'ntfs'. I don't expect it to work, but I also don't rule anything out untill I see it fail.

Offline

#8 2014-03-26 12:21:02

ThElitEyeS
Banned
Registered: 2014-03-25
Posts: 129

Re: SATA 3 SSD does not mount automatically

I created a directory in run/media/x and it worked.
But now i only can umount it from terminal o.o

Unable to unmount 256 GB Volume
Not authorized to perform operation

Last edited by ThElitEyeS (2017-10-03 20:19:57)

Offline

#9 2014-03-26 12:44:33

Gcool
Member
Registered: 2011-08-16
Posts: 1,456

Re: SATA 3 SSD does not mount automatically

If it's absolutely needed for your normal user to be able to just umount, you could consider configuring sudo to allow that. Read this for instructions.


Burninate!

Offline

#10 2014-03-26 12:48:40

\hbar
Member
Registered: 2014-03-15
Posts: 165

Re: SATA 3 SSD does not mount automatically

add a user option to your fstab (see https://wiki.archlinux.org/index.php/Fstab)

Offline

#11 2014-03-26 12:59:02

ThElitEyeS
Banned
Registered: 2014-03-25
Posts: 129

Re: SATA 3 SSD does not mount automatically

Gcool wrote:

If it's absolutely needed for your normal user to be able to just umount, you could consider configuring sudo to allow that. Read this for instructions.

I think my problem is that i don't have group for the file manager

[root@x x]# groups
root bin daemon sys adm disk wheel log

if so i have no idea how to create it

Last edited by ThElitEyeS (2017-10-03 20:19:26)

Offline

#12 2014-03-26 12:59:33

ThElitEyeS
Banned
Registered: 2014-03-25
Posts: 129

Re: SATA 3 SSD does not mount automatically

\hbar wrote:

add a user option to your fstab (see https://wiki.archlinux.org/index.php/Fstab)

added and rebooted still not working

Offline

#13 2014-03-26 13:13:56

Mr.Elendig
#archlinux@freenode channel op
From: The intertubes
Registered: 2004-11-07
Posts: 4,097

Re: SATA 3 SSD does not mount automatically

You should NOT mount to /run/meda by hand or in fstab. And if you want to mount/umount the disk as user, then either write a polkit rule that allows you to do it, or flag the disk as external using a udev rule.

Personally I would just mount it to /home/pr0n or whatever using fstab.


Evil #archlinux@libera.chat channel op and general support dude.
. files on github, Screenshots, Random pics and the rest

Offline

#14 2014-03-26 13:17:17

ThElitEyeS
Banned
Registered: 2014-03-25
Posts: 129

Re: SATA 3 SSD does not mount automatically

Mr.Elendig wrote:

You should NOT mount to /run/meda by hand or in fstab. And if you want to mount/umount the disk as user, then either write a polkit rule that allows you to do it, or flag the disk as external using a udev rule.

Personally I would just mount it to /home/pr0n or whatever using fstab.

i have no idea how to do that:

write a polkit rule that allows you to do it, or flag the disk as external using a udev rule

ill try /home/bewbs instead ;d

Offline

#15 2014-03-26 13:26:28

ThElitEyeS
Banned
Registered: 2014-03-25
Posts: 129

Re: SATA 3 SSD does not mount automatically

well i tried and the device is not listed on the file manager anymore, also i have to umount it from the terminal again.

Last edited by ThElitEyeS (2017-10-03 20:20:15)

Offline

Board footer

Powered by FluxBB