# mount -o loop -t iso9660 ubuntu-13.10-desktop-amd64.iso /mnt/isoNFS マウント
Ubuntucifs マウント
# apt-get install nfs-commonArch Linux
# pacman -S nfs-utils # systemctl start nfs-client.target # systemctl start rpcbind.service# mount server_aa:/var/www /mnt/server_aa/www
# mount -t cifs //server_aa/tmp /mnt/server_aa/tmp -o guest option="iocharset=utf8,username=scott,passwd=tiger,workgroup=TOCHIGI,uid=uchida,gid=wheel,file_mode=0775,dir_mode=0775" # mount -t cifs -o $option //server_bb/test /mnt/server_bb/test シェアネームの調べ方$ smbclient -L 1p-nas01 -U%
エラーftp マウント
- mount: failed to parse mount options
原因option="iocharset=utf8,username=scott,passwd=tiger,uid=uchida,gid=uchida" もし、gid にuchida がないと発生する。対策# groupadd uchida
# curlftpfs -o uid=1000,gid=1000,user=scott:tiger ftp://server_aa /mnt/ftp # curlftpfs -o uid=1000,gid=1000,codepage=cp932,user=scott:tiger ftp://server_aa /mnt/ftpパーティションのマウント
# mount /dev/sda8 /mnt/sda8 # mount -t ntfs -o uid=uchida,gid=wheel /dev/sdb1 /mnt/sdb1Arch Linux で ntfs のマウント
# pacman -S ntfs-3g # mount -t ntfs /dev/sdb1 /mnt/sdb1ハードディスクの UUID の調べ方
ls -l /dev/disk/by-uuid # blkid -p /dev/sda1 # blkid -s UUID /dev/sda9 # blkid -s UUID -o value /dev/sda9GPT (GUID Partition Table)
# pacman -S ntfs-3g# parted -l /etc/fstab の例# mount -t ntfs-3g /dev/sdb2 /mnt/sdb2 # mount /dev/sdb2 /mnt/sdb2# pacman -S gptfdisk# gdisk /dev/sdb
#UUID=d4d8715b-7b2b-4807-9ba3-e6c8db0c1477 / ext4 rw,relatime,data=ordered 0 1 # UUID=9478d137-7426-4ea1-99f9-42d5288cbf32 /home ext4 defaults 0 2 # UUID=E41C0C2C1C0BF7F6 /mnt/sdb2 auto defaults 0 2 # UUID=29bd4e15-6b7d-439a-95b2-be921e00a1e8 none swap defaults 0 0 #
$ sudo s3fs s1.ekzemplaro.org /mnt/s1 -o rw,allow_other,uid=1000,gid=1000,default_acl=public-readUSB の初期化s3fs 274877906944 0 274877906944 0% /mnt/s1
# mkdosfs -F32 -nUSB /dev/sdb # mkfs.ntfs -F /dev/sdbUSB のマウント
# mount /dev/sdb /mnt/usb