真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

linux掛移動(dòng)硬盤(pán)命令 Linux掛載移動(dòng)硬盤(pán)

linux如何掛載一塊移動(dòng)硬盤(pán)并且讀出硬盤(pán)內(nèi)文件?

linux掛載移動(dòng)硬盤(pán),讀取硬盤(pán)中的文件:

長(zhǎng)安ssl適用于網(wǎng)站、小程序/APP、API接口等需要進(jìn)行數(shù)據(jù)傳輸應(yīng)用場(chǎng)景,ssl證書(shū)未來(lái)市場(chǎng)廣闊!成為創(chuàng)新互聯(lián)的ssl證書(shū)銷(xiāo)售渠道,可以享受市場(chǎng)價(jià)格4-6折優(yōu)惠!如果有意向歡迎電話聯(lián)系或者加微信:18980820575(備注:SSL證書(shū)合作)期待與您的合作!

1、安裝系統(tǒng)相關(guān)編譯工具,命令:

yum?install?gcc?gcc-c++?gcc-g77?flex?bison?autoconf?automake?bzip2-devel

zlib-devel?ncurses-devel?libjpeg-devel?libpng-devel?libtiff-devel?

freetype-devel?pam-devel?openssl-devel?libxml2-devel?gettext-devel?

pcre-devel

2、編譯安裝ntfs-3g工具包,命令:

tar?zxvf?ntfs-3g-2010.10.2.tgz?

cd?ntfs-3g-2010.10.2

#編譯configure文件,進(jìn)行安裝命令:

./configure

make

make?install

3、查看新添加硬盤(pán)位置,掛載硬盤(pán),命令:

fdisk?-l?

4、在列表中找到新添加硬盤(pán)位置,用mount命令掛載,命令:

mount?-t?ntfs-3g?

#(硬盤(pán)位置)?(掛載位置)?

#例如:

mount?-t?ntfs-3g?/dev/sda1?/home/ntfs

#ntfs為手動(dòng)創(chuàng)建目錄,掛載后ntfs即為硬盤(pán)內(nèi)文件。

linux mount 掛載命令 詳解

掛接命令(mount) mount命令參數(shù)非常多,

命令格式:mount [-t vfstype] [-o options] device dir

其中:

1.-t vfstype 指定文件系統(tǒng)的類(lèi)型,通常不必指定。mount 會(huì)自動(dòng)選擇正確的類(lèi)型。常用類(lèi)型有:

光盤(pán)或光盤(pán)鏡像:iso9660

DOS fat16文件系統(tǒng):msdos

Windows 9x fat32文件系統(tǒng):vfat

Windows NT ntfs文件系統(tǒng):ntfs

Mount Windows文件網(wǎng)絡(luò)共享:smbfs

UNIX(LINUX) 文件網(wǎng)絡(luò)共享:nfs

2.-o options 主要用來(lái)描述設(shè)備或檔案的掛接方式。常用的參數(shù)有:

loop:用來(lái)把一個(gè)文件當(dāng)成硬盤(pán)分區(qū)掛接上系統(tǒng)

ro:采用只讀方式掛接設(shè)備

rw:采用讀寫(xiě)方式掛接設(shè)備

iocharset:指定訪問(wèn)文件系統(tǒng)所用字符集

3.device 要掛接(mount)的設(shè)備。

4.dir設(shè)備在系統(tǒng)上的掛接點(diǎn)(mount point)。

掛接光盤(pán)鏡像文件

1、從光盤(pán)制作光盤(pán)鏡像文件。將光盤(pán)放入光驅(qū),執(zhí)行下面的命令。

#cp /dev/cdrom /home/sunky/mydisk.iso 或

#dd if=/dev/cdrom of=/home/sunky/mydisk.iso

注:執(zhí)行上面的任何一條命令都可將當(dāng)前光驅(qū)里的光盤(pán)制作成光盤(pán)鏡像文件/home/sunky/mydisk.iso

2、將文件和目錄制作成光盤(pán)鏡像文件,執(zhí)行下面的命令。

#mkisofs -r -J -V mydisk -o /home/sunky/mydisk.iso /home/sunky/ mydir

注:這條命令將/home/sunky/mydir目錄下所有的目錄和文件制作成光盤(pán)鏡像文件/home/sunky/mydisk.iso,光盤(pán)卷標(biāo)為:mydisk

3、光盤(pán)鏡像文件的掛接(mount)

#mkdir /mnt/vcdrom

注:建立一個(gè)目錄用來(lái)作掛接點(diǎn)(mount point)

#mount -o loop -t iso9660 /home/sunky/mydisk.iso /mnt/vcdrom

注:使用/mnt/vcdrom就可以訪問(wèn)盤(pán)鏡像文件mydisk.iso里的所有文件了。

掛接移動(dòng)硬盤(pán) 《Linux就該這么學(xué)》一起學(xué)習(xí)linux

對(duì)linux系統(tǒng)而言,USB接口的移動(dòng)硬盤(pán)是當(dāng)作SCSI設(shè)備對(duì)待的。插入移動(dòng)硬盤(pán)之前,應(yīng)先用fdisk –l 或 more /proc/partitions查看系統(tǒng)的硬盤(pán)和硬盤(pán)分區(qū)情況。

[root at pldyrouter /]# fdisk -l

接好移動(dòng)硬盤(pán)后,再用fdisk –l 或 more /proc/partitions查看系統(tǒng)的硬盤(pán)和硬盤(pán)分區(qū)情況.應(yīng)該可以發(fā)現(xiàn)多了一個(gè)SCSI硬盤(pán)/dev/sdc和它的兩個(gè)磁盤(pán)分區(qū)/dev /sdc1?、/dev/sdc2,其中/dev/sdc5是/dev/sdc2分區(qū)的邏輯分區(qū)。我們可以使用下面的命令掛接/dev/sdc1和 /dev/sdc5。

#mkdir -p /mnt/usbhd1

#mkdir -p /mnt/usbhd2

注:建立目錄用來(lái)作掛接點(diǎn)(mount point)

#mount -t ntfs /dev/sdc1 /mnt/usbhd1

#mount -t vfat /dev/sdc5 /mnt/usbhd2

注:對(duì)ntfs格式的磁盤(pán)分區(qū)應(yīng)使用-t ntfs 參數(shù),對(duì)fat32格式的磁盤(pán)分區(qū)應(yīng)使用-t vfat參數(shù)。若漢字文件名顯示為亂碼或不顯示,可以使用下面的命令格式。

#mount -t ntfs -o iocharset=cp936 /dev/sdc1 /mnt/usbhd1

#mount -t vfat -o iocharset=cp936 /dev/sdc5 /mnt/usbhd2

linux系統(tǒng)下使用fdisk分區(qū)命令和mkfs文件系統(tǒng)創(chuàng)建命令可以將移動(dòng)硬盤(pán)的分區(qū)制作成linux系統(tǒng)所特有的ext2、ext3格式。這樣,在linux下使用就更方便了。使用下面的命令直接掛接即可。

#mount /dev/sdc1 /mnt/usbhd1

掛接U盤(pán)

和USB接口的移動(dòng)硬盤(pán)一樣對(duì)linux系統(tǒng)而言U盤(pán)也是當(dāng)作SCSI設(shè)備對(duì)待的。使用方法和移動(dòng)硬盤(pán)完全一樣。插入U(xiǎn)盤(pán)之前,應(yīng)先用fdisk –l 或 more /proc/partitions查看系統(tǒng)的硬盤(pán)和硬盤(pán)分區(qū)情況。

[root at pldyrouter root]# fdisk -l

插入U(xiǎn)盤(pán)后,再用fdisk –l 或 more /proc/partitions查看系統(tǒng)的硬盤(pán)和硬盤(pán)分區(qū)情況。

[root at pldyrouter root]# fdisk -l

系統(tǒng)多了一個(gè)SCSI硬盤(pán)/dev/sdd和一個(gè)磁盤(pán)分區(qū)/dev/sdd1,/dev/sdd1就是我們要掛接的U盤(pán)。

#mkdir -p /mnt/usb

注:建立一個(gè)目錄用來(lái)作掛接點(diǎn)(mount point)

#mount -t vfat /dev/sdd1 /mnt/usb

注:現(xiàn)在可以通過(guò)/mnt/usb來(lái)訪問(wèn)U盤(pán)了, 若漢字文件名顯示為亂碼或不顯示,可以使用下面的命令。

