You are not logged in.
I installed arch linux with xorg, openbox and pcmanfm. When I try to mount any external drive I get a message that says "only the administrator is allowed to do this"
Any solution? Thank you.
Last edited by uxiofp (2014-04-19 21:13:38)
Offline
Are we talking about a USB key, or are we talking about a rotating disk ?
What interface are you using?  Is it a USB, FireWire, SATA?
If it is a USB, what gets added to the output of dmesg when you connect it?  How about the journal? 
Please post your /etc/fstab
Nothing is too wonderful to be true, if it be consistent with the laws of nature -- Michael Faraday
The shortest way to ruin a country is to give power to demagogues.— Dionysius of Halicarnassus
---
How to Ask Questions the Smart Way
Offline
Offline
Are we talking about a USB key, or are we talking about a rotating disk ?
What interface are you using? Is it a USB, FireWire, SATA?
If it is a USB, what gets added to the output of dmesg when you connect it? How about the journal?
Please post your /etc/fstab
Yes, usb key or sd card
dmesg:
[   95.720125] usb 2-4: new high-speed USB device number 4 using ehci-pci
[   95.845361] usb-storage 2-4:1.0: USB Mass Storage device detected
[   95.846086] scsi7 : usb-storage 2-4:1.0
[   96.975576] scsi 7:0:0:0: Direct-Access     Multiple Card  Reader     1.00 PQ: 0 ANSI: 0fdisk:
Disk /dev/sdb: 29,8 GiB, 32018268160 bytes, 62535680 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: dos
Disk identifier: 0x000eb08d
Disposit. Inicio Start     Final   Blocks  Id System
/dev/sdb1         2048  62535679 31266816   b W95 FAT32pacman -Q | grep udisk:
udisks 1.0.5-1Last edited by uxiofp (2014-04-19 20:52:15)
Offline
I installed udiskie.
udiskie:
failed to mount device /org/freedesktop/UDisks/devices/sdb1: org.freedesktop.UDisks.Error.Failed: Error mounting: mount exited with exit code 1: helper failed with:
mount: only root can mount /dev/sdb1 on /
FilesystemMount operation failed for device: /org/freedesktop/UDisks/devices/sdb1Offline
The problem is on the fstab:
/dev/sdb1           	/         	ext4      	rw,relatime,data=ordered	0 1change to:
/dev/sda1           	/         	ext4      	rw,relatime,data=ordered	0 1Offline