How to mount NTFS on Feisty?

Status
Not open for further replies.

Dark Star

Cyborg Agent
Help me guys the heading says ever thing plz help me in mounting NTFS on Ubuntu 7.04 . Plz tell me each way .. Help would be appreciated :)
 

sachin_kothari

Ambassador of Buzz
Re: How to mount NTFS on Festive?

here, this topic is already discussed for debian.
ubuntu will not be any different.
*www.thinkdigit.com/forum/showthread.php?t=58190
 

praka123

left this forum longback
Re: How to mount NTFS on Festive?

the distro is called not "festive" it is Ubuntu Feisty
there is a guide online called ubuntu guide @
*ubuntuguide.org which neatly explains things.
now did u got internet configured on Feisty?
 
OP
Dark Star

Dark Star

Cyborg Agent
Re: How to mount NTFS on Festive?

OOps a goof up thanks for the link though :) Book marked ;)

But i did not have dual boot will it work.. Commands from Terminal would be appreciated ;)

And I did not have any system tools option under application :(
 
Last edited:

praka123

left this forum longback
Re: How to mount NTFS on Festive?

open a terminal from menu(Applications>Accessories>terminal) or right click menu open terminal.then from terminal after the "$" prompt enter below commands and paste the output here.
Code:
:~$ sudo fdisk   -l
^ remember space is btwn the fdisk and "-l"(small letter L) .space is honoured in UNIX.unlike in DOS.
OK post ur output here :)

And u dint answer whether u got internet on Ubuntu-which connection type etc
 
OP
Dark Star

Dark Star

Cyborg Agent
Re: How to mount NTFS on Festive?

Arrey dude I know that fdisk -l command .. Ya currently surfing thru Ubuntu 256 kBps UL :)

Output

Code:
 [b] Device Boot      Start         End      Blocks   Id  System[/b]
/dev/sda1   *           1        1275    10241406    7  HPFS/NTFS
/dev/sda2            1276        6949    45576405    f  W95 Ext'd (LBA)
/dev/sda3            6950        9728    22322317+  83  Linux
/dev/sda5            1276        3825    20482843+   b  W95 FAT32
/dev/sda6            3826        6757    23551258+   7  HPFS/NTFS
/dev/sda7            6758        6949     1542208+  82  Linux swap / Solaris
As u can see there are 2 NTFS partition I ..

Some 1 help plz :(
 
Last edited:

praka123

left this forum longback
Re: How to mount NTFS on Festive?

As u know in Unix-like systems,normal users are void of permission to mess with areas where they are not allowed.so we use "sudo" or "su" to gain permission hoping ur the admin of ur system.
isnt the feisty installer asks where to mount ur partns.it may be mounted there at /media/sda* directories.
anyways,
for mounting ntfs as read only is what u can do without ntfs-3g support.
I suppose u want read-write support with ntfs.so make sure u have a good /etc/apt/sources.list
Code:
# # If you get GPG errors with this sources.list, locate the GPG key in this file
# # and run these commands (where KEY is replaced with that key)
# #
# # gpg --keyserver hkp://subkeys.pgp.net --recv-keys KEY
# # gpg --export --armor KEY | sudo apt-key add -
#Ubuntu Security
deb *archive.ubuntu.com/ubuntu/ feisty-security main restricted
deb-src *archive.ubuntu.com/ubuntu/ feisty-security main restricted
deb *archive.ubuntu.com/ubuntu/ feisty-security universe
deb-src *archive.ubuntu.com/ubuntu/ feisty-security universe
deb *archive.ubuntu.com/ubuntu/ feisty-security multiverse
deb-src *archive.ubuntu.com/ubuntu/ feisty-security multiverse

# # Ubuntu supported packages
# # GPG key: 437D05B5
deb *archive.ubuntu.com/ubuntu/ feisty main restricted
deb-src *archive.ubuntu.com/ubuntu/ feisty main restricted
deb *archive.ubuntu.com/ubuntu/ feisty-updates main restricted
deb-src *archive.ubuntu.com/ubuntu/ feisty-updates main restricted

#
# # Ubuntu community supported packages
# # GPG key: 437D05B5
deb *archive.ubuntu.com/ubuntu/ feisty universe multiverse
deb-src *archive.ubuntu.com/ubuntu/ feisty universe multiverse
deb *archive.ubuntu.com/ubuntu/ feisty-updates universe multiverse
deb-src *archive.ubuntu.com/ubuntu/ feisty-updates universe multiverse

# # Ubuntu backports project
# # GPG key: 437D05B5
deb *archive.ubuntu.com/ubuntu/ feisty-backports main restricted universe multiverse
deb-src *archive.ubuntu.com/ubuntu/ feisty-backports main restricted universe multiverse

#### Proposed Multiverse ####
deb *archive.ubuntu.com/ubuntu/ feisty-proposed main restricted universe multiverse
deb-src *archive.ubuntu.com/ubuntu/ feisty-proposed main restricted universe multiverse

#### Canonical Commercial ####
deb *archive.canonical.com/ubuntu feisty-commercial main

deb *medibuntu.sos-sts.com/repo/ feisty free non-free
^^ make sure u have enabled repositories.my feisty sources.list that is.
for more info on adding repositories:
*ubuntuguide.org/wiki/Ubuntu:Feisty#How_to_add_extra_repositories
if u want to edit that file(/etc/apt/sources.list) use below command if u dont know the cli editor's way:
press ALT+F2 to get run dialog.enter below commands and press enter to get the file edited:
Code:
gksudo gedit /etc/apt/sources.list
do an "
Code:
apt-get update
" or use menu System>administration>synaptic manager-press reload.
then do :
Code:
~$ sudo apt-get install ntfs-3g
install it or use synaptic package manager to install it.
then edit ur /etc/fstab (hoping it is not mounted earlier)
from RUN dialog as earlier:
Code:
gksudo gedit /etc/fstab
if u find any entries with /dev/sda1 or /dev/sda6 before itself,just put a hash"#" infront of the line and save.then add below entries and save,exit:
Code:
/dev/sda1      /media/sda1     ntfs-3g  silent,umask=0,locale=en_US.UTF-8  0  0
/dev/sda6      /media/sda6     ntfs-3g  silent,umask=0,locale=en_US.UTF-8  0  0
make sure to make directories in /media if already not there :
Code:
:~$ sudo mkdir /media/sda1

Code:
:~$ sudo mkdir /media/sda6
mount again:
Code:
:~$sudo mount -a
neglect the UUID entry system.dont worry :)
 
Last edited:

mehulved

18 Till I Die............
Re: How to mount NTFS on Festive?

I think someone recommended installing ntfs-config rather. It downloads some extra tools along with ntfs-3g, for configuration.
 

praka123

left this forum longback
Re: How to mount NTFS on Festive?

if u felt the explanation's tough go to:
*flomertens.free.fr/ntfs-config
 

praka123

left this forum longback
Re: How to mount NTFS on Festive?

I've tried explaining things as n00bish friendly as possible.wait for someone else be here to help u?
 

kalpik

In Pursuit of "Happyness"
Re: How to mount NTFS on Festive?

sudo apt-get install ntfs-config

Then goto applications->system tools->ntfs config
 

QwertyManiac

Commander in Chief
Re: How to mount NTFS on Festive?

kalpik said:
sudo apt-get install ntfs-config

Then goto applications->system tools->ntfs config
Arent we getting tired of saying this 2 checkbox method all the time? :( We needz a sticky!
 

eddie

El mooooo
Re: How to mount NTFS on Festive?

QwertyManiac said:
Arent we getting tired of saying this 2 checkbox method all the time? :( We needz a sticky!
...and you think that would help? Do you seriously think people like to read stickies and search forum?

If they searched and read the posts of just kalpik and praka123...we would have a really silent Open Source section.
 

mehulved

18 Till I Die............
Re: How to mount NTFS on Festive?

If people read stickies Open Source would have surely had half the number of threads it currently has.
 
Status
Not open for further replies.
Top Bottom