#mount -t vfat -o iocharset=cp936 /dev/sdd1 /mnt/usb

linux下如何掛載硬盤(pán)?

1.插入新硬盤(pán),啟動(dòng)Linux服務(wù)器,使用fdisk -l 查看硬盤(pán)

#fdisk -l

Disk /dev/sdb: 1000.2 GB, 1000204886016 bytes

2.格式化硬盤(pán)

#mkfs -t ext4 /dev/sdb

3.掛載硬盤(pán)

#mount 硬盤(pán)地址 要掛載的地址

#mount /dev/sdb /media/imgs

4.實(shí)現(xiàn)系統(tǒng)重啟后自動(dòng)掛載該分區(qū)

#vi /etc/fstab

在最后一行添加

/dev/sdb /media/imgs ext4 defaults 1 2

一、添加磁盤(pán)

添加加新硬盤(pán)重啟服務(wù)器

添加完之后就可以重啟機(jī)器了,如果你機(jī)器是開(kāi)啟的,進(jìn)入系統(tǒng)并不能看見(jiàn)你剛添加的那塊磁盤(pán),只有等系統(tǒng)重啟,重新加載之后才會(huì)顯示安裝的那塊磁盤(pán)

二、進(jìn)入系統(tǒng)

使用root用戶(hù)進(jìn)入系統(tǒng)

三、 查看硬盤(pán)信息

[root@localhost ~]# fdisk -l ? //磁盤(pán)命令

1

Disk /dev/sda: 21.5 GB, 21474836480 bytes

255 heads, 63 sectors/track, 2610 cylinders

Units = cylinders of 16065 * 512 = 8225280 bytes

Sector size (logical/physical): 512 bytes / 512 bytes

I/O size (minimum/optimal): 512 bytes / 512 bytes

Disk identifier: 0x000c4cb5

Device Boot ? ? ?Start ? ? ? ? End ? ? ?Blocks ? Id ?System

/dev/sda1 ? * ? ? ? ? ? 1 ? ? ? ? ?64 ? ? ?512000 ? 83 ?Linux

Partition 1 does not end on cylinder boundary.

/dev/sda2 ? ? ? ? ? ? ?64 ? ? ? ?2611 ? ?20458496 ? 8e ?Linux LVM

Disk /dev/sdb: 21.5 GB, 21474836480 bytes

255 heads, 63 sectors/track, 2610 cylinders

Units = cylinders of 16065 * 512 = 8225280 bytes

Sector size (logical/physical): 512 bytes / 512 bytes

I/O size (minimum/optimal): 512 bytes / 512 bytes

Disk identifier: 0xd0f5c869

Device Boot ? ? ?Start ? ? ? ? End ? ? ?Blocks ? Id ?System

/dev/sdb1 ? ? ? ? ? ? ? 1 ? ? ? ?2610 ? ?20964793+ ?83 ?Linux

Disk /dev/sdc: 21.5 GB, 21474836480 bytes

255 heads, 63 sectors/track, 2610 cylinders

Units = cylinders of 16065 * 512 = 8225280 bytes

Sector size (logical/physical): 512 bytes / 512 bytes

I/O size (minimum/optimal): 512 bytes / 512 bytes

Disk identifier: 0x00000000

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

可以看到這臺(tái)機(jī)器加載了三個(gè)磁盤(pán)sda、sdb、sdc

其中sda是初始磁盤(pán),sdb已經(jīng)初始化且經(jīng)過(guò)使用,sdc是剛剛加載的,未格式化的新磁盤(pán)

四、創(chuàng)建新硬盤(pán)分區(qū)

[root@localhost ~]# fdisk /dev/sdc #進(jìn)入磁盤(pán)

Device contains neither a valid DOS partition table, nor Sun, SGI or OSF disklabel

Building a new DOS disklabel with disk identifier 0x45a3cadb.

Changes will remain in memory only, until you decide to write them.

After that, of course, the previous content won't be recoverable.

Warning: invalid flag 0x0000 of partition table 4 will be corrected by w(rite)

WARNING: DOS-compatible mode is deprecated. It's strongly recommended to

switch off the mode (command 'c') and change display units to

sectors (command 'u').

