Forums

Skip to content

Advanced search
  • Quick links
    • Unanswered topics
    • Active topics
    • Search
  • FAQ
  • Login
  • Register
  • Board index Assistance Kernel & Hardware
  • Search

mount failure [SOLVED]

Kernel not recognizing your hardware? Problems with power management or PCMCIA? What hardware is compatible with Gentoo? See here. (Only for kernels supported by Gentoo.)
Post Reply
Advanced search
9 posts • Page 1 of 1
Author
Message
bjlockie
Veteran
Veteran
Posts: 1186
Joined: Fri Oct 18, 2002 4:39 pm
Location: Canada

mount failure [SOLVED]

  • Quote

Post by bjlockie » Sun Jul 17, 2011 4:12 pm

This no longer mounts when the machine boots (it used to).
/dev/sdb1 /storage ext4 noatime 0 2

Code: Select all

sudo mount -a
does NOT work.

Code: Select all

sudo mount /storage
DOES work.
Last edited by bjlockie on Mon Jul 18, 2011 3:45 pm, edited 1 time in total.
AMD FX6100 CPU, 16 GiB RAM, OCZ Vertex 3 SSD
ASRock 970 Extreme3 motherboard with S/PDIF audio
Galaxy-NVidia GeForce 8800GT video card, Cyber Power CP550HG USB UPS
Top
Hu
Administrator
Administrator
Posts: 24385
Joined: Tue Mar 06, 2007 5:38 am

  • Quote

Post by Hu » Sun Jul 17, 2011 4:59 pm

What is the error message when mount fails?
Top
armaoin
Tux's lil' helper
Tux's lil' helper
User avatar
Posts: 110
Joined: Sun Apr 02, 2006 10:42 am

  • Quote

Post by armaoin » Sun Jul 17, 2011 5:02 pm

Try to add the auto option.

Code: Select all

/dev/sdb1 /storage ext4 noatime,auto 0 2 
Top
bjlockie
Veteran
Veteran
Posts: 1186
Joined: Fri Oct 18, 2002 4:39 pm
Location: Canada

  • Quote

Post by bjlockie » Sun Jul 17, 2011 6:11 pm

Hu wrote:What is the error message when mount fails?
There is no error on the console or in dmesg.
Last edited by bjlockie on Sun Jul 17, 2011 6:14 pm, edited 1 time in total.
AMD FX6100 CPU, 16 GiB RAM, OCZ Vertex 3 SSD
ASRock 970 Extreme3 motherboard with S/PDIF audio
Galaxy-NVidia GeForce 8800GT video card, Cyber Power CP550HG USB UPS
Top
bjlockie
Veteran
Veteran
Posts: 1186
Joined: Fri Oct 18, 2002 4:39 pm
Location: Canada

  • Quote

Post by bjlockie » Sun Jul 17, 2011 6:13 pm

armaoin wrote:Try to add the auto option.

Code: Select all

/dev/sdb1 /storage ext4 noatime,auto 0 2 
I'll try it the way you wrote it.
I tried it before with no space after the comma and I may have put it before the noatime.
AMD FX6100 CPU, 16 GiB RAM, OCZ Vertex 3 SSD
ASRock 970 Extreme3 motherboard with S/PDIF audio
Galaxy-NVidia GeForce 8800GT video card, Cyber Power CP550HG USB UPS
Top
Hu
Administrator
Administrator
Posts: 24385
Joined: Tue Mar 06, 2007 5:38 am

  • Quote

Post by Hu » Sun Jul 17, 2011 7:24 pm

bjlockie wrote:
Hu wrote:What is the error message when mount fails?
There is no error on the console or in dmesg.
The thread title says "mount failure". If mount failed, it should produce an error message. If there is no error message, then we need more details about what is not working. You said that sudo mount -a does not mount the volume. Does that mean that, even after the system is fully booted and all modules are loaded, the volume still does not mount via mount -a? When in the situation that mount -a does not mount the volume, what is the output of file -s /dev/sdb1 ; nl /proc/mounts; mount -a -v?
Top
bjlockie
Veteran
Veteran
Posts: 1186
Joined: Fri Oct 18, 2002 4:39 pm
Location: Canada

  • Quote

Post by bjlockie » Sun Jul 17, 2011 9:09 pm

