FSTAB Problems


Recommended Posts

I'm honestly pulling my hair out with this one, and I just can't get my head round it.

Little bit of background, using Ubuntu 10.04, with 2 external drives, one with movies. The second drive has to two partitions, one of these has all my music.

I have set Rhythmbox to point towards my music drive.

When re-boot the PC the drive changes and Rhythmbox can't find the music drive.

I've tried using py-Storage Device Manager to set the drives as static, but this doesn't seem to work.

All the drive are set to mount automatically at boot up, and for the best part this works.

I've done a great deal of hunting around, and research on the subject, but i just can't understand the process fully, normally I can follow tutorials but not this time :blush:

I'm hope someone throws me a life line here as I really don't want to give up on this OS over such a silly headache.

i can post the fstab if that will help.

Link to comment
https://www.neowin.net/forum/topic/934862-fstab-problems/
Share on other sites

I'm hope someone throws me a life line here as I really don't want to give up on this OS over such a silly headache.

This I can NEVER understand! There are times in WIndows/OSX when a user battles with something, but does not "give up" on the OS!! Why should it be different when you use Linux?

Have you tried to use this: It's in the repo's: Using your Synaptic Package Manager

The basic functionalities of mountmanager are:

- Mount and unmount partitions (ext3/2, ntfs, swap, fat, reiserfs, iso9660,

udf, ...)

- Show all logical and physical disks

- Change config file /etc/fstab

- Descriptions of options and other settings of mounting

- Restoration system

- Images mounting and unmounting (Nrg, Mdf , Ccd, Bin , etc)

- Udev rules creation

- Disk wizard

- Etc...

Link to comment
https://www.neowin.net/forum/topic/934862-fstab-problems/#findComment-593104718
Share on other sites

Guys thanks for your offer of potential help.

I've inserted my fstab as it stands at the moment, got my information slightly wrong in my original post my music drive does not have a partition in it. This is set at /dev/sdd, if this could remain at this would be great.

@ Farstrider, I've not tried your recommendation yet, as I'm hoping to achieve the same result without installing more application, and also getting a better understanding of the file system.

Disk /dev/sda: 30.8 GB, 30750031872 bytes
255 heads, 63 sectors/track, 3738 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x1549f232

   Device Boot      Start         End      Blocks   Id  System
/dev/sda1   *           1        1913    15366141    7  HPFS/NTFS
/dev/sda2            1914        3738    14659312+   5  Extended
/dev/sda3            3739        3739           0    e  W95 FAT16 (LBA)
/dev/sda5            1914        3738    14659281    7  HPFS/NTFS

Disk /dev/sdb: 160.0 GB, 160041885696 bytes
240 heads, 63 sectors/track, 20673 cylinders
Units = cylinders of 15120 * 512 = 7741440 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x1b3e1b3d

   Device Boot      Start         End      Blocks   Id  System
/dev/sdb1               1         468     3538048+   c  W95 FAT32 (LBA)
/dev/sdb2   *         469        6735    47378520    7  HPFS/NTFS
/dev/sdb3            6736       20673   105371280    5  Extended
/dev/sdb5            6736       15107    63292288+   7  HPFS/NTFS
/dev/sdb6           15108       20673    42078928+   7  HPFS/NTFS

Disk /dev/sdc: 1000.2 GB, 1000204886016 bytes
255 heads, 63 sectors/track, 121601 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0xe8900690

   Device Boot      Start         End      Blocks   Id  System
/dev/sdc1               1       31871   256003776    7  HPFS/NTFS
/dev/sdc2           31872      121601   720756225    f  W95 Ext'd (LBA)
/dev/sdc5           31872       63742   256003776    7  HPFS/NTFS
/dev/sdc6           63743      121601   464752386    7  HPFS/NTFS

Disk /dev/sdd: 1000.2 GB, 1000204886016 bytes
1 heads, 63 sectors/track, 31008336 cylinders
Units = cylinders of 63 * 512 = 32256 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x00aa87c3

   Device Boot      Start         End      Blocks   Id  System
/dev/sdd1   *           2    31008256   976760032+   7  HPFS/NTFS

Link to comment
https://www.neowin.net/forum/topic/934862-fstab-problems/#findComment-593113940
Share on other sites

That doesn't look like an fstab at all to me. I'm used to an fstab like this:

/dev/sda1 /windows vfat iocharset=iso8859-1,codepage=850,umask=000 0 0

/dev/hdd /media/cdrecorder auto pamconsole,exec,noauto,managed 0 0

/dev/hdc /media/cdrecorder1 auto pamconsole,exec,noauto,managed 0 0

^physical address ^mounting location

edit: This is the place I recommend going to learn about the fstab

Link to comment
https://www.neowin.net/forum/topic/934862-fstab-problems/#findComment-593115692
Share on other sites

edit: This is the place I recommend going to learn about the fstab

That's because it's the output of "fdisk -l" command which lists all connected drives, partitions, and other information.

