LinuxQuestions.org
Share your knowledge at the LQ Wiki.
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 06-11-2006, 10:24 AM   #1
beowulf71
LQ Newbie
 
Registered: Jun 2006
Posts: 9

Rep: Reputation: 0
Slackware 10.2 Cannot mount USB HD (external)


Sry but Linux noob!Unable to mount my External HD!

HD is fat32 80 GB Samsung No prob with Debian,Ubuntu etc.but Slackware has one.

What i cannot understand is ,in QT parted there is my
HD shown but...only there

Is there anyway to make an automount script or so?
Or can i edit hotplug (looking for an howto)

Please help

LG Beowulf
 
Old 06-11-2006, 01:36 PM   #2
Alien Bob
Slackware Contributor
 
Registered: Sep 2005
Location: Eindhoven, The Netherlands
Distribution: Slackware
Posts: 8,559

Rep: Reputation: 8119Reputation: 8119Reputation: 8119Reputation: 8119Reputation: 8119Reputation: 8119Reputation: 8119Reputation: 8119Reputation: 8119Reputation: 8119Reputation: 8119
Slackware does not know the concept of automatically mounting plugged-in USB devices or inserted CDROM media.

If you search this forum, you might find solutions from people who have written hotplug or udev scripts, or found other ways. Or maybe you will find nothing at all.

Eric
 
Old 06-11-2006, 01:38 PM   #3
Nylex
LQ Addict
 
Registered: Jul 2003
Location: London, UK
Distribution: Slackware
Posts: 7,464

Rep: Reputation: Disabled
When you say that Slackware has a problem mounting your drive, you really need to tell us what the problem is. I'm not sure if you just mean that the problem is to do with automounting, or if you can't mount it manually. If the latter, please give details so we can help.
 
Old 06-11-2006, 02:35 PM   #4
beowulf71
LQ Newbie
 
Registered: Jun 2006
Posts: 9

Original Poster
Rep: Reputation: 0
Sry bout bad thread.(and no propper Englsih too)

The problem is that i cannot mount it anyway manual.

oot@slackbox:~# lsmod
Module Size Used by Not tainted
keybdev 1892 0 (unused)
hid 20868 0 (unused)
usbmouse 1880 0 (unused)
snd-pcm-oss 36736 0 (unused)
snd-mixer-oss 12376 0 [snd-pcm-oss]
mousedev 4020 1
usb-storage 62432 0 (unused)
input 3200 0 [keybdev hid usbmouse mousedev]
uhci 24284 0 (unused)
usbcore 59148 1 [hid usbmouse usb-storage uhci]
8139too 13928 1
mii 2272 0 [8139too]
crc32 2880 0 [8139too]
snd-ca0106 15012 1
snd-ac97-codec 58556 0 [snd-ca0106]
snd-pcm 54344 1 [snd-pcm-oss snd-ca0106 snd-ac97-codec]
snd-timer 13764 0 [snd-pcm]
snd 32772 0 [snd-pcm-oss snd-mixer-oss snd-ca0106 snd-ac97-codec snd-pcm snd-timer]
snd-page-alloc 4712 0 [snd-mixer-oss snd-ca0106 snd-pcm snd-timer snd]
soundcore 3396 4 [snd]
ide-scsi 9392 0
agpgart 45508 0 (unused)

here it is with lsmod but cannot mount and cannot use it.

also a little prob with my mouse (the mousewheel doesnt work)
Its also an USB.

Thanks guys for answering

LG Michael
 
Old 06-11-2006, 03:10 PM   #5
Alien Bob
Slackware Contributor
 
Registered: Sep 2005
Location: Eindhoven, The Netherlands
Distribution: Slackware
Posts: 8,559

Rep: Reputation: 8119Reputation: 8119Reputation: 8119Reputation: 8119Reputation: 8119Reputation: 8119Reputation: 8119Reputation: 8119Reputation: 8119Reputation: 8119Reputation: 8119
Does the command
Code:
fdisk -l
show anything related to your USB disk (like, sda1?)

As for the mouse scroll wheel, you'll probably have to edit the "mouse" section in your /etc/X11/xorg.conf file - it should look somewhat like
Code:
Section "InputDevice"
    Identifier  "Mouse1" 
    Driver      "mouse"
    Option "Protocol"     "auto"
    Option "Device"       "/dev/input/mice"
    Option "ZAxisMapping" "4 5"
    Option "Buttons"      "5"
