fuse:
ntfs-3g:
完了後,編譯安裝:
1、先安裝fuse軟體:
[root@server1 ~]# tar -xvzf fuse-2.8.1.tar.gz
[root@server1 ~]# cd fuse-2.8.1;./configure;make;make install
2、安裝ntfs-3g軟體:
[root@server1 ~]# tar -xvzf ntfs-3g-2009.11.14.gz
[root@server1 ~]# cd ntfs-3g-2009.11.14;./configure;make;make install
3、掛在ntfs檔案系統:
[root@server1 ~]# fdisk -l
disk /dev/sda: 21.4 gb, 21474836480 bytes
255 heads, 63 sectors/track, 2610 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 2610 20860402+ 8e linux lvm
disk /dev/sdb: 10.7 gb, 10737418240 bytes
255 heads, 63 sectors/track, 1305 cylinders
units = cylinders of 16065 * 512 = 8225280 bytes
device boot start end blocks id system
/dev/sdb1 1 1246 10008463+ 8e linux lvm
disk /dev/sdc: 40.0 gb, 40060403712 bytes
255 heads, 63 sectors/track, 4870 cylinders
units = cylinders of 16065 * 512 = 8225280 bytes
device boot start end blocks id system
/dev/sdc1 1 4870 39118243+ 7 hpfs/ntfs
已經識別出來了。
[root@server1 ~]# mount -t ntfs-3g /dev/sdc1 /mnt/win
[root@server1 ~]# cd /mnt/win/
[root@server1 win]# ls
[root@server1 win]# touch a
[root@server1 win]# echo "test the ntfs filesystem on linux" >a
[root@server1 win]# ls -l
total 1
-rwxrwxrwx 1 root root 34 dec 3 19:38 a
[root@server1 win]# cat a
test the ntfs filesystem on linux
4、設定開機自動掛在:
/dev/sdc1 /mnt/win ntfs-3g defaults 0 0
待下次開機時會自動掛在ntfs檔案系統的。
RHEL 4U4 最小 gcc安裝
最小安裝並沒有安裝gcc 需要手工安裝 1.rpm ivh cpp 3.4.6 3.i386.rpm 2.rpm ivh glibc kernheaders 2.4 9.1.98.el.i386.rpm rpm ivh glibc headers 2.3.4 2.25.i386.rpm rpm iv...
RHEL5下重設密碼
linux系統忘記密碼是很鬱悶的的事情,進不了系統,又不想重灌系統,那有沒有好的解決辦呢?下面以 的形式介紹一下具體的操作步驟!一 保證系統的grub沒有被加密,如果被加密的話,至少要知道grub的密碼 二 重啟系統,進入下面的介面 開機後,如果沒有設定grub密碼,那系統會自動到達這個介面,如果有...
RHEL5下如何使用LUN
lun logic unit number 類似於linux下的lv 邏輯卷 可以理解為儲存裝置分配給主機使用的空間。它區分intiator端和target端。一般intiator端指前端主機,target端指後端儲存。那我們linux主機要使用lun,首先是在後端儲存上建立raid 建立熱備盤 建...