Shoutbox

I installed ubuntu - Printable Version

-Shoutbox (https://shoutbox.menthix.net)
+-- Forum: MsgHelp Archive (/forumdisplay.php?fid=58)
+--- Forum: Skype & Technology (/forumdisplay.php?fid=9)
+---- Forum: Tech Talk (/forumdisplay.php?fid=17)
+----- Thread: I installed ubuntu (/showthread.php?tid=70970)

I installed ubuntu by Curtis on 01-23-2007 at 06:40 AM

I just installed ubuntu,   Everything is working fine.  But was just wonder if there was a way I could get my music which is on a fat32 partition?


RE: I installed ubuntu by FineWolf on 01-23-2007 at 07:07 AM

quote:
Originally posted by Curtis
I just installed ubuntu,   Everything is working fine.  But was just wonder if there was a way I could get my music which is on a fat32 partition?


It should automount... If not, use the mount command in the terminal. (You can type man mount to get the command's documentation).
RE: I installed ubuntu by Curtis on 01-23-2007 at 07:45 AM

Well, could you help me with that?  I kind of don't know how to use Ubuntu really good.


RE: I installed ubuntu by FineWolf on 01-23-2007 at 08:17 AM

well, you need to open the terminal, give yourself root, create a new folder using the mkdir command, and then mound the drive

Here is a general example:

code:
sudo bash
mkdir ~/mount_point
mount -t vfat /dev/hda0 ~/mount_point

Where /dev/hda0 is the device handle of your partition (you'll need to determine that yourself) and ~/mount_point is, well, the folder you want to mount your drive...

You might also want to try:

code:
sudo automount

which may or may not automatically mount your drive and add a launcher icon on your desktop.
RE: I installed ubuntu by Mike on 01-23-2007 at 02:00 PM

Try reading this: brian's reply to Use Ubuntu Live to backup data


RE: I installed ubuntu by Curtis on 01-23-2007 at 03:09 PM

quote:
Originally posted by Mike
Try reading this: brian's reply to Use Ubuntu Live to backup data

Whenever I try to use the mkdir command it just says access denied.
RE: RE: I installed ubuntu by FineWolf on 01-23-2007 at 03:55 PM

quote:
Originally posted by Curtis
quote:
Originally posted by Mike
Try reading this: brian's reply to Use Ubuntu Live to backup data

Whenever I try to use the mkdir command it just says access denied.


try prefixing the command with the word sudo

code:
sudo mkdir /mnt/win

RE: I installed ubuntu by Adeptus on 01-23-2007 at 04:06 PM

quote:
Originally posted by Curtis
Whenever I try to use the mkdir command it just says access denied.
If it says that, you are not root.

There are two ways to become root -- sudo, which FineWolf suggested, will ask for your user account password and run whatever you ask it to (including an interactive shell, bash) as root.  This is the preferred way, but your user account needs to be added to /etc/sudoers for that to work.  Perhaps Ubuntu setup has done that for you (I don't use Ubuntu distribution).

The other way you can become root is the su command.  Simply type "su -" (the - tells it to load the environment profile).  Note that the password required here is your root account password, not your user password.

Although it should be obvious, you can always find out whether your efforts were successful by typing "whoami".

Other than that, FineWolf's instructions are fine -- except that your FAT32 partition isn't going to be /dev/hda0, but some other number.  It should be safe to experiment or you can run fdisk ("fdisk /dev/hda") and view the partition table.
RE: RE: I installed ubuntu by FineWolf on 01-23-2007 at 04:35 PM

quote:
Originally posted by Adeptus
quote:
Originally posted by Curtis
Whenever I try to use the mkdir command it just says access denied.
If it says that, you are not root.

There are two ways to become root -- sudo, which FineWolf suggested, will ask for your user account password and run whatever you ask it to (including an interactive shell, bash) as root.  This is the preferred way, but your user account needs to be added to /etc/sudoers for that to work.  Perhaps Ubuntu setup has done that for you (I don't use Ubuntu distribution).

The other way you can become root is the su command.  Simply type "su -" (the - tells it to load the environment profile).  Note that the password required here is your root account password, not your user password.

Although it should be obvious, you can always find out whether your efforts were successful by typing "whoami".

Other than that, FineWolf's instructions are fine -- except that your FAT32 partition isn't going to be /dev/hda0, but some other number.  It should be safe to experiment or you can run fdisk ("fdisk /dev/hda") and view the partition table.


The Ubuntu distrib does it fact adds your account to the sudoers list. So in this case, sudo is the way to go. Also, Adaptus is right about the /dev/hda0 ... I provided an example above and it's there only to guide you. That device handle will change. You can use the fdisk command or the bundled GParted application to find out which device handle corresponds to your partition.
RE: I installed ubuntu by Curtis on 01-24-2007 at 01:12 AM

I used "sudo mkdir /mnt/win"

Then it asks for my password.  But won't let me type it in.

Edit: Never mind.  I figured it out.  Thanks for the help though.


RE: I installed ubuntu by Hank on 01-24-2007 at 01:39 AM

Ubuntu Forums search here for your answers


RE: I installed ubuntu by joey on 01-25-2007 at 10:13 AM

just try doing it as root, assuming you know the password and are allowed to use root of course!


RE: RE: I installed ubuntu by FineWolf on 01-25-2007 at 01:24 PM

quote:
Originally posted by ichooselife128
just try doing it as root, assuming you know the password and are allowed to use root of course!


You cannot login as root in Ubuntu (at least, not in X Server)... sudo works fine and sudo bash will give you a pseudo-root terminal.