LinuxQuestions.org
Review your favorite Linux distribution.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 07-14-2004, 10:23 AM   #1
ajbrouwe
Member
 
Registered: Jan 2004
Posts: 93

Rep: Reputation: 15
View NTFS partition?


Alright...so I"m now themed, have the internet, and sound- but, no mp3's to play! They all dwell on my NTFS partition.

I had heard a rumor that I could be required to convert it to a FAT32...is there any way to avoid this and just mount it? I don't really want to copy all the files over to the linux partition, just play straight from windows.

I'm running slack 10 with the 2.4 kernel. Help!

Thanks guys, you're awesome~

Andrew
 
Old 07-14-2004, 10:27 AM   #2
Ungluun
LQ Newbie
 
Registered: Aug 2003
Location: Belgium
Distribution: Ubuntu
Posts: 22

Rep: Reputation: 15
You can mount it, and then read from it, but not safely write to it.
Just edit you /etc/fstab and you should be able to play your music. If you want to write to that disk, you should format it as fat32 if you want to be able to read it in windows, or a linuxfilesystem if you're not going to use windows anymore.
 
Old 07-14-2004, 10:28 AM   #3
SolarBear
Member
 
Registered: Oct 2003
Location: Québec, Canada
Distribution: Gentoo 2005.0(desktop), Debian 3.0 r2 (server)
Posts: 105

Rep: Reputation: 15
No need to convert to FAT32 (is that even possible ?)

Just add your partition to your /etc/fstab. Search the forums, this has been answered numerous times (heck, that's how I found how to do it , just search for "mount ntfs partition" or something similar.

Side note : it's actually the first time I'm able to help somebody. Yay !
 
Old 07-14-2004, 10:50 AM   #4
ajbrouwe
Member
 
Registered: Jan 2004
Posts: 93

Original Poster
Rep: Reputation: 15
I"m glad you were able to help. Honestly, this is my first linux install, and, with this site, has been very successful.

How do I edit files like that? I had heard use pico as a text editor, but have never tried.

Andrew
 
Old 07-14-2004, 11:08 AM   #5
netmask
Member
 
Registered: Jul 2004
Location: Sherbrooke, Quebec, Canada, North America, World, Milky Way
Distribution: Gentoo
Posts: 103

Rep: Reputation: 16
There are many text editors out there, but out of the most popular ones you'd have vi, pico and joe.

Vi is nice though you need to read some documentation to know the commands. Pico is simple and effective and so is joe.


My personnal fav is pico. It's only a matter of typing pico /etc/fstab, adding the line, ctrl+o to save and ctrl+x to quit.

Last edited by netmask; 07-14-2004 at 11:10 AM.
 
Old 07-14-2004, 12:24 PM   #6
ajbrouwe
Member
 
Registered: Jan 2004
Posts: 93

Original Poster
Rep: Reputation: 15
Here is my fstab:

Code:
/dev/hdc5         /ext2               defaults         1   1
/dev/hdc1         /Windows        ntfs        ro               1   0
/dev/hdc6         /Stuff               ntfs        ro               1   0
/dev/cdrom       /mnt/cdrom      iso9660     noauto,owner,ro  0   0
/dev/fd0           /mnt/floppy      auto        noauto,owner     0   0
devpts             /dev/pts          devpts      gid=5,mode=620   0   0
proc                /proc               proc        defaults         0   0
It looks like it loads, eh? Now, how do I go about viewing and reading the mp3's from it?

Andrew
 
Old 07-14-2004, 01:05 PM   #7
SolarBear
Member
 
Registered: Oct 2003
Location: Québec, Canada
Distribution: Gentoo 2005.0(desktop), Debian 3.0 r2 (server)
Posts: 105

Rep: Reputation: 15
After you've modified your fstab, just type mount -a as root and, if your fstab entries are correct, you should be able to access your partition.

Also, for text editors, if you're using a window manager, each WM has a text editor you can use with it : gedit for Gnome, kedit or kwrite for KDE. They're more "Notepad-like".

Last edited by SolarBear; 07-14-2004 at 01:06 PM.
 
Old 07-14-2004, 01:38 PM   #8
ajbrouwe
Member
 
Registered: Jan 2004
Posts: 93

Original Poster
Rep: Reputation: 15
I'm confused as to what I need to edit in fstab- the above was an output from it, what should I change to have my "stuff" partition readable?

Thanks for the advice- I've figured pico out.

If it appears in fstab, is it good to go?

Andrew
 
Old 07-14-2004, 02:09 PM   #9
blk96gt
Member
 
Registered: Jun 2004
Location: Nacogdoches, TX
Distribution: Ubuntu 7.04
Posts: 230

Rep: Reputation: 30
If you want the partition mounted at boot just make it look like this:
/dev/hdc6 /Stuff ntfs user,ro,umask=222 1 0
If you dont want it to mount at boot just add noauto in front of user.
 
Old 07-14-2004, 02:10 PM   #10
Smokey
Member
 
Registered: Jul 2004
Distribution: Slackware
Posts: 313

Rep: Reputation: 30
Quote:
Originally posted by ajbrouwe
I'm confused as to what I need to edit in fstab- the above was an output from it, what should I change to have my "stuff" partition readable?

Thanks for the advice- I've figured pico out.

If it appears in fstab, is it good to go?

Andrew
/dev/hdc1 /Stuff ntfs ro,user,utf8,umask=022_0_2 < replace the underscores for spaces
 
Old 07-14-2004, 02:14 PM   #11
keefaz
LQ Guru
 
Registered: Mar 2004
Distribution: Slackware
Posts: 6,552

Rep: Reputation: 872Reputation: 872Reputation: 872Reputation: 872Reputation: 872Reputation: 872Reputation: 872
Hey, beware of the sixth field which may give to fsck the bad idea to check the ntfs partition at boot. (fsck does not exist for ntfs)

do instead :
/dev/hdc1 /Stuff ntfs ro,user,utf8,umask=0222 0 0
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
View NFTS after (FAT32 to NTFS) Amir_1984 SUSE / openSUSE 3 11-07-2005 01:10 AM
View NTFS Partition with Greek Filenames corectly (UBUNTU) thothoneos Linux - Newbie 2 10-29-2005 09:18 AM
Peanut Linux how to view NTFS? LunarEagle Linux - Newbie 4 01-21-2005 12:40 PM
I Figured out how to view the ntfs drive!!! ben_build#2.1.0 LinuxQuestions.org Member Success Stories 0 05-03-2004 06:20 PM
Can't view NTFS drive as user! lt1derful Slackware 5 08-13-2003 10:00 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 02:03 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration