Linux - NewbieThis Linux forum is for members that are new to Linux.
Just starting out and have a question?
If it is not in the man pages or the how-to's this is the place!
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
I have an external hd and its file format is ntfs. When I turn it on, there appears a menu asking what to do. But when I say it open the files, it doesn't. I understand that I have to mount it, there is no symbol in the tray also. How can I do that. I am a little bit new at kubuntu. By the way I am using feisty fawn 7.04.
Disk /dev/sdb: 250.0 GB, 250059350016 bytes
255 heads, 63 sectors/track, 30401 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/sdb1 1 30401 244196001 7 HPFS/NTFS
I did what you said but nothing changed.
mkdir /mnt/mydrive
when I use this,
the result is
Quote:
king87@murat:~$ mkdir/mnt/mydrive
bash: mkdir/mnt/mydrive: No such file or directory
king87@murat:~$ mkdir/mnt/Murat~external
bash: mkdir/mnt/Murat~external: No such file or directory
king87@murat:~$ mount -tnfts/dev/sda5/mnt/Murat~external
Disk /dev/sdb: 250.0 GB, 250059350016 bytes
255 heads, 63 sectors/track, 30401 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/sdb1 1 30401 244196001 7 HPFS/NTFS
I did what you said but nothing changed.
mkdir /mnt/mydrive
when I use this,
the result is
Code:
king87@murat:~$ mkdir/mnt/mydrive
bash: mkdir/mnt/mydrive: No such file or directory
king87@murat:~$ mkdir/mnt/Murat~external
bash: mkdir/mnt/Murat~external: No such file or directory
king87@murat:~$ mount -tnfts/dev/sda5/mnt/Murat~external
The first problem I see is that there is no space between "mkdir" and "/mnt/mydrive". The second mistake I see is that there is no space between "mount -tntfs" and "/dev/sda5" and "/mnt/Murat~external". You must separate parameters with spaces.
The third problem I see is that you ran fdisk -l and it shows an hard drive at sdb with an NTFS partition at sdb1, but you are trying to mount sda5.
So you should have typed
Code:
king87@murat:~$ mkdir /mnt/mydrive
king87@murat:~$ mount -tnfts /dev/sdb1 /mnt/mydrive
If these commands do not work, please post the last 50 lines of dmesg, which you can get from
Code:
# dmesg | tail -n 50
If you need to put the output in a file before using it, use
Code:
# dmesg | tail -n 50 > dmesg.txt
Last edited by David1357; 11-04-2007 at 10:45 AM.
Reason: Added request for dmesg output if commands fail
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.