![]() |
ubuntu.com - launchpad.net - ubuntu help
|
|
|||||||
|
Absolute Beginner Talk The perfect starting place to find out more about computers, Linux and Ubuntu. |
|
|
Thread Tools | Display Modes |
|
|
#1 |
|
Just Give Me the Beans!
![]() Join Date: Jan 2008
Beans: 51
|
xubuntu doesn't see my other hard drives!!!!!!!!
just installed xubuntu on my older P3 desktop.
i was running gutsy but it was too slow. anyway, xubuntu installed flawlessly, and evrything would be fine, but i have two additional internal hard drives that xubuntu wont see. its not in /media......they arent anywhere! help!!!!! |
|
|
|
|
|
#2 |
|
Badabing Badabang Badaboom...Sucker!
![]() Join Date: Feb 2006
Location: CT, USA
Beans: 4,996
|
Re: xubuntu doesn't see my other hard drives!!!!!!!!
Please post the output of the following 2 commands
Code:
sudo fdisk -l Code:
df -h
__________________
Shed that weight!! -- Apps | Window Managers Arch + Openbox (tty1) + Fluxbox (tty2) |
|
|
|
|
|
#3 |
|
Just Give Me the Beans!
![]() Join Date: Jan 2008
Beans: 51
|
Re: xubuntu doesn't see my other hard drives!!!!!!!!
thank you...
chris@chris-desktop:~$ sudo fdisk -l [sudo] password for chris: Disk /dev/sda: 20.4 GB, 20416757760 bytes 255 heads, 63 sectors/track, 2482 cylinders Units = cylinders of 16065 * 512 = 8225280 bytes Disk identifier: 0xa74ba74b Device Boot Start End Blocks Id System /dev/sda1 * 1 2389 19189611 83 Linux /dev/sda2 2390 2482 747022+ 5 Extended /dev/sda5 2390 2482 746991 82 Linux swap / Solaris Disk /dev/sdb: 40.0 GB, 40020664320 bytes 255 heads, 63 sectors/track, 4865 cylinders Units = cylinders of 16065 * 512 = 8225280 bytes Disk identifier: 0x3860385f Device Boot Start End Blocks Id System /dev/sdb2 1 4865 39078081 c W95 FAT32 (LBA) Disk /dev/sdc: 160.0 GB, 160041885696 bytes 255 heads, 63 sectors/track, 19457 cylinders Units = cylinders of 16065 * 512 = 8225280 bytes Disk identifier: 0x0e4de019 Device Boot Start End Blocks Id System /dev/sdc1 13036 19457 51584715 b W95 FAT32 /dev/sdc3 1 13035 104703606 b W95 FAT32 Partition table entries are not in disk order |
|
|
|
|
|
#4 |
|
Just Give Me the Beans!
![]() Join Date: Jan 2008
Beans: 51
|
Re: xubuntu doesn't see my other hard drives!!!!!!!!
Filesystem Size Used Avail Use% Mounted on
/dev/sda1 19G 2.4G 15G 14% / varrun 125M 100K 125M 1% /var/run varlock 125M 0 125M 0% /var/lock udev 125M 64K 125M 1% /dev devshm 125M 0 125M 0% /dev/shm lrm 125M 38M 88M 30% /lib/modules/2.6.24-16-generic/volatile |
|
|
|
|
|
#5 |
|
Badabing Badabang Badaboom...Sucker!
![]() Join Date: Feb 2006
Location: CT, USA
Beans: 4,996
|
Re: xubuntu doesn't see my other hard drives!!!!!!!!
Ubuntu is seeing the drives. Check the output of fdisk -- sdb(40GB) and sdc(160GB).
They are not mounted however as noted by df -h. You need to mount them in order to see them. First create a mount point Code:
sudo mkdir /mnt/myFirstDrive && sudo mkdir /mnt/mySecondDrive && sudo mkdir /mnt/myThirdDrive Code:
gksudo mousepad /etc/fstab Code:
/dev/sdb2 /mnt/myFirstDrive vfat iocharset=utf8,umask=000 0 0 /dev/sdc1 /mnt/mySecondDrive vfat iocharset=utf8,umask=000 0 0 /dev/sdc3 /mnt/myThirdDrive vfat iocharset=utf8,umask=000 0 0 Code:
sudo mount -a
__________________
Shed that weight!! -- Apps | Window Managers Arch + Openbox (tty1) + Fluxbox (tty2) Last edited by Inxsible; May 13th, 2008 at 10:29 PM.. |
|
|
|
|
|
#6 |
|
Just Give Me the Beans!
![]() Join Date: Jan 2008
Beans: 51
|
Re: xubuntu doesn't see my other hard drives!!!!!!!!
i understand mountijng, but in ubuntu it was graphical, doesnt appear to be the case in Xubuntu.
do i just sudo mount /media/xxxx? or are there drivers and the like i could download in synaptic to enable the use of GUI? |
|
|
|
|
|
#7 |
|
Quad Shot of Ubuntu
![]() Join Date: Dec 2007
Location: San Antonio Texas
Beans: 416
Fluxbuntu
|
Re: xubuntu doesn't see my other hard drives!!!!!!!!
well it's pretty simple, /dev/sdb and /dev/sdc are your 2 other internal hard drives, now all you've gotta do is mount them, so just create your mount points wherever you want them, say /home/<username>/storage and /home/<username>/storage2
then just run this code sudo mount /dev/sdb /home/<username>/storage sudo mount /dev/sdc /home/<username>/storage2 Last edited by rockerphil; May 13th, 2008 at 06:41 PM.. |
|
|
|
|
|
#8 |
|
Just Give Me the Beans!
![]() Join Date: Jan 2008
Beans: 51
|
Re: xubuntu doesn't see my other hard drives!!!!!!!!
it shouldnt be this difficult.
gksudo gedit /etc/fstab chris@chris-desktop:~$ /dev/sdb2 /mnt/myFirstDrive vfat iocharset=utf8,umask=000 0 0 bash: /dev/sdb2: Permission denied permission denied.... -------- aslo, im not sure how to mount anything. in ubuntu it just worked. /home/media rocker phil. i followed you directions too. after running the /home/username location, it said file not found. |
|
|
|
|
|
#9 | |
|
Badabing Badabang Badaboom...Sucker!
![]() Join Date: Feb 2006
Location: CT, USA
Beans: 4,996
|
Re: xubuntu doesn't see my other hard drives!!!!!!!!
Quote:
BTW...Xubuntu also uses Gnome services. so its the same in Ubuntu and Xubuntu. Just that Ubuntu recognized your drives because you must have mounted them during the install whereas Xubuntu didn't.
__________________
Shed that weight!! -- Apps | Window Managers Arch + Openbox (tty1) + Fluxbox (tty2) Last edited by Inxsible; May 13th, 2008 at 10:29 PM.. |
|
|
|
|
|
|
#10 |
|
Just Give Me the Beans!
![]() Join Date: Jan 2008
Beans: 51
|
Re: xubuntu doesn't see my other hard drives!!!!!!!!
i got the triple whammy!
chris@chris-desktop:~$ sudo mkdir /mnt/myFirstDrive && sudo mkdir /mnt/mySecondDrive && sudo mkdir /mnt/myThirdDrive mkdir: cannot create directory `/mnt/myFirstDrive': File exists chris@chris-desktop:~$ gksudo gedit /etc/fstab chris@chris-desktop:~$ /dev/sdb2 /mnt/myFirstDrive vfat iocharset=utf8,umask=000 0 0 bash: /dev/sdb2: Permission denied chris@chris-desktop:~$ /dev/sdc1 /mnt/mySecondDrive vfat iocharset=utf8,umask=000 0 0 bash: /dev/sdc1: Permission denied chris@chris-desktop:~$ /dev/sdc3 /mnt/myThirdDrive vfat iocharset=utf8,umask=000 0 0 im assuming its saying file exists because ive ran the command b4, so i just went to the next step. sorry about the last comments, im just frustrated. no biggie....beats the crap out of windows anyday. Last edited by sleeper414; May 13th, 2008 at 08:49 PM.. Reason: im a jerk |
|
|
|
| Bookmarks |
| Tags |
| hard drives, xubuntu 8.04 |
| Thread Tools | |
| Display Modes | |
|
|