LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
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 11-17-2013, 01:30 AM   #1
slackprogrammer
LQ Newbie
 
Registered: Nov 2013
Location: Guangzhou, China
Distribution: Slackware
Posts: 4

Rep: Reputation: Disabled
My USB External HardDrive cannot be mounted after I launch cairo-dock


Hi, I use Slackware14.1.
After I launch cairo-dock, the USB External HardDrive can not be mounted. I don't konw why, do they conflict?
And how I can solve this conflict?
Thanks!

Last edited by slackprogrammer; 11-17-2013 at 05:20 AM.
 
Old 11-17-2013, 06:43 PM   #2
Didier Spaier
LQ Addict
 
Registered: Nov 2008
Location: Paris, France
Distribution: Slint64-15.0
Posts: 11,302

Rep: Reputation: Disabled
Hi slackprogrammer and welcome to LQ.

Did you try to mount it manually?

Plug it in, wait 30 seconds tht it be ready, then type in a terminal:
Code:
cat /proc/partitions
and for instance if you find a partition on it named /dev/sdb1, just type as root:
Code:
mount /dev/sdb1 /mnt
to mount it on /mnt.

Last edited by Didier Spaier; 11-17-2013 at 06:44 PM.
 
Old 11-18-2013, 10:18 AM   #3
slackprogrammer
LQ Newbie
 
Registered: Nov 2013
Location: Guangzhou, China
Distribution: Slackware
Posts: 4

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by Didier Spaier View Post
Hi slackprogrammer and welcome to LQ.

Did you try to mount it manually?

Plug it in, wait 30 seconds tht it be ready, then type in a terminal:
Code:
cat /proc/partitions
and for instance if you find a partition on it named /dev/sdb1, just type as root:
Code:
mount /dev/sdb1 /mnt
to mount it on /mnt.
Thanks Didier Spaier for your answer. Yes, I have mounted it manually, but it responded nothing and can not end.After launching cairo-dock, I plug my USB External HardDrive, it shows:
Quote:
bash-4.2# ls -l /dev/sdb*
brw-rw---- 1 root disk 8, 16 Nov 18 23:08 /dev/sdb
brw------- 1 root root 8, 17 Nov 18 23:08 /dev/sdb1
brw------- 1 root root 8, 18 Nov 18 23:08 /dev/sdb2
brw------- 1 root root 8, 19 Nov 18 23:08 /dev/sdb3
brw------- 1 root root 8, 20 Nov 18 23:08 /dev/sdb4
brw------- 1 root root 8, 21 Nov 18 23:08 /dev/sdb5
and cannot mount it manually as root user.Whereas it shows like this before launching the cairo-dock.
Quote:
brw-rw---- 1 root disk 8, 16 Nov 18 21:52 /dev/sdb
brw-rw---- 1 root disk 8, 17 Nov 18 21:52 /dev/sdb1
brw-rw---- 1 root disk 8, 18 Nov 18 21:52 /dev/sdb2
brw-rw---- 1 root disk 8, 19 Nov 18 21:52 /dev/sdb3
brw-rw---- 1 root disk 8, 20 Nov 18 21:52 /dev/sdb4
brw-rw---- 1 root disk 8, 20 Nov 18 21:52 /dev/sdb5
then I don't know why this happens.

Last edited by slackprogrammer; 11-18-2013 at 10:20 AM.
 
Old 11-18-2013, 10:30 AM   #4
bartgymnast
Member
 
Registered: Feb 2003
Location: Almere, Netherlands
Distribution: slack 7.1 till latest and -current, LFS
Posts: 368

Rep: Reputation: 165Reputation: 165
can you issue the following command after connecting.

Code:
dmesg
It might get another dev entry
 
Old 11-18-2013, 11:37 PM   #5
slackprogrammer
LQ Newbie
 
Registered: Nov 2013
Location: Guangzhou, China
Distribution: Slackware
Posts: 4

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by bartgymnast View Post
can you issue the following command after connecting.

