在LINUX下看不到在XP新建立的文件夹?

在LINUX下看不到在XP新建立的文件夹?

大家好,我是个新手。才在机器上装上XP和红旗LINUX6.0双系统没几天。才开始学习,很多地方都不怎么明白,请大家多多指点。

我在XP中D盘新建立了一个文件夹,把一些学习资料放在里面,我想在LINUX系统桌面上建一个快捷方式指向D盘的这个文件夹。可是当我进入LINUX里面打开我的电脑-存储介质后,可以看到D盘,也能看到D盘里的隐藏文件,却看不到在XP里建立的那个文件夹,这是怎么回事?该如何解决?

另外我在LINUX里,想在D盘建立文件夹,为什么提示无法建立?

那个文件夹是否含特殊的符号,你建一个英文的看一下
建了个英文的文件夹后可以看到了,不过打开后只能看见里面的 图片文件,其他的chm文件和文本文件却还是看不见....

[ 本帖最后由 hyt35631515 于 2009-1-8 15:39 编辑 ]
重新手动挂载分区,加参数
/*fat32的分区
mount -t vfat -o iocharset=cp936 /xxx/xxx /xxx/xxx
/*ntfs的分区
mount -t vfat -o iocharset=cp936 /xxx/xxx /xxx/xxx
谢谢。按你说的弄了一边,还是没用,也不知道是不是我没弄对。

[root@localhost ~]# mount -t vfat -o iocharset=cp936 /mnt/sda5
Usage: mount -V                 : print version
       mount -h                 : print this help
       mount                    : list mounted filesystems
       mount -l                 : idem, including volume labels
So far the informational part. Next the mounting.
The command is `mount [-t fstype] something somewhere'.
Details found in /etc/fstab may be omitted.
       mount -a [-t|-O] ...     : mount all stuff from /etc/fstab
       mount device             : mount device at the known place
       mount directory          : mount known device here
       mount -t type dev dir    : ordinary mount command
Note that one does not really mount a device, one mounts
a filesystem (of the given type) found on the device.
One can also mount an already visible directory tree elsewhere:
       mount --bind olddir newdir
or move a subtree:
       mount --move olddir newdir
One can change the type of mount containing the directory dir:
       mount --make-shared dir
       mount --make-slave dir
       mount --make-private dir
       mount --make-unbindable dir
One can change the type of all the mounts in a mount subtree
containing the directory dir:
       mount --make-rshared dir
       mount --make-rslave dir
       mount --make-rprivate dir
       mount --make-runbindable dir
A device can be given by name, say /dev/hda1 or /dev/cdrom,
or by label, using  -L label  or by uuid, using  -U uuid .
Other options: [-nfFrsvw] [-o options] [-p passwdfd].
For many more details, say  man 8 mount .
[root@localhost ~]#

我的英文很一般,上边说的都不怎么懂。
引用:
原帖由 hyt35631515 于 2009-1-8 15:46 发表
谢谢。按你说的弄了一边,还是没用,也不知道是不是我没弄对。

[root@localhost ~]# mount -t vfat -o iocharset=cp936 /mnt/sda5
Usage: mount -V                 : print version
       mount -h           ...
引用:
原帖由 lee-zj2008 于 2009-1-8 15:48 发表


兄弟,你仅仅指定了要挂载的设备,没有指定挂载点啊,要指定一个挂载点才行的,除非你的/etc/fstab文件里有相应的语句
就你这个例子来说吧,比如你的/dev/sda5是fat32的分区格式,想挂载的话要先建一个目录,也就是刚才所说的挂载点
mkdir /media/disk
然后再挂载
mount -t vfat -o iocharset=cp936 /mnt/sda5 /media/disk
这样就OK了
哦,谢谢指教。
目前还是有些一知半解,但估计以后学习的深入了就明白了。
学习一下。