EndSection
You might need IMPS2 instead of auto for the protocol, depending on the mouse type.
The line
Code:
Option "ZAxisMapping" "4 5"
is the essential one.

Eric
 
Old 06-11-2006, 03:19 PM   #6
beowulf71
LQ Newbie
 
Registered: Jun 2006
Posts: 9

Original Poster
Rep: Reputation: 0
fdisk -l

Disk /dev/sda: 80.0 GB, 80060424192 bytes
255 heads, 63 sectors/track, 9733 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes

Device Boot Start End Blocks Id System
/dev/sda1 2 9733 78172290 c W95 FAT32 (LBA)

Disk /dev/hda: 4311 MB, 4311982080 bytes
255 heads, 63 sectors/track, 524 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes

Device Boot Start End Blocks Id System
/dev/hda1 1 62 497983+ 82 Linux swap
/dev/hda2 * 63 524 3711015 83 Linux

Thats it but how to mount and to toch it.
LG Mike
 
Old 06-11-2006, 03:27 PM   #7
Alien Bob
Slackware Contributor
 
Registered: Sep 2005
Location: Eindhoven, The Netherlands
Distribution: Slackware
Posts: 8,559

Rep: Reputation: 8119Reputation: 8119Reputation: 8119Reputation: 8119Reputation: 8119Reputation: 8119Reputation: 8119Reputation: 8119Reputation: 8119Reputation: 8119Reputation: 8119
Basic knowledge... but you are excused because you come from one of the obfuscating distros :-)

Code:
mkdir /mnt/usbdisk
mount -t vfat /dev/sda1 /mnt/usbdisk
Or like this if other people than root should be able to write to that disk:
Code:
mkdir /mnt/usbdisk
mount -t vfat -o umask=0000 /dev/sda1 /mnt/usbdisk
Eric
 
Old 06-11-2006, 03:32 PM   #8
cwwilson721
Senior Member
 
Registered: Dec 2004
Location: In my house.
Distribution: Ubuntu 10.10 64bit, Slackware 13.1 64-bit
Posts: 2,649
Blog Entries: 1

Rep: Reputation: 67
Try
Code:
mkdir /mnt/usbdrive
mount -t vfat /dev/sda1 /mnt/usbdrive
That will mount it.
You can add a line like
Code:
/dev/sda1       /mnt/usbdrive       auto        auto,users,rw    1   2
to your /etc/fstab file

***EDIT Eric, you're too quick.
Use Eric's post above (Forgot the unmask)

Last edited by cwwilson721; 06-11-2006 at 03:33 PM.
 
Old 06-11-2006, 03:46 PM   #9
beowulf71
LQ Newbie
 
Registered: Jun 2006
Posts: 9

Original Poster
Rep: Reputation: 0
Great!!!!!!!!!!!!!!It works!!!!!!!!!!!!!!

Thanks real a Lot to U !!!

I m absolute Linux Beginner (cause I m interested in it and hate MS Winbugs)
A friend told me to start with Gentoo or Slackware .First seemed little bit too hard but i try it next time on a second machine.Slack is great I think. Also took a look on Ubuntu and Co but thats nothing for me .

So thanks for helping me (great forum 2 probs solved at the same day! at others i would get loughet at cause I m new in Linux)

THX Mike
 
Old 06-11-2006, 03:54 PM   #10
Alien Bob
Slackware Contributor
 
Registered: Sep 2005
Location: Eindhoven, The Netherlands
Distribution: Slackware
Posts: 8,559

Rep: Reputation: 8119Reputation: 8119Reputation: 8119Reputation: 8119Reputation: 8119Reputation: 8119Reputation: 8119Reputation: 8119Reputation: 8119Reputation: 8119Reputation: 8119
Welcome to the Slackware forum then!
We too are quite frolicky people here, but we do not forget everyone was a Linux newbie once. If you're serious with trying to solve your problems then you'll find many people who will seriously help you out.

Eric
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

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
How to Mount External USB CD Drive? ArchiMark Linux - Laptop and Netbook 12 05-29-2006 08:10 PM
How to mount an external USB HD? Thakowbbery Linux - Hardware 1 05-18-2006 09:20 AM
How to mount external USB hard drive? zyzyis Linux - Newbie 6 02-01-2006 10:37 PM
can't mount external usb ntfs harddrive etienne.navarro Mandriva 1 10-27-2005 01:54 PM
can't mount external usb hd jnsenit Linux - Hardware 2 12-03-2004 04:03 PM

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

All times are GMT -5. The time now is 03:14 PM.

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