Code:
dmesg
It might get another dev entry
Thanks! Before launching the cairo-dock, it shows:
Quote:
bash-4.2# dmesg | grep USB (I just list relative message)
[ 392.570901] usb 1-3: new high-speed USB device number 3 using xhci_hcd
[ 392.582694] usb 1-3: New USB device found, idVendor=14cd, idProduct=6116
[ 392.582698] usb 1-3: New USB device strings: Mfr=1, Product=3, SerialNumber=2
[ 392.582699] usb 1-3: Product: USB 2.0 SATA BRIDGE
[ 392.630996] ums-cypress 1-3:1.0: USB Mass Storage device detected
then I run cairo-dock, it shows:
Quote:
bash-4.2# dmesg | grep USB
[ 392.570901] usb 1-3: new high-speed USB device number 3 using xhci_hcd
[ 392.582694] usb 1-3: New USB device found, idVendor=14cd, idProduct=6116
[ 392.582698] usb 1-3: New USB device strings: Mfr=1, Product=3, SerialNumber=2
[ 392.582699] usb 1-3: Product: USB 2.0 SATA BRIDGE
[ 392.630996] ums-cypress 1-3:1.0: USB Mass Storage device detected
[ 467.286789] usb 1-3: reset high-speed USB device number 3 using xhci_hcd
the last line has appeared.What does it mean?
 
Old 11-19-2013, 02:28 AM   #6
bartgymnast
Member
 
Registered: Feb 2003
Location: Almere, Netherlands
Distribution: slack 7.1 till latest and -current, LFS
Posts: 368

Rep: Reputation: 165Reputation: 165
hi slackprogrammer, can you see the following message in dmesg aswell?

xhci_hcd 0000:00:14.0: xHCI xhci_drop_endpoint called
> with disabled ep ffff8801fd2b0140

if so, you might have hit the USB kernel bug.
http://marc.info/?l=linux-usb&m=138005811528076&w=2


either wait untill this patch has been backported to 3.10.x and pat has included this.
or build a newer kernel 3.12
 
Old 11-19-2013, 06:12 AM   #7
slackprogrammer
LQ Newbie
 
Registered: Nov 2013
Location: Guangzhou, China
Distribution: Slackware
Posts: 4

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by bartgymnast View Post
hi slackprogrammer, can you see the following message in dmesg aswell?

xhci_hcd 0000:00:14.0: xHCI xhci_drop_endpoint called
> with disabled ep ffff8801fd2b0140

if so, you might have hit the USB kernel bug.
http://marc.info/?l=linux-usb&m=138005811528076&w=2


either wait untill this patch has been backported to 3.10.x and pat has included this.
or build a newer kernel 3.12
Hi bartgymnast, thanks very much!
Quote:
bash-4.2# dmesg | grep xhci_hcd
[ 7.982154] xhci_hcd 0000:00:14.0: setting latency timer to 64
[ 7.982160] xhci_hcd 0000:00:14.0: xHCI Host Controller
[ 8.021699] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 3
[ 8.026202] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
[ 8.026223] xhci_hcd 0000:00:14.0: irq 47 for MSI/MSI-X
[ 8.043561] usb usb3: Manufacturer: Linux 3.10.17 xhci_hcd
[ 8.060765] xhci_hcd 0000:00:14.0: xHCI Host Controller
[ 8.065150] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 4
[ 8.081315] usb usb4: Manufacturer: Linux 3.10.17 xhci_hcd
[ 8.709108] usb 3-2: new low-speed USB device number 2 using xhci_hcd
 
  


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
ext3 external hd auto-mounted under root problem reakinator Ubuntu 10 03-12-2012 07:00 PM
Auto Mount Of External USB Hdd on Red Hat Linux 4.6 bishnu101 Linux - Desktop 1 07-29-2009 05:12 AM
Can't install GNU/Linux after connecting external USB harddrive. NomDeGuerre Linux - Newbie 23 01-15-2008 03:09 AM
Permissions on a mounted vfat USB external harddrive Hikaru79 Linux - Hardware 2 02-25-2005 06:39 PM
Installing linux to and USB external Harddrive??? loser04 Linux - Hardware 1 08-18-2003 03:36 PM

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

All times are GMT -5. The time now is 02:55 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