Automount USB fica no Gentoo

1

Eu tenho um Genoo bare-bone instalado com dois usuários e uma conta de convidado ativada. Eu quero montar automaticamente os sticks USB sempre que eles estiverem conectados a todas as contas com permissão de leitura / gravação do usuário.

Qual é a melhor maneira de fazer isso? Eu sou superusuário neste sistema e posso instalar ou modificar arquivos do sistema. Eu estou procurando uma solução fácil, ou seja, eu deveria ser capaz de fazer isso sem modificar muitos arquivos.

    
por Dilawar 05.06.2013 / 09:53

1 resposta

3

há um bom suporte USB totalmente automatizado do Gentoo HOWTO usando o udev
outra maneira - para adicionar regras do udev, algumas regras, como descrito aqui a>

em geral, você tem que criar um arquivo em /etc/udev/rules.d/ (nomeie-o como "10-flash-mounts.rules") com o seguinte conteúdo:

#!/bin/sh  
# start at sdb to ignore the system hard drive  
KERNEL!="sd[b-z]*", GOTO="exit"  
ACTION=="add", PROGRAM!="/sbin/blkid %N", GOTO="exit"  

# import some useful filesystem info as variables  
IMPORT{program}="/sbin/blkid -o udev -p %N"  

# get the label if present, otherwise assign one based on device/partition  
ENV{ID_FS_LABEL}!="", ENV{dir_name}="%E{ID_FS_LABEL}"  
ENV{ID_FS_LABEL}=="", ENV{dir_name}="flash_drive_%k"  

# create the dir in /media and symlink it to /mnt  
ACTION=="add", RUN+="/bin/mkdir -p '/media/%E{dir_name}'"  

# global mount options  
#ACTION=="add", ENV{mount_options}="relatime"  

# filesystem-specific mount options (777/666 dir/file perms for vfat) 
ACTION=="add",ENV{mount_options_vfat}="gid=100,dmask=000,fmask=111,utf8,flush,rw,noatime,users"

# add device to /etc/fstab  
#ACTION=="add", ENV{ID_FS_TYPE}=="vfat", RUN+="/bin/sed -i '$a\/dev/%k /media/%E{dir_name} vfat %E{mount_options_vfat} 0 0' /etc/fstab"  

# mount device  
ACTION=="add", ENV{ID_FS_TYPE}=="vfat", RUN+="/bin/mount -t auto -o %E{mount_options_vfat} /dev/%k '/media/%E{dir_name}'"  

# clean up after device removal  
ACTION=="remove", ENV{dir_name}!="", RUN+="/bin/umount -l '/media/%E{dir_name}'", RUN+="/bin/rmdir '/media/%E{dir_name}'"  
ACTION=="remove", ENV{ID_FS_TYPE}!="", RUN+="/bin/sed -i '/\/dev\/%k /d' /etc/fstab"  

# exit  
LABEL="exit"
    
por 05.06.2013 / 10:57