|
|

楼主 |
发表于 2004-8-8 17:29:06
|
显示全部楼层
我想在LINUX下下载文件放在我挂载的FAT32的分区里!但是默认的是755
我想写入所以想改成777但是不行!看下面::
我已经用修改FSTAB的方法用永久的挂仔了FAT32分区了!但是还是:
[root@fydream fydream]# chmod -r 777 /mnt/disk_d
chmod: 无法取得 ‘777’ 的属性: 没有那个文件或目录
chmod: changing permissions of ‘/mnt/disk_d’ (requested: 0311, actual: 0755): 不允许的操作
[root@fydream fydream]# chmod 777 /mnt/disk_d
chmod: changing permissions of ‘/mnt/disk_d’ (requested: 0777, actual: 0755): 不允许的操作
[root@fydream fydream]# adsl-start
[root@fydream fydream]# chmod 755 /mnt/disk_d
[root@fydream fydream]# chmod 777 /mnt/disk_d/软件备份
chmod: changing permissions of ‘/mnt/disk_d/软件备份’ (requested: 0777, actual: 0755): 不允许的操作
[root@fydream fydream]# chmod 775 /mnt/disk_d/软件备份
chmod: changing permissions of ‘/mnt/disk_d/软件备份’ (requested: 0775, actual: 0755): 不允许的操作
[root@fydream fydream]# |
|