Bạn có thể sử dụng gnome-volume-manager
để tự động. Bạn có thể cấu hình lại một chút bằng cách sử dụng gnome-volume-properties
.
ảnh chụp màn hình
Nếu bạn đang ở runlevel 3, tôi không tin đây là một lựa chọn. Tuy nhiên, bạn có thể dỗ dành udev
việc gắn kết cho bạn theo cách tương tự.
1. thêm một tập tin automount.rules
vào/etc/udev/rules.d
2. thêm các dòng sau vào automount.rules
automount.rules
# automounting usb flash drives
# umask is used to allow every user to write on the stick
# we use --sync in order to enable physical removing of mounted memory sticks -- this is OK for fat-based sticks
# I don't automount sda since in my system this is the internal hard drive
# depending on your hardware config, usb sticks might be other devices than sdb*
ACTION=="add",KERNEL=="sdb*", RUN+="/usr/bin/pmount --sync --umask 000 %k"
ACTION=="remove", KERNEL=="sdb*", RUN+="/usr/bin/pumount %k"
ACTION=="add",KERNEL=="sdc*", RUN+="/usr/bin/pmount --sync --umask 000 %k"
ACTION=="remove", KERNEL=="sdc*", RUN+="/usr/bin/pumount %k"
3. tải lại các quy tắc udev:
udevadm control --reload-rules
tiện ích gnome-đĩa
Tôi tìm thấy tên mới của gnome-volume-manager
BTW. Nó được gọi là tiện ích gnome-đĩa trong CentOS6, tôi chỉ xác nhận rằng RPM nằm trong repos yum mặc định.
Câu hỏi thường gặp này đưa tôi đến với nó: Các thiết bị lưu trữ USB không được gắn tự động khi được cài đặt trên bản cài đặt Debian 6.0 mới .
Thực hiện lệnh sau để tìm thấy nó:
$ yum search gnome-disk-utility*
gnome-disk-utility-devel.i686 : Development files for gnome-disk-utility-libs
gnome-disk-utility-devel.x86_64 : Development files for gnome-disk-utility-libs
gnome-disk-utility-ui-devel.i686 : Development files for gnome-disk-utility-ui-libs
gnome-disk-utility-ui-devel.x86_64 : Development files for gnome-disk-utility-ui-libs
gnome-disk-utility.x86_64 : Disk management application
gnome-disk-utility-libs.i686 : Shared libraries used by Palimpsest
gnome-disk-utility-libs.x86_64 : Shared libraries used by Palimpsest
gnome-disk-utility-ui-libs.i686 : Shared libraries used by Palimpsest
gnome-disk-utility-ui-libs.x86_64 : Shared libraries used by Palimpsest
Tài liệu tham khảo
How do I achieve automatic mounting when this USB device with known UUID is plugged in
bạn là bạn chỉ muốn tự động vượt qua ổ USB cụ thể này? Hay nó quan trọng? Tôi đã đi trước một câu trả lời chung chung hơn sẽ tự động gắn hầu hết các thiết bị lưu trữ USB, nhưng tôi không hoàn toàn chắc chắn đây là những gì bạn muốn.