Error:-Nautilus cannot display "/mnt/NTFS1
OS:-5.8-64bit
I am trying to mount 2TB External Hard-disk on Linux.
Steps Follow:-
[root@sujeet~]# mkdir -p /mnt/ntfs1
[root@sujeet ~]# fdisk -l |grep NTFS
/dev/sdb1 1 243198 1953480704 7 HPFS/NTFS
[root@sujeet ~]# mount -t ntfs-3g /dev/sdb1 /mnt/ntfs1/
[root@sujeet ~]# mount -t ntfs-3g /dev/sdb1 /mnt/ntfs1/ -o force
[root@sujeet ~]# df -h
Filesystem Size Used Avail Use% Mounted on
/dev/sda5 30G 990M 27G 4% /
/dev/sda11 6.8G 404M 6.1G 7% /var
/dev/sda10 6.8G 147M 6.3G 3% /tmp
/dev/sda9 6.8G 144M 6.3G 3% /opt
/dev/sda8 6.8G 145M 6.3G 3% /home
/dev/sda7 20G 4.7G 14G 26% /usr
/dev/sda15 3.9G 73M 3.7G 2% /usr/local
/dev/sda6 2.9G 0 2.9G 0% /dev/shm
/dev/sda3 175G 32G 135G 19% /u02
/dev/sda2 611G 405G 175G 70% /u01
/dev/sda1 996M 74M 871M 8% /boot
tmpfs 2.9G 0 2.9G 0% /dev/shm
df: `/mnt/ntfs1': Resource temporarily unavailable <ERROR>
RPM install on system as per requirement:-
[root@sujeet ~]# rpm -qa |grep fuse*
fuse-devel-2.7.4-8_12.el5
fuse-ntfs-3g-1.1104-1.el5.rf
fuse-libs-2.7.4-8.0.1.el5
fuse-ntfs-3g-1.1004-1.el5.rf
fuse-2.7.4-8_12.el5
fuse-2.7.4-8.0.1.el5
fuse-ntfs-3g-devel-2013.1.13-2.el5.rf
fuse-2.7.4-8_12.el5
fuse-libs-2.7.4-8_12.el5
[root@sujeet ~]# /sbin/service nfs restart
Shutting down NFS mountd: [FAILED]
Shutting down NFS daemon: [FAILED]
Shutting down NFS quotas: [FAILED]
Starting NFS services: [ OK ]
Starting NFS quotas: [ OK ]
Starting NFS daemon: [ OK ]
Starting NFS mountd: [ OK ]
Every thing fine for my side but still facing issue.. Hard drive mount in Read only mode...
Need to change Hard drive file system NTFS to EXT3.
/dev/sdb1 1 243198 1953480704 7 HPFS/NTFS
/dev/sdc1 1 243198 1953480704 7 HPFS/NTFS <My External Hard drive>
[root@sujeet ~]# mkfs.ext3 /dev/sdc1
mke2fs 1.39 (29-May-2006)
Filesystem label=
OS type: Linux
Block size=4096 (log=2)
Fragment size=4096 (log=2)
244187136 inodes, 488370176 blocks
24418508 blocks (5.00%) reserved for the super user
First data block=0
Maximum filesystem blocks=4294967296
14904 block groups
32768 blocks per group, 32768 fragments per group
16384 inodes per group
Superblock backups stored on blocks:
32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632, 2654208,
4096000, 7962624, 11239424, 20480000, 23887872, 71663616, 78675968,
102400000, 214990848
Writing inode tables: done
Creating journal (32768 blocks): done
Writing superblocks and filesystem accounting information: done
done
This filesystem will be automatically checked every 32 mounts or
180 days, whichever comes first. Use tune2fs -c or -i to override.
[root@sujeet ~]#
[root@sujeet ~]# mkdir /disk1
[root@sujeet /]# mount /dev/sdc1 /disk1
[root@sujeet /]# df -h
Filesystem Size Used Avail Use% Mounted on
/dev/sda5 30G 999M 27G 4% /
/dev/sda11 6.8G 412M 6.1G 7% /var
/dev/sda10 6.8G 144M 6.3G 3% /tmp
/dev/sda9 6.8G 144M 6.3G 3% /opt
/dev/sda8 6.8G 145M 6.3G 3% /home
/dev/sda7 20G 4.7G 14G 26% /usr
/dev/sda15 3.9G 73M 3.7G 2% /usr/local
/dev/sda6 2.9G 0 2.9G 0% /dev/shm
/dev/sda3 175G 32G 135G 19% /u02
/dev/sda2 611G 405G 175G 70% /u01
/dev/sda1 996M 74M 871M 8% /boot
tmpfs 2.9G 0 2.9G 0% /dev/shm
/dev/sdb1 1.8T 1.4T 309G 83% /media/disk
/dev/sdc1 1.8T 196M 1.7T 1% /disk1 <External Hard-drive>
If you unmount /dev/sdc1 after that again try to mount than got error.
Solution:-
Edit the /etc/fstab file and add an entry for the new drive. For my example,
[root@sujeet~]# vi /etc/fstab
/dev/sdc1 /disk1 ext3 defaults 1 1
save it.
[root@sujeet ~]# mount /disk1
************************************END***************************************
OS:-5.8-64bit
I am trying to mount 2TB External Hard-disk on Linux.
Steps Follow:-
[root@sujeet~]# mkdir -p /mnt/ntfs1
[root@sujeet ~]# fdisk -l |grep NTFS
/dev/sdb1 1 243198 1953480704 7 HPFS/NTFS
[root@sujeet ~]# mount -t ntfs-3g /dev/sdb1 /mnt/ntfs1/
[root@sujeet ~]# mount -t ntfs-3g /dev/sdb1 /mnt/ntfs1/ -o force
[root@sujeet ~]# df -h
Filesystem Size Used Avail Use% Mounted on
/dev/sda5 30G 990M 27G 4% /
/dev/sda11 6.8G 404M 6.1G 7% /var
/dev/sda10 6.8G 147M 6.3G 3% /tmp
/dev/sda9 6.8G 144M 6.3G 3% /opt
/dev/sda8 6.8G 145M 6.3G 3% /home
/dev/sda7 20G 4.7G 14G 26% /usr
/dev/sda15 3.9G 73M 3.7G 2% /usr/local
/dev/sda6 2.9G 0 2.9G 0% /dev/shm
/dev/sda3 175G 32G 135G 19% /u02
/dev/sda2 611G 405G 175G 70% /u01
/dev/sda1 996M 74M 871M 8% /boot
tmpfs 2.9G 0 2.9G 0% /dev/shm
df: `/mnt/ntfs1': Resource temporarily unavailable <ERROR>
RPM install on system as per requirement:-
[root@sujeet ~]# rpm -qa |grep fuse*
fuse-devel-2.7.4-8_12.el5
fuse-ntfs-3g-1.1104-1.el5.rf
fuse-libs-2.7.4-8.0.1.el5
fuse-ntfs-3g-1.1004-1.el5.rf
fuse-2.7.4-8_12.el5
fuse-2.7.4-8.0.1.el5
fuse-ntfs-3g-devel-2013.1.13-2.el5.rf
fuse-2.7.4-8_12.el5
fuse-libs-2.7.4-8_12.el5
[root@sujeet ~]# /sbin/service nfs restart
Shutting down NFS mountd: [FAILED]
Shutting down NFS daemon: [FAILED]
Shutting down NFS quotas: [FAILED]
Starting NFS services: [ OK ]
Starting NFS quotas: [ OK ]
Starting NFS daemon: [ OK ]
Starting NFS mountd: [ OK ]
Every thing fine for my side but still facing issue.. Hard drive mount in Read only mode...
Solution :-
Need to change Hard drive file system NTFS to EXT3.
Linux Hard Disk Format Command
How do I format a hard disk under Linux operating system from a shell prompt?
Format External Hard drive NTFS to EXT3 file system through Linux command.
[root@sujeet ~]# fdisk -l|grep NTFS/dev/sdb1 1 243198 1953480704 7 HPFS/NTFS
/dev/sdc1 1 243198 1953480704 7 HPFS/NTFS <My External Hard drive>
[root@sujeet ~]# mkfs.ext3 /dev/sdc1
mke2fs 1.39 (29-May-2006)
Filesystem label=
OS type: Linux
Block size=4096 (log=2)
Fragment size=4096 (log=2)
244187136 inodes, 488370176 blocks
24418508 blocks (5.00%) reserved for the super user
First data block=0
Maximum filesystem blocks=4294967296
14904 block groups
32768 blocks per group, 32768 fragments per group
16384 inodes per group
Superblock backups stored on blocks:
32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632, 2654208,
4096000, 7962624, 11239424, 20480000, 23887872, 71663616, 78675968,
102400000, 214990848
Writing inode tables: done
Creating journal (32768 blocks): done
Writing superblocks and filesystem accounting information: done
done
This filesystem will be automatically checked every 32 mounts or
180 days, whichever comes first. Use tune2fs -c or -i to override.
[root@sujeet ~]#
[root@sujeet ~]# mkdir /disk1
[root@sujeet /]# mount /dev/sdc1 /disk1
[root@sujeet /]# df -h
Filesystem Size Used Avail Use% Mounted on
/dev/sda5 30G 999M 27G 4% /
/dev/sda11 6.8G 412M 6.1G 7% /var
/dev/sda10 6.8G 144M 6.3G 3% /tmp
/dev/sda9 6.8G 144M 6.3G 3% /opt
/dev/sda8 6.8G 145M 6.3G 3% /home
/dev/sda7 20G 4.7G 14G 26% /usr
/dev/sda15 3.9G 73M 3.7G 2% /usr/local
/dev/sda6 2.9G 0 2.9G 0% /dev/shm
/dev/sda3 175G 32G 135G 19% /u02
/dev/sda2 611G 405G 175G 70% /u01
/dev/sda1 996M 74M 871M 8% /boot
tmpfs 2.9G 0 2.9G 0% /dev/shm
/dev/sdb1 1.8T 1.4T 309G 83% /media/disk
/dev/sdc1 1.8T 196M 1.7T 1% /disk1 <External Hard-drive>
If you unmount /dev/sdc1 after that again try to mount than got error.
Solution:-
Edit the /etc/fstab file and add an entry for the new drive. For my example,
[root@sujeet~]# vi /etc/fstab
/dev/sdc1 /disk1 ext3 defaults 1 1
save it.
[root@sujeet ~]# mount /disk1
No comments:
Post a Comment