LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Fedora
User Name
Password
Fedora This forum is for the discussion of the Fedora Project.

Notices


Reply
  Search this Thread
Old 04-20-2009, 01:50 AM   #1
Hitboxx
Senior Member
 
Registered: Mar 2006
Location: India
Distribution: Fedora
Posts: 1,562
Blog Entries: 3

Rep: Reputation: 68
Dolphin on KDE 4.2.1 in 64 bit Fedora 10.


Hi,

Ever since I started using KDE as in 4.2, I have been doing this regularly. When I startup KDE, I open Dolphin and click and mount each partition with root pass. I thought it might be some KDE issue as is the ever developing code and will be fine in future updates. But now I'm in 4.2.1 and it still exists. Upon inquiring fellow users on other distros, I have come to believe this is a *Fedora only* issue now.

Anybody got any ideas? Thanks.
Attached Thumbnails
Click image for larger version

Name:	kdesnap7.png
Views:	27
Size:	211.1 KB
ID:	493  
 
Old 04-25-2009, 01:53 PM   #2
PTrenholme
Senior Member
 
Registered: Dec 2004
Location: Olympia, WA, USA
Distribution: Fedora, (K)Ubuntu
Posts: 4,187

Rep: Reputation: 354Reputation: 354Reputation: 354Reputation: 354
Why aren't your partitions automatically mounted from /etc/fstab when you boot? You shouldn't need to use Dolphin to mount a drive partition. Here's what my laptop's Fedora /etc/fstab looks like:
Code:
$ cat /Fedora/etc/fstab
#                                      
# /etc/fstab                           
# Created by anaconda on Thu Nov 27 09:31:54 2008
#                                                
# Accessible filesystems, by reference, are maintained under '/dev/disk'
# See man pages fstab(5), findfs(8), mount(8) and/or vol_id(8) for more info
#
UUID=ffccf6e4-8321-46a7-9ef0-48e2aeedc325 /     ext3    defaults        1 1
UUID=92ff1a1e-9e16-4828-953e-fbdfde536452 /boot ext3    defaults        1 2
tmpfs                   /dev/shm                tmpfs   defaults        0 0
devpts                  /dev/pts                devpts  gid=5,mode=620  0 0
sysfs                   /sys                    sysfs   defaults        0 0
proc                    /proc                   proc    defaults        0 0
/dev/mapper/Fedora-Swap swap                    swap    defaults        0 0
# Other drives
UUID=78b0b290-2ee7-46b1-a6b5-6eae61531fec /Jaunty ext3  defaults        1 2
UUID=c5774ce9-8e08-4571-bd45-c99567172463 /Ubuntu ext3  defaults        1 2
UUID=342D7D7923AC4107   /Vista                  ufsd    rw,defaults     0 0
UUID=2C88743C8874071C   /Vista/Recovery         ufsd    rw,defaults     0 0
#UUID=342D7D7923AC4107  /Vista                  ntfs-3g rw,defaults     0 0
#UUID=2C88743C8874071C  /Vista/Recovery         ntfs-3g rw,defaults     0 0
# Removable Drives
/dev/cdrom              /media/cdrom            udf,iso9660 user,noauto,exec,utf8       0 0
/dev/dvdrom             /media/dvdrom           udf,iso9660 user,noauto,exec,utf8       0 0
/dev/cdrw               /media/cdrw             udf,iso9660 rw,user,noauto,exec,utf8    0 0
/dev/dvdrw              /media/dvdrw            udf,iso9660 rw,user,noauto,exec,utf8    0 0
/dev/sr0                /media/cd               udf,iso9660 rw,user,noauto,exec,utf8    0 0
# USB Stick
UUID=48A7-175E          /Kingston               vfat    defaults,noauto 0 0
# USB 200GB drive
/dev/USB_Fedora/Base    /USB_Fedora             ext3    defaults,noauto 0 0
UUID=85d4ec8b-3199-4819-a7c3-0f23d7d42aa6 /USB_Fedora/boot ext3 defaults,noauto 0 0
UUID=64DC5A0FDC59DBBC   /XP                     ufsd    defaults,rw,noauto 0 0
UUID=6A5F-1690          /XP/Recovery            vfat    defaults,noauto 0 0
UUID=F090155F90152D9A   /XP/Extra               ext3    defaults,rw,noauto 0 0
# USB Gateway drive
LABEL=Gateway           /Gateway                ext4    defaults,noauto 0 0
LABEL=Boot_Gateway      /Gateway/boot           ext3    defaults,noauto 0 0
Note that drive and partition UUID can be seen in, e.g., ls -l /dev/disk/by-uuid

Oh, the ufsd driver I'm using for the Vista NTFS partitions is a beta driver I've been testing. If you've got NTFS partitions, ntfs-3g is probably a better choice for now.

Last edited by PTrenholme; 04-25-2009 at 01:55 PM.
 
Old 04-28-2009, 09:00 AM   #3
Hitboxx
Senior Member
 
Registered: Mar 2006
Location: India
Distribution: Fedora
Posts: 1,562

Original Poster
Blog Entries: 3

Rep: Reputation: 68
No lol, what I mean is, I don't have any partition entries in fstab like in the old days. When I used Gnome, it used to get auto mounted using HAL, bus, etc ... Since the switch to KDE, I have to do it manually as said above.

So I wish it would be auto mounted already by the time I hit Dolphin.
 
Old 04-28-2009, 09:46 AM   #4
PTrenholme
Senior Member
 
Registered: Dec 2004
Location: Olympia, WA, USA
Distribution: Fedora, (K)Ubuntu
Posts: 4,187

Rep: Reputation: 354Reputation: 354Reputation: 354Reputation: 354
Check /bin/mount and, if necessary, do a chmod +sx /bin/mount as "root" to turn on the "set UID" and executable flags for everyone. I needed to do that on my Fedora system before Dolphin could mount even a CD. You could also install nautilus and use it in KDE to see if it works any differently.

But, if you use the Dolphin auto-mount feature, you have little control over the names used when the device (or partition) is mounted which can complicate any scripts you write.

But, hey, it's your system, so you can set it up any way you wish.
 
Old 04-29-2009, 10:18 AM   #5
Hitboxx
Senior Member
 
Registered: Mar 2006
Location: India
Distribution: Fedora
Posts: 1,562

Original Poster
Blog Entries: 3

Rep: Reputation: 68
All those things are fine, Dolphin mounts the CD and all, only the auto-mounting of partitions is what bugs me.

It has got something to do with KDE and the d-bus, etc things. I opened up Nautilus here in KDE and it didn't had them mounted too. If KDE mounts it, then regardless of the file managers, they will all show mounted.

On the other hand, if I get into Gnome once initially and then log off and head in KDE, Dolphin has them all mounted. That should make it clear on my side of things.
 
  


Reply

Tags
dolphin, fedora, kde, mount



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
NTFS just failed when accessing from Dolphin Fedora 9 landonmkelsey Linux - Software 0 11-30-2008 10:18 PM
LXer: Dolphin Free File Management: A Better Option for KDE 4? LXer Syndicated Linux News 0 11-10-2008 07:30 PM
KDE 4.1.2 Lost Wastebin in Dolphin mikemrh9 Linux - Desktop 2 11-08-2008 06:51 PM
LXer: The Road to KDE 4: Dolphin and Konqueror LXer Syndicated Linux News 0 03-02-2007 09:01 AM
no KDE in Kubuntu 6.10 64-bit(ATI X800 GTO 256 bit DDr3) exul182 Linux - Hardware 2 01-04-2007 02:47 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Fedora

All times are GMT -5. The time now is 12:48 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration