linux下移動裝置的掛載
[root@localhost root]# rpm -qa|grep kernel
//檢視linux核心kernel是否安裝上了,kernel對IDE和SCSI硬碟的系統的支援。
kernel-pcmcia-cs-3.1.31-13
kernel-source-2.4.20-8
kernel-2.4.20-8
[root@localhost root]#echo $LANG
//檢視linux系統預設的字符集
zh_CN.GB18030
[root@localhost root]# fdisk -l
//檢視U盤裝置是否別識別,現在我的沒有識別,可以在虛擬機器選單欄的“虛擬機器”—“可移動裝置”—“USB裝置”—“kingston Removable disk”我的是金士頓U盤,在前面打勾。
然後彈出提示資訊
USB裝置即將從主機拔下,並連線到這個虛擬機器。它首先被停止,以便消除了一些安全裝置,主機可能會顯示訊息“該裝置可以安全地刪除”
點選確定
Disk /dev/sda: 8589 MB, 8589934592 bytes
255 heads, 63 sectors/track, 1044 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/sda1 * 1 13 104391 83 Linux
/dev/sda2 14 979 7759395 83 Linux
/dev/sda3 980 1044 522112+ 82 Linux swap
[root@localhost root]# fdisk -l
//U盤被識別出來了,我的是U盤式fat16格式的,不同格式,掛載方法都不一樣。Ntfs 格式mount –t ntfs 加顯示的裝置 掛載點
光碟掛載mount –t iso9660 /dev/hdc /mnt/cdrom
軟盤掛載mount –t msdos /dev/fd0 /mnt/floppy
等等
Disk /dev/sda: 8589 MB, 8589934592 bytes
255 heads, 63 sectors/track, 1044 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/sda1 * 1 13 104391 83 Linux
/dev/sda2 14 979 7759395 83 Linux
/dev/sda3 980 1044 522112+ 82 Linux swap
Disk /dev/sdb: 1999 MB, 1999568384 bytes
32 heads, 63 sectors/track, 1937 cylinders
Units = cylinders of 2016 * 512 = 1032192 bytes
Device Boot Start End Blocks Id System
/dev/sdb1 1 1937 1952464+ 6 FAT16
[root @loccalhast root]#mkdir /mnt/usb
//在/mnt目錄下建一個usb掛載點
[root@localhost root]# mount -t vfat /dev/sdb1 /mnt/usb
//USB裝置(/dev/sdb1)掛在到/mnt/usb目錄下
[root@localhost root]# cd /mnt/usb
//切換到usb目錄下
[root@localhost usb]# ll
//顯示檔案,是亂碼,不支援中文
總用量 50144
drwxr-xr-x 2 root root 32768 12月 2 14:43 ??
drwxr-xr-x 2 root root 32768 12月 2 14:43 ??
drwxr-xr-x 3 root root 32768 12月 28 19:24 ???
drwxr-xr-x 3 root root 32768 12月 28 19:24 ???
drwxr-xr-x 3 root root 32768 12月 28 19:24 ???
[root @localhsot usb ]#cd
//切換到root目錄,在掛載當前目錄解除安裝,系統顯示裝置忙,無法解除安裝。
[root @localhost root]#umount /mnt/usb
//解除安裝USB設定
[root@localhost root]# mount -t vfat -o iocharset=cp936 /dev/sdb1 /mnt/usb
//重新掛載,-o iocharset後面跟是設立的字符集,cp935是簡體中文,
[root@localhost root]# cd /mnt/usb
//切換到掛載點目錄
[root@localhost usb]# ll
//可以看到顯示中文,可以進行新增、拷貝,刪除操作了
總用量 50144
-rwxr-xr-x 1 root root 1008716 9月 11 20:09 11_webserver.rar
drwxr-xr-x 2 root root 32768 12月 31 11:50 1簡單點亮燈程式
-rwxr-xr-x 1 root root 22663 12月 31 11:49 a410addr.txt
-rwxr-xr-x 1 root root 11662908 12月 28 14:39 apache下.flv
-rwxr-xr-x 1 root root 7275 12月 31 11:47 ARM總結.txt
[root @localhost usb]#cd
//拔出U盤前,別忘了解除安裝U盤,避免資料丟失
[root @localhost root]#umount /mnt/usb
//檢視linux核心kernel是否安裝上了,kernel對IDE和SCSI硬碟的系統的支援。
kernel-pcmcia-cs-3.1.31-13
kernel-source-2.4.20-8
kernel-2.4.20-8
[root@localhost root]#echo $LANG
//檢視linux系統預設的字符集
zh_CN.GB18030
[root@localhost root]# fdisk -l
//檢視U盤裝置是否別識別,現在我的沒有識別,可以在虛擬機器選單欄的“虛擬機器”—“可移動裝置”—“USB裝置”—“kingston Removable disk”我的是金士頓U盤,在前面打勾。
然後彈出提示資訊
USB裝置即將從主機拔下,並連線到這個虛擬機器。它首先被停止,以便消除了一些安全裝置,主機可能會顯示訊息“該裝置可以安全地刪除”
點選確定
Disk /dev/sda: 8589 MB, 8589934592 bytes
255 heads, 63 sectors/track, 1044 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/sda1 * 1 13 104391 83 Linux
/dev/sda2 14 979 7759395 83 Linux
/dev/sda3 980 1044 522112+ 82 Linux swap
[root@localhost root]# fdisk -l
//U盤被識別出來了,我的是U盤式fat16格式的,不同格式,掛載方法都不一樣。Ntfs 格式mount –t ntfs 加顯示的裝置 掛載點
光碟掛載mount –t iso9660 /dev/hdc /mnt/cdrom
軟盤掛載mount –t msdos /dev/fd0 /mnt/floppy
等等
Disk /dev/sda: 8589 MB, 8589934592 bytes
255 heads, 63 sectors/track, 1044 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/sda1 * 1 13 104391 83 Linux
/dev/sda2 14 979 7759395 83 Linux
/dev/sda3 980 1044 522112+ 82 Linux swap
Disk /dev/sdb: 1999 MB, 1999568384 bytes
32 heads, 63 sectors/track, 1937 cylinders
Units = cylinders of 2016 * 512 = 1032192 bytes
Device Boot Start End Blocks Id System
/dev/sdb1 1 1937 1952464+ 6 FAT16
[root @loccalhast root]#mkdir /mnt/usb
//在/mnt目錄下建一個usb掛載點
[root@localhost root]# mount -t vfat /dev/sdb1 /mnt/usb
//USB裝置(/dev/sdb1)掛在到/mnt/usb目錄下
[root@localhost root]# cd /mnt/usb
//切換到usb目錄下
[root@localhost usb]# ll
//顯示檔案,是亂碼,不支援中文
總用量 50144
drwxr-xr-x 2 root root 32768 12月 2 14:43 ??
drwxr-xr-x 2 root root 32768 12月 2 14:43 ??
drwxr-xr-x 3 root root 32768 12月 28 19:24 ???
drwxr-xr-x 3 root root 32768 12月 28 19:24 ???
drwxr-xr-x 3 root root 32768 12月 28 19:24 ???
[root @localhsot usb ]#cd
//切換到root目錄,在掛載當前目錄解除安裝,系統顯示裝置忙,無法解除安裝。
[root @localhost root]#umount /mnt/usb
//解除安裝USB設定
[root@localhost root]# mount -t vfat -o iocharset=cp936 /dev/sdb1 /mnt/usb
//重新掛載,-o iocharset後面跟是設立的字符集,cp935是簡體中文,
[root@localhost root]# cd /mnt/usb
//切換到掛載點目錄
[root@localhost usb]# ll
//可以看到顯示中文,可以進行新增、拷貝,刪除操作了
總用量 50144
-rwxr-xr-x 1 root root 1008716 9月 11 20:09 11_webserver.rar
drwxr-xr-x 2 root root 32768 12月 31 11:50 1簡單點亮燈程式
-rwxr-xr-x 1 root root 22663 12月 31 11:49 a410addr.txt
-rwxr-xr-x 1 root root 11662908 12月 28 14:39 apache下.flv
-rwxr-xr-x 1 root root 7275 12月 31 11:47 ARM總結.txt
[root @localhost usb]#cd
//拔出U盤前,別忘了解除安裝U盤,避免資料丟失
[root @localhost root]#umount /mnt/usb
本文轉自 chen138 51CTO部落格,原文連結:http://blog.51cto.com/chenboqiang/261436,如需轉載請自行聯絡原作者
相關文章
- linux掛載裝置檔案Linux
- Linux裝置掛載和解除安裝Linux
- SOLARS AIX LINUX 下移動資料庫檔案到裸裝置AILinux資料庫
- 掛載裝置(mount)
- Linux Mount 掛載裝置使用說明Linux
- 自動掛載裸裝置及許可權
- 【linux】驅動-9-裝置樹外掛Linux
- Linux裝置驅動之字元裝置驅動Linux字元
- linux mount掛載裝置(u盤,光碟,iso等 )使用說明Linux
- 『學了就忘』Linux基礎 — 14、Linux系統的裝置檔名和掛載Linux
- linux掛載新硬碟,開機自動掛載Linux硬碟
- 深入淺出:Linux裝置驅動之字元裝置驅動Linux字元
- 乾坤合一:Linux裝置驅動之塊裝置驅動Linux
- Linux塊裝置驅動Linux
- Linux裝置驅動框架、配置檔案及載入(轉)Linux框架
- 蛻變成蝶:Linux裝置驅動之字元裝置驅動Linux字元
- 蛻變成蝶~Linux裝置驅動之字元裝置驅動Linux字元
- LINUX下的裝置驅動程式 (轉)Linux
- linux 自動掛載分割槽Linux
- Linux裝置驅動程式 (轉)Linux
- 在vmware的centos(linux)中載入usb裝置CentOSLinux
- linux磁碟掛載與解除安裝Linux
- Linux裸裝置相關命令[轉載]Linux
- Linux裝置驅動程式學習----1.裝置驅動程式簡介Linux
- 乾坤合一:Linux裝置驅動之USB主機和裝置驅動Linux
- linux裝置驅動中的併發控制Linux
- vmware下linux掛載行動硬碟Linux硬碟
- linux 裝置驅動基本概念Linux
- Linux(centos)手動掛載系統磁碟和自動掛載系統磁碟教程LinuxCentOS
- [Linux]檔案掛載和解除安裝Linux
- 《Linux裝置驅動開發詳解(第2版)》——第1章Linux裝置驅動概述及開發環境構建1.1裝置驅動的作用Linux開發環境
- Linux掛載--什麼是掛載Linux
- Linux兩種光碟機自動掛載的方法Linux
- 在Linux中,什麼是裝置驅動程式?如何安裝和解除安裝裝置驅動程式?Linux
- 【linux】驅動-7-平臺裝置驅動Linux
- Linux磁碟分割槽及自動掛載Linux
- linux下掛載行動硬碟(ntfs格式)Linux硬碟
- linux mdev實現裝置符重對映/裝置符手動新增Linuxdev