the *file* /etc/fstab is what you are reffering to, but haivn the fdisk -l output helps to understand how his system is set up and how the /etc/fstab needs to be written to get everything working.

Link to comment
https://www.neowin.net/forum/topic/934862-fstab-problems/#findComment-593115712
Share on other sites

That's because it's the output of "fdisk -l" command which lists all connected drives, partitions, and other information.

the *file* /etc/fstab is what you are reffering to, but haivn the fdisk -l output helps to understand how his system is set up and how the /etc/fstab needs to be written to get everything working.

wow, first I've heard of this command. It seems pretty counter-intuitive to me actually

Link to comment
https://www.neowin.net/forum/topic/934862-fstab-problems/#findComment-593115722
Share on other sites

This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
  • Posts

    • Close, but it is for any application starting, not just during boot time. In fact, it probably will not improve boot time at all because during a boot, the CPU is already boosting, so a pre-boost wouldn't change anything. I agree that it isn't exciting (especially considering every other OS already does it), but it is a good thing, even if they are just playing catch up.
    • Any so called performance increase will be in milliseconds, which nobody will actually notice in real world usage.
    • All it does is use the CPU more efficiently during boot to speed up boot times. That's it. Yawn....
    • It's not a one or the other kind of thing. Software should run efficiently, and the operating system should appropriately manage the CPU clocks. You could have the best most optimized software on earth, and it will still run faster if the CPU does a better job of boosting as needed. All this is doing is pre-boosting the CPU based on user actions, instead of waiting for the normal detection mechanism to kick in. If the OS knows it is about to need more CPU, why shouldn't it use that knowledge? It's the same idea of downshifting before passing someone, instead of just burying your foot into the peddle and waiting for the transmission to figure out what you want to do.
    • Audacity 3.7.8 by Razvan Serea Audacity is a free, open source digital audio editor and recording application. Edit your sounds using cut, copy, and paste features (with unlimited undo functionality), mix tracks, or apply effects to your recordings. The program also has a built-in amplitude-envelope editor, a customizable spectrogram mode, and a frequency-analysis window for audio-analysis applications. Built-in effects include bass boost, wah wah, and noise removal, and the program also supports VST plug-in effects. You can use Audacity to: Record live audio. Record computer playback on any Windows Vista or later machine. Convert tapes and records into digital recordings or CDs. Edit WAV, AIFF, FLAC, MP2, MP3 or Ogg Vorbis sound files. AC3, M4A/M4R (AAC), WMA and other formats supported using optional libraries. Cut, copy, splice or mix sounds together. Numerous effects including change the speed or pitch of a recording. Write your own plug-in effects with Nyquist. And more! See the complete list of features. Audacity 3.7.8 changelog: #10688 Fixed an exception thrown when pasting into a newly-created track (Thanks, David Bailes (@DavidBailes)!) #10870, #10884, #10775, #10629 Fixed tone generation, waveform-scale setting, SetClip Name parameter, and clip-boundary command names for scripting and macros (Thank you, David Bailes (@DavidBailes)!) #11106 Fixed the loading of presets for the Distortion effect (A million thanks, David Bailes (@DavidBailes)!) #10947 Fixed paste into an empty audio track not preserving the source sample rate (Thanks, Juan Gabriel Colonna (@juancolonna)!) #10776 Allowed AltGr modifier in label and clip name editing (Thanks, Davide Peressoni (@DPDmancul)!) #9938 Added options to choose where silence is truncated (start/middle/end) (Thanks, Noah Rosenfield (@nosenfield)!) #9935 Added Podcast 2.0 chapters JSON export for label tracks (Thanks, Noah Rosenfield (@nosenfield)!) #10103 Improve UI on HiDPI displays on Linux/wxGTK (Thanks, Ivan A. Melnikov (@iv-m)!) #10099 Fixed MixerBoard Mute and Solo button display (Thanks, Ivan A. Melnikov (@iv-m)!) #10681 Fixed multichannel FLAC import #10999 Fixed envelope being broken after joining clips Download: Audacity 64-bit | Standalone ~20.0 MB (Open Source) Download: Audacity 32-bit | Standalone Download: Audacity ARM64 | Standalone View: Audacity Home Page | Screenshot Get alerted to all of our Software updates on Twitter at @NeowinSoftware
  • Recent Achievements

    • One Month Later
      highriskpaym earned a badge
      One Month Later
    • Week One Done
      highriskpaym earned a badge
      Week One Done
    • One Year In
      highriskpaym earned a badge
      One Year In
    • Week One Done
      FBSPL earned a badge
      Week One Done
    • One Year In
      Jim Dugan earned a badge
      One Year In
  • Popular Contributors

    1. 1
      +primortal
      499
    2. 2
      PsYcHoKiLLa
      198
    3. 3
      +Edouard
      155
    4. 4
      Steven P.
      84
    5. 5
      ATLien_0
      71
  • Tell a friend

    Love Neowin? Tell a friend!