Hu wrote:
bjlockie wrote:
Hu wrote:What is the error message when mount fails?
There is no error on the console or in dmesg.
The thread title says "mount failure". If mount failed, it should produce an error message. If there is no error message, then we need more details about what is not working. You said that sudo mount -a does not mount the volume. Does that mean that, even after the system is fully booted and all modules are loaded, the volume still does not mount via mount -a? When in the situation that mount -a does not mount the volume, what is the output of file -s /dev/sdb1 ; nl /proc/mounts; mount -a -v?
/storage is not automounting on boot (and mount -a won't do it).
I think it is a failure even though there is no error message.

# file -s /dev/sdb1 ; nl /proc/mounts; mount -a -v
/dev/sdb1: DOS-executable (
1 rootfs / rootfs rw 0 0
2 /dev/root / ext4 rw,noatime,barrier=1,data=ordered 0 0
3 devtmpfs /dev devtmpfs rw,relatime,size=4059272k,nr_inodes=1014818,mode=755 0 0
4 proc /proc proc rw,nosuid,nodev,noexec,relatime 0 0
5 rc-svcdir /lib64/rc/init.d tmpfs rw,nosuid,nodev,noexec,relatime,size=1024k,mode=755 0 0
6 sysfs /sys sysfs rw,nosuid,nodev,noexec,relatime 0 0
7 devpts /dev/pts devpts rw,nosuid,noexec,relatime,gid=5,mode=620 0 0
8 shm /dev/shm tmpfs rw,nosuid,nodev,noexec,relatime 0 0
9 /dev/sdb1 /storage ext4 rw,noatime,barrier=1,data=ordered 0 0
mount: /dev/sdb1 already mounted on /storage
mount: shm already mounted on /dev/shm
nothing was mounted
# file -s /dev/sdb1
/dev/sdb1: DOS-executable (

# file -s /dev/sda1
/dev/sda1: x86 boot sector; GRand Unified Bootloader, stage1 version 0x3, 1st sector stage2 0x31095151, code offset 0x48
I'll run an fsck /dev/sdb1
[/code]
AMD FX6100 CPU, 16 GiB RAM, OCZ Vertex 3 SSD
ASRock 970 Extreme3 motherboard with S/PDIF audio
Galaxy-NVidia GeForce 8800GT video card, Cyber Power CP550HG USB UPS
Top
Hu
Administrator
Administrator
Posts: 24385
Joined: Tue Mar 06, 2007 5:38 am

  • Quote

Post by Hu » Sun Jul 17, 2011 9:35 pm

You provided the output of mount -a -v after it was already mounted. I would like to see the output when it is not yet mounted.
Top
bjlockie
Veteran
Veteran
Posts: 1186
Joined: Fri Oct 18, 2002 4:39 pm
Location: Canada

  • Quote

Post by bjlockie » Mon Jul 18, 2011 3:43 pm

Hu wrote:You provided the output of mount -a -v after it was already mounted. I would like to see the output when it is not yet mounted.
Adding the explicit

Code: Select all

auto
fixed it for now.
If it is intermittent, I will post again.
Thanks everyone.
AMD FX6100 CPU, 16 GiB RAM, OCZ Vertex 3 SSD
ASRock 970 Extreme3 motherboard with S/PDIF audio
Galaxy-NVidia GeForce 8800GT video card, Cyber Power CP550HG USB UPS
Top
Post Reply

9 posts • Page 1 of 1

Return to “Kernel & Hardware”

Jump to
  • Assistance
  • ↳   News & Announcements
  • ↳   Frequently Asked Questions
  • ↳   Installing Gentoo
  • ↳   Multimedia
  • ↳   Desktop Environments
  • ↳   Networking & Security
  • ↳   Kernel & Hardware
  • ↳   Portage & Programming
  • ↳   Gamers & Players
  • ↳   Other Things Gentoo
  • ↳   Unsupported Software
  • Discussion & Documentation
  • ↳   Documentation, Tips & Tricks
  • ↳   Gentoo Chat
  • ↳   Gentoo Forums Feedback
  • ↳   Duplicate Threads
  • International Gentoo Users
  • ↳   中文 (Chinese)
  • ↳   Dutch
  • ↳   Finnish
  • ↳   French
  • ↳   Deutsches Forum (German)
  • ↳   Diskussionsforum
  • ↳   Deutsche Dokumentation
  • ↳   Greek
  • ↳   Forum italiano (Italian)
  • ↳   Forum di discussione italiano
  • ↳   Risorse italiane (documentazione e tools)
  • ↳   Polskie forum (Polish)
  • ↳   Instalacja i sprzęt
  • ↳   Polish OTW
  • ↳   Portuguese
  • ↳   Documentação, Ferramentas e Dicas
  • ↳   Russian
  • ↳   Scandinavian
  • ↳   Spanish
  • ↳   Other Languages
  • Architectures & Platforms
  • ↳   Gentoo on ARM
  • ↳   Gentoo on PPC
  • ↳   Gentoo on Sparc
  • ↳   Gentoo on Alternative Architectures
  • ↳   Gentoo on AMD64
  • ↳   Gentoo for Mac OS X (Portage for Mac OS X)
  • Board index
  • All times are UTC
  • Delete cookies

© 2001–2026 Gentoo Foundation, Inc.

Powered by phpBB® Forum Software © phpBB Limited

Privacy Policy

 

 

magic