当前位置: 技术问答>linux和unix
我希望能够使用同一硬盘上FAT32分区中的数据。
来源: 互联网 发布时间:2015-01-25
本文导语: 这么才能在xWINDOW中读FAT32中的数据? | 有。 以root用户登陆。 先进入/mnt目录,新建windows目录。(也可以是其他名称) 然后,你要在编辑/etc/fstab,并在其中添加如下内容: /dev/hda1 /mnt/windows...
这么才能在xWINDOW中读FAT32中的数据?
|
有。
以root用户登陆。
先进入/mnt目录,新建windows目录。(也可以是其他名称)
然后,你要在编辑/etc/fstab,并在其中添加如下内容:
/dev/hda1 /mnt/windows vfat codepage=936,iocharset=cp936 0 0
存盘退出,并重新启动。
以后,同一硬盘上FAT32分区中的数据,就会自动挂载。
*注意:hda1,指得是第一块IDE硬盘第一个主分区。
以root用户登陆。
先进入/mnt目录,新建windows目录。(也可以是其他名称)
然后,你要在编辑/etc/fstab,并在其中添加如下内容:
/dev/hda1 /mnt/windows vfat codepage=936,iocharset=cp936 0 0
存盘退出,并重新启动。
以后,同一硬盘上FAT32分区中的数据,就会自动挂载。
*注意:hda1,指得是第一块IDE硬盘第一个主分区。
|
请确认你是以root用户执行操作:
# mkdir /mnt/windows
# mount -t vfat /dev/hda1 /mnt/windows
设定所有用户可读写,执行权限:
# mount it vfat -o user,rw,exec,umask=000 /dev/hda1 /mnt/windows
# mkdir /mnt/windows
# mount -t vfat /dev/hda1 /mnt/windows
设定所有用户可读写,执行权限:
# mount it vfat -o user,rw,exec,umask=000 /dev/hda1 /mnt/windows
|
# mkdir /mnt/windows
# mount -t vfat /dev/hda1 /mnt/windows
# mount -t vfat /dev/hda1 /mnt/windows