Command (m for help): m

Command action

a ? toggle a bootable flag ? ? ?#設(shè)定可啟動(dòng)標(biāo)記

b ? edit bsd disklabel

c ? toggle the dos compatibility flag

d ? delete a partition ? ? ? ? ?#刪除一個(gè)分區(qū)

l ? list known partition types ?#各分區(qū)類(lèi)型所對(duì)應(yīng)的ID

m ? print this menu ? ? ? ? ? ? #菜單

n ? add a new partition ? ? ? ? #添加一個(gè)分區(qū)

o ? create a new empty DOS partition table

p ? print the partition table ? #顯示該磁盤(pán)下的當(dāng)前分區(qū)信息

q ? quit without saving changes #不保存退出

s ? create a new empty Sun disklabel

t ? change a partition's system id

u ? change display/entry units

v ? verify the partition table

w ? write table to disk and exit #保存退出

x ? extra functionality (experts only)

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

知道命令之后就可以進(jìn)行分區(qū)了

Command (m for help): p //打印分區(qū)信息,可以看到當(dāng)前并沒(méi)有分區(qū)

Disk /dev/sdc: 21.5 GB, 21474836480 bytes

255 heads, 63 sectors/track, 2610 cylinders

Units = cylinders of 16065 * 512 = 8225280 bytes

Sector size (logical/physical): 512 bytes / 512 bytes

I/O size (minimum/optimal): 512 bytes / 512 bytes

Disk identifier: 0x45a3cadb

Device Boot ? ? ?Start ? ? ? ? End ? ? ?Blocks ? Id ?System

Command (m for help): n //創(chuàng)建一個(gè)新的分區(qū)

Command action

e ? extended//輸入e為創(chuàng)建擴(kuò)展分區(qū)

p ? primary partition (1-4) //輸入p為創(chuàng)建邏輯分區(qū)

p

Partition number (1-4): 1//劃分邏輯分區(qū)

First cylinder (1-2610, default 1): //我這里直接回車(chē),是不想把該磁盤(pán)分成多個(gè)分區(qū),把整個(gè)磁盤(pán)作為1個(gè)分區(qū)

Using default value 1

Last cylinder, +cylinders or +size{K,M,G} (1-2610, default 2610):

Using default value 2610

Command (m for help): p //再次查看可以看到該磁盤(pán)已經(jīng)有1個(gè)分區(qū)了

Disk /dev/sdc: 21.5 GB, 21474836480 bytes

255 heads, 63 sectors/track, 2610 cylinders

Units = cylinders of 16065 * 512 = 8225280 bytes

Sector size (logical/physical): 512 bytes / 512 bytes

I/O size (minimum/optimal): 512 bytes / 512 bytes

Disk identifier: 0x45a3cadb

Device Boot ? ? ?Start ? ? ? ? End ? ? ?Blocks ? Id ?System

/dev/sdc1 ? ? ? ? ? ? ? 1 ? ? ? ?2610 ? ?20964793+ ?83 ?Linux

Command (m for help): w //保存分區(qū)

The partition table has been altered!

Calling ioctl() to re-read partition table.

Syncing disks.

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

再次使用”fdisk -l”命令查看磁盤(pán)信息

Disk /dev/sdc: 21.5 GB, 21474836480 bytes

255 heads, 63 sectors/track, 2610 cylinders

Units = cylinders of 16065 * 512 = 8225280 bytes

Sector size (logical/physical): 512 bytes / 512 bytes

I/O size (minimum/optimal): 512 bytes / 512 bytes

Disk identifier: 0x406a4c58

Device Boot ? ? ?Start ? ? ? ? End ? ? ?Blocks ? Id ?System

/dev/sdc1 ? ? ? ? ? ? ? 1 ? ? ? ?2610 ? ?20964793+ ?83 ?Linux

1

2

3

4

5

6

7

8

9

第三塊磁盤(pán)/dev/sdc已經(jīng)分區(qū)好了

五、格式化分區(qū)

[root@localhost ~]# mkfs.ext3 /dev/sdc1

//將/dev/sdc1格式化為ext3類(lèi)型,好像大部分的磁盤(pán)都是格式化為ext3類(lèi)型,具體為什么沒(méi)有深入研究,暫時(shí)不清楚,想了解的朋友可以自己查一下

1

2

[root@localhost ~]# mkfs.ext3 /dev/sdc1

mke2fs 1.41.12 (17-May-2010)

文件系統(tǒng)標(biāo)簽=

操作系統(tǒng):Linux

塊大小=4096 (log=2)

分塊大小=4096 (log=2)

Stride=0 blocks, Stripe width=0 blocks

1310720 inodes, 5241198 blocks

262059 blocks (5.00%) reserved for the super user

第一個(gè)數(shù)據(jù)塊=0

Maximum filesystem blocks=4294967296

160 block groups

32768 blocks per group, 32768 fragments per group

8192 inodes per group

Superblock backups stored on blocks:

32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632, 2654208,

4096000

正在寫(xiě)入inode表: 完成 ? ? ? ? ? ? ? ? ? ? ? ? ?

Creating journal (32768 blocks): 完成

Writing superblocks and filesystem accounting information: 完成

This filesystem will be automatically checked every 31 mounts or

180 days, whichever comes first. ?Use tune2fs -c or -i to override.

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

格式化完畢,此時(shí)就可以使用“mount”命令掛載分區(qū)了,然后使用這個(gè)磁盤(pán)空間了

六、掛載分區(qū)以及開(kāi)機(jī)自動(dòng)掛載

[root@localhost ~]# df -h //此時(shí)只有sda1和sdb1兩個(gè)磁盤(pán)掛載

Filesystem ? ? ? ? ? ? ? ? ? ?Size ?Used Avail Use% Mounted on

/dev/mapper/VolGroup-lv_root ? 18G ? 15G ?1.5G ?92% /

tmpfs ? ? ? ? ? ? ? ? ? ? ? ? 932M ? 76K ?932M ? 1% /dev/shm

/dev/sda1 ? ? ? ? ? ? ? ? ? ? 485M ? 40M ?421M ? 9% /boot

/dev/sdb1 ? ? ? ? ? ? ? ? ? ? ?20G ?1.2G ? 18G ? 7% /disk/diskone

/dev/sr0 ? ? ? ? ? ? ? ? ? ? ?4.2G ?4.2G ? ? 0 100% /media/CentOS_6.5_Final

[root@localhost /]# cd /disk/

[root@localhost disk]# ll

總用量 4

drwxr-xr-x. 4 root root 4096 7月 ?28 17:04 diskone

[root@localhost disk]# cd diskone/

[root@localhost diskone]# ll

總用量 20

drwx------. 2 root root 16384 7月 ?28 16:12 lost+found

drwxr-xr-x. 2 root root ?4096 7月 ?28 17:09 software

[root@localhost diskone]# cd ../

[root@localhost disk]# mkdir disktwo //創(chuàng)建被掛載的路徑

[root@localhost disk]# ll

總用量 8

drwxr-xr-x. 4 root root 4096 7月 ?28 17:04 diskone

drwxr-xr-x. 2 r

如何在linux系統(tǒng)中掛載移動(dòng)硬盤(pán)?

 對(duì)linux系統(tǒng)而言,USB接口的移動(dòng)硬盤(pán)是當(dāng)作SCSI設(shè)備對(duì)待的。插入移動(dòng)硬盤(pán)之

前,應(yīng)先用fdisk –l 或 more /proc/partitions查看系統(tǒng)的硬盤(pán)和硬盤(pán)分區(qū)情況,要是感興趣的話可以看下劉遄老師寫(xiě)的《Linux就該這么學(xué)》作為入門(mén)的書(shū)籍。

linux系統(tǒng)下使用fdisk分區(qū)命令和mkfs文件系統(tǒng)創(chuàng)建命令可以將移動(dòng)硬盤(pán)的分區(qū)

制作成linux系統(tǒng)所特有的ext2、ext3格式。這樣,在linux下使用就更方便了。使用

下面的命令直接掛接即可。

 #mount /dev/sdc1 /mnt/usbhd1


本文標(biāo)題:linux掛移動(dòng)硬盤(pán)命令 Linux掛載移動(dòng)硬盤(pán)
文章出自:http://weahome.cn/article/hpgjce.html

其他資訊

在線咨詢(xún)

微信咨詢(xún)

電話咨詢(xún)

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部