本文参考网络资料写成。感谢google.感谢在linux及相关开发者,感谢linux爱好者为解决各种问而付出的努力.站在巨人的肩膀上,才能看的更远.
prife 首发于csdn.08年/9月.
欢迎转载.请著明出处
系统: fedora9
安装方式:自定义安装。只安装文本界面(或者称为字符截面),后 yum 升级 XFCE4.4 桌面环境。
症状:普通用户登陆X windows后,无法自动挂载U盘,光盘。以及其他可移动设备。
自从 命令行安装了裁减安装了fedora9之后.就无法自动挂载可移动容器.也无法自动挂载windows分区.
这是十分不方便的.每次读写可移动容器.都搞的很郁闷.因为必须载终端下 cp .move .rm.很不爽.
我终于被这种方式搞崩溃了.所以决定解决这个问题.
首先看到此文
==================================================
这是十分不方便的.每次读写可移动容器.都搞的很郁闷.因为必须载终端下 cp .move .rm.很不爽.
我终于被这种方式搞崩溃了.所以决定解决这个问题.
首先看到此文
http://www.sudu.cn/info/html/edu/linux/20070101/291856.html内容如下
=========================================================
从命令行安装后,u盘的自动挂载方法
安装udev,hotplug,hal,dbus,gnome-mount,gnome-volume-manager
启动hotplug,hal 和 dbus 服务,并将这些服务加入到开机自启动列表
添加”gnome-volume-manager
–sm-disable”这一行到System->preferences->Sessions->Startup
programs,并重新登录gnome,这样能够确保gnome-volume-manager随gnome启动
删除或注释掉/etc/fstab中有关可移动设备挂载的部分,因为hald的script会检查/etc/fstab中的内容,假如已挂载或存在相关选项,就忽略该设备。
将想要使用自动挂载的用户加入plugdev组,”gpasswd -a someuser plugdev”,因为非plugdev组的普通用户不能使用自动挂载功能。
===========================================================
使用
得知udev hal dbus gnome-mount gnome-volume-manager都已经安装了
只有hotplug没有安装.
但是 sudo yum install hotplug 发现源中并无此软件包.
=========================================================
从命令行安装后,u盘的自动挂载方法
安装udev,hotplug,hal,dbus,gnome-mount,gnome-volume-manager
启动hotplug,hal 和 dbus 服务,并将这些服务加入到开机自启动列表
添加”gnome-volume-manager
–sm-disable”这一行到System->preferences->Sessions->Startup
programs,并重新登录gnome,这样能够确保gnome-volume-manager随gnome启动
删除或注释掉/etc/fstab中有关可移动设备挂载的部分,因为hald的script会检查/etc/fstab中的内容,假如已挂载或存在相关选项,就忽略该设备。
将想要使用自动挂载的用户加入plugdev组,”gpasswd -a someuser plugdev”,因为非plugdev组的普通用户不能使用自动挂载功能。
===========================================================
使用
- sudo rpm -qa | grep 软件名
只有hotplug没有安装.
但是 sudo yum install hotplug 发现源中并无此软件包.
=============================================================
7.6. Kernel device, module loading, and hotplug changes
The hotplug and device handling subsystem has undergone significant changes in Fedora Core. The udev method now handles all module loading, both on system boot and for hotplugged devices. The hotplug package has been removed, as it is no longer needed.
Support for hotplug helpers via the /etc/hotplug, /etc/hotplug.d, and /etc/dev.d directories is deprecated, and may be removed in a future Fedora Core release. These helpers should be converted to udev rules. Please see http://www.reactivated.net/writing_udev_rules.html for examples.
=============================================================
7.6. Kernel device, module loading, and hotplug changes
The hotplug and device handling subsystem has undergone significant changes in Fedora Core. The udev method now handles all module loading, both on system boot and for hotplugged devices. The hotplug package has been removed, as it is no longer needed.
Support for hotplug helpers via the /etc/hotplug, /etc/hotplug.d, and /etc/dev.d directories is deprecated, and may be removed in a future Fedora Core release. These helpers should be converted to udev rules. Please see http://www.reactivated.net/writing_udev_rules.html for examples.
=============================================================
文写于2006年.文中说hotplug报已经被移除了.并且不再需要.所以yum也就安装不了
而且我的/etc/group文件中并没有 plugdev组,也就无法执行
而且我的/etc/group文件中并没有 plugdev组,也就无法执行
- su -c "gpasswd -a 用户名 plugdev"
于是再网上继续google.因为我想知道到底 这个组是由哪个程序创建的?
找到不少和我有同样问题的帖子.
ttp://bbs.archlinux.org/viewtopic.php?id=47174
我决定添加plugdev这个组,再把prife添加到这个组中.
- [root@localhost ~]# useradd -G plugdev root
- useradd: unknown group plugdev
- [root@localhost ~]# groupadd plugdev
- [root@localhost ~]# more /etc/group | grep "plugdev"
- plugdev:x:504:
- [root@localhost ~]# more /etc/group
- root:x:0:root,prife
- bin:x:1:root,bin,daemon
- daemon:x:2:root,bin,daemon
- sys:x:3:root,bin,adm
- adm:x:4:root,adm,daemon
- tty:x:5:
- disk:x:6:root
- lp:x:7:daemon,lp
- mem:x:8:
- kmem:x:9:
- wheel:x:10:root,prife
- ......
- jackuser:x:488:
- plugdev:x:504:
- [root@localhost ~]# useradd -G plugdev root
- useradd: user root exists
- usermod -a -G plugdev root
编辑/etc/group文件
- [root@localhost ~]# vim /etc/group
在最后一行中添加了 ,prife
然后重启系统发现还是不行.
==================================================
New days ,the Next Day
==================================================
/etc/PolicyKit/PolicyKit.conf 不知道此文件是作什么呢?
/etc/hal/fdi/policy/ 该目录下空空如也.所以我创建了一个配置文件
将文件中内容全部删除。将下列文件复制到此文中。
请将橘黄色文字 Put user account name here 该为您的 用户名。比如我把它改为 prife
OK
,现在取得阶段性胜利...下一个问题,如何自动挂载 windows分区
..并且使当前普通用户具有读写的权限..而且需要在桌面上有windows分区的图标..
.
=====================================================
不过创建成功以后依然 无法挂载系统.
最后还是在此贴上解决问题...
http://foo-projects.org/pipermail/lunar/2008-August/008081.html
参照此文做如下操作。
http://foo-projects.org/pipermail/lunar/2008-August/008081.html
- Hello,
- if you use kde3 (or other DM) in Lunar and insert pendrive or any other hot
- plugable device the kde will show you option to mount it. If an user will
- agree to mount it the error will appear:
- "org.freedesktop.hal.storage.mount-removable no <-- (action, result)"
- There is easy fix for this error. Just define security rules
- in /etc/PolicyKit/PolicyKit.conf like these:
- <config version="0.1">
- <match action="org.freedesktop.hal.storage.mount-removable">
- <match user="Put user account name here">
- <return result="yes"/>
- </match>
- </match>
- <match action="org.freedesktop.hal.storage.mount-fixed">
- <match user="Put user account name here">
- <return result="yes"/>
- </match>
- </match>
- </config>
- First rule allows automounting pendrives, the second one is for fixed disks
- like hard drives.
- have a nice day,
- Zbigniew 'zbiggy' Luszpinski
- cd /etc/PolicyKit
- sudo cp PolicyKit.conf PolicyKit.conf.back
- sudo gedit PolicyKit.conf
- <config version="0.1">
- <match action="org.freedesktop.hal.storage.mount-removable">
- <match user="Put user account name here">
- <return result="yes"/>
- </match>
- </match>
- <match action="org.freedesktop.hal.storage.mount-fixed">
- <match user="Put user account name here">
- <return result="yes"/>
- </match>
- </match>
- </config>
然后重起 HAL 服务
- sudo /etc/service haldaemon restart
=====================================================