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

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

redhat7.1如何實現(xiàn)ntfs掛載-創(chuàng)新互聯(lián)

小編給大家分享一下redhat7.1如何實現(xiàn)ntfs掛載,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

專業(yè)從事成都網(wǎng)站建設(shè)、成都網(wǎng)站設(shè)計,高端網(wǎng)站制作設(shè)計,小程序設(shè)計,網(wǎng)站推廣的成都做網(wǎng)站的公司。優(yōu)秀技術(shù)團(tuán)隊竭力真誠服務(wù),采用html5+CSS3前端渲染技術(shù),響應(yīng)式網(wǎng)站開發(fā),讓網(wǎng)站在手機(jī)、平板、PC、微信下都能呈現(xiàn)。建站過程建立專項小組,與您實時在線互動,隨時提供解決方案,暢聊想法和感受。

給redhat7.1掛載ntfs文件系統(tǒng)時失敗了好幾次,提示是沒有安裝C貶義環(huán)境,然后安裝了gcc,就成功掛載了,下面是詳細(xì)步驟

[root@foundation59 Desktop]# fdisk -l  ###查看所有磁盤信息

Disk /dev/sdb: 750.2 GB, 750156374016 bytes, 1465149168 sectors

Units = sectors of 1 * 512 = 512 bytes

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

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

Disk label type: dos

Disk identifier: 0x3c488b69

  Device Boot    Start     End    Blocks  Id  System

/dev/sdb1       2048  1465145343  732571648   7  HPFS/NTFS/exFAT  ###看到有一個750G的ntfs文件系統(tǒng)硬盤,這就是將要掛載的硬盤

Disk /dev/sda: 120.0 GB, 120034123776 bytes, 234441648 sectors

Units = sectors of 1 * 512 = 512 bytes

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

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

Disk label type: dos

Disk identifier: 0x0003c4df

  Device Boot    Start     End    Blocks  Id  System

/dev/sda1  *     2048   73404415   36701184   7  HPFS/NTFS/exFAT

/dev/sda2     73404416   74428415    512000  83  Linux

/dev/sda3     74428416   82292735   3932160  82  Linux swap / Solaris

/dev/sda4     82292736  234440703   76073984   5  Extended

/dev/sda5     82294784  234440703   76072960  83  Linux

[root@foundation59 Desktop]# ls  ###查看已經(jīng)解壓之后的ntfs-3g軟件(此軟件很容易百度下載)

ntfs-3g_ntfsprogs-2011.4.12.zip  ntfs-3g_ntfsprogs-2014.2.15.tgz

ntfs-3g_ntfsprogs-2014.2.15

[root@foundation59 Desktop]# cd ntfs-3g_ntfsprogs-2014.2.15  ###進(jìn)入此軟件的解壓目錄

[root@foundation59 ntfs-3g_ntfsprogs-2014.2.15]# ls

\aclocal.m4   config.h.in  COPYING.LIB  libfuse-lite  missing

AUTHORS    config.log   CREDITS    libntfs-3g   NEWS

autogen.sh   config.sub   depcomp    ltmain.sh   ntfsprogs

ChangeLog   configure   include    m4       README

compile    configure.ac  INSTALL    Makefile.am  src

config.guess  COPYING    install-sh  Makefile.in  TODO.ntfsprogs

[root@foundation59 ntfs-3g_ntfsprogs-2014.2.15]# ./configure   ###1、執(zhí)行此編譯命令

checking build system type... x86_64-unknown-linux-gnu

checking host system type... x86_64-unknown-linux-gnu

checking target system type... x86_64-unknown-linux-gnu

checking for a BSD-compatible install... /usr/bin/install -c

checking whether build environment is sane... yes

checking for a thread-safe mkdir -p... /usr/bin/mkdir -p

checking for gawk... gawk

checking whether make sets $(MAKE)... yes

checking whether to enable maintainer-specific portions of Makefiles... no

checking for style of include used by make... GNU

config.status: executing depfiles commands

config.status: executing libtool commands

/usr/bin/rm: cannot remove 'libtoolT': No such file or directory

You can type now 'make' to build ntfs-3g.

[root@foundation59 ntfs-3g_ntfsprogs-2014.2.15]# make   ####2、執(zhí)行此命令

make  all-recursive

make[1]: Entering directory `/root/Desktop/ntfs-3g_ntfsprogs-2014.2.15'

Making all in include

make[2]: Entering directory `/root/Desktop/ntfs-3g_ntfsprogs-2014.2.15/include'

Making all in ntfs-3g

[root@foundation59 ntfs-3g_ntfsprogs-2014.2.15]# mkn

mknod  mkntfs

[root@foundation59 ntfs-3g_ntfsprogs-2014.2.15]# make install   ###3、執(zhí)行此命令,后面一大堆提示信息,就不寫了

[root@foundation59 ntfs-3g_ntfsprogs-2014.2.15]# mount -t ntfs-3g /dev/sdb1 /mnt/windows750  ###然后直接掛載不成功,是因為沒有創(chuàng)建/mnt/windows750目錄

ntfs-3g-mount: failed to access mountpoint /mnt/windows750: No such file or directory

[root@foundation59 ntfs-3g_ntfsprogs-2014.2.15]# mkdir /mnt/windows750  ###先創(chuàng)建目錄

[root@foundation59 ntfs-3g_ntfsprogs-2014.2.15]# mount -t ntfs-3g /dev/sdb1 /mnt/windows750  ###成功掛載(沒有提示信息就是成功了,可以進(jìn)入看看)

[root@foundation59 ntfs-3g_ntfsprogs-2014.2.15]# mkdir /mnt/1t

[root@foundation59 ntfs-3g_ntfsprogs-2014.2.15]# mount -t ntfs-3g /dev/sdd1 /mnt/1t

[root@foundation59 ntfs-3g_ntfsprogs-2014.2.15]# cd /mnt/

[root@foundation59 mnt]# ls  ###可以看到掛在了3個盤

1t  windows750  windowscpan

[root@foundation59 mnt]# cd windows750

[root@foundation59 windows750]# ls  ###可以看到750G硬盤里面的文件信息

download  movies  MyDrivers       $RECYCLE.BIN        Youku Files  軟件

java_0924  music  Program Files (x86)  System Volume Information  文件

[root@foundation59 windows750]#

接下來要實現(xiàn)redhat7.1開機(jī)自動掛載ntfs格式硬盤或分區(qū)

a、進(jìn)入/mnt目錄,新建目錄名為cpan,dpan

b、使用fdisk -l命令查看硬盤每個區(qū)對應(yīng)的地址

c、進(jìn)入/etc路徑下編輯fstab文件(編輯之前最好先備份cp /etc/fstab /etc/fstab.bak),在文件末尾添加如下代碼

/dev/sdb1 /mnt/windows750 ntfs-3g defaults 0 0  ###這里我的750G盤對應(yīng)sdb1

/dev/sdd1 /mnt/1t ntfs-3g defaults 0 0

以上是“redhat7.1如何實現(xiàn)ntfs掛載”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學(xué)習(xí)更多知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!

另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務(wù)可用性高、性價比高”等特點與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場景需求。


分享題目:redhat7.1如何實現(xiàn)ntfs掛載-創(chuàng)新互聯(lián)
文章出自:http://weahome.cn/article/djjgdh.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部