linux mount命令使用小結

2021-09-01 14:18:37 字數 874 閱讀 7553

linux中mount命令使用

使用格式

mount [-t vfstype] [-o] device directory

其中:-t表示檔案系統的型別,常見的型別有:

光碟或映象檔案 iso9660

mount -t iso9660 /dev/cdrom /mnt/chrom 或mount /mount/cdrom

u盤 vfat

mount -t vfat /dev/sda1 /mnt/sub

windows共享 cifs

mount -t cifs /mnt

mount -t cifs -o username=adminstrator(如果共享檔案的windows機器設定了密碼,就設定一項,沒設這密碼就不用設這這一項了) //ip(共享檔案的機器的ip)/sharefilename(設定為共享的資料夾) /mnt

nfs共享 nfs

mount ip:/var/ftp/pub /mnt

iso映象檔案

cat /dev/cdrom > a.iso

mount -t iso9660 -0 loop a.iso /mnt

表示將/dev/cdrom刻成乙個iso映象,-0 loop表示用乙個回環裝置檔案

我們會用mount(掛載)了,那麼一般windows中的檔案要上傳到linux中是不是直接用windows共享的方式就行了,不用在linux上裝個ftp伺服器端(linux中比較常用的ftp伺服器有vsftpd,關於它的安裝配置請看vsftpd安裝配置)了。

mount /dev/sda /mnt

touch /mnt/

解除安裝用umount  umount /mnt

echo aaaa > /dev/pst1

linux mount 掛載命令 詳解

掛接命令 mount 首先,介紹一下掛接 mount 命令的使用方法,mount命令引數非常多,這裡主要講一下今天我們要用到的。命令格式 mount t vfstype o options device dir 其中 1.t vfstype 指定檔案系統的型別,通常不必指定。mount 會自動選擇正...

Linux mount實際使用

檢視所有檔案系統 裝置 fdisk l 1.當要重新掛載乙個檔案系統時 裝置 可以直接 mount o remount,rw dev sdb9 檔案系統 mnt sdb9 目錄 也可以 umount mnt sdb9 fdisk l 作用是找到所有的檔案系統,如果用df或者mount命令不能看到沒有...

linux mount 命令和umount命令

掛載 把分割槽和目錄對應的過程 建立對映 掛載點 掛載在檔案樹中的位置 mount 引數 裝置名稱 掛載點 a 安裝在 etc fstab檔案中列出的所有檔案系統.l 列出當前已掛載的裝置,檔案系統名稱和掛載點 o 指定掛載選項,t 檔案系統型別,指定裝置的檔案系統型別,ext2 msdos vfa...