Author Topic: [SLOVED] Unable to find mount point  (Read 1670 times)

Offline dylan420

  • Full Member
  • ***
  • Posts: 71
[SLOVED] Unable to find mount point
« on: January 22, 2011, 10:50:26 PM »
 Device Boot      Start         End      Blocks   Id  System                                                                                              
/dev/sda1   *           1         268     2152678+  83  Linux                                                                                                
/dev/sda2             269         536     2152710   82  Linux swap / Solaris                                                                                
/dev/sda3             537        4105    28667992+  83  Linux                                                                                                
/dev/sda4            4106       30402   211224987+   5  Extended                                                                                            
/dev/sda5            4106       24502   163838871   83  Linux                                                                                                
/dev/sda6           24503       27052    20482843+  83  Linux                                                                                                
/dev/sda7           27053       30402    26903178+  83  Linux
When I boot PCLinuxOS, login as user and open any file manager, the other partitions appear in the side pane on the left of the window. However, when i click on "FILE DRIVE" a message at the bottom appears "The file or folder /media/File Drive does not exist." When I open gparted, right click on the partition "FILE DRIVE" and click "Information" A message at the bottom appears.
 "Warning: Unable to find mount point
Unable to read contents of this file system!. Because of this some operations may be unavailable. The following list of software packages is required for ext4 file system support: e2fsprogs v1.41+."

I have checked in synaptic and e2fsprogs version 1.41 is already installed.
Perhaps I made a mistake when installing the Operating systems. I didnt specify anything as a mount point.
What should the mount point be on the drives used for long term data?
« Last Edit: January 23, 2011, 01:40:25 AM by dylan420 »

uncleV

  • Guest
Re: Unable to find mount point
« Reply #1 on: January 23, 2011, 12:46:06 AM »
Hi, dylan420!

Some things to try while waiting for the experts to pop up:

Give your FILE DRIVE partition another label so there's no white space in the name, e.g. FILE_DRIVE or something else.

Find an additional info about static and dynamic mount points respectively in the files /etc/fstab and etc/mtab. My be you'll have to open them with root privileges. Post their content here for the experts to look at ;)

Offline dylan420

  • Full Member
  • ***
  • Posts: 71
Re: Unable to find mount point
« Reply #2 on: January 23, 2011, 01:03:37 AM »
etc/fstab>
# Entry for /dev/sda3 :
UUID=0b8f7686-51bf-4fbe-b6e2-48c36997889b / ext4 defaults 1 1
# Entry for /dev/sda1 :
UUID=f4e563cf-76bc-46b0-bccc-07318be73403 /boot ext3 defaults 1 2
none /proc proc defaults 0 0
# Entry for /dev/sda2 :
UUID=32fdb8b1-3206-4c71-bbfc-ee3a6c1febbf swap swap defaults 0 0
none /dev/pts devpts defaults 0 0

etc/mtab>
/dev/sda3 / ext4 rw 0 0
none /proc proc rw 0 0
none /dev/pts devpts rw 0 0
/dev/sda1 /boot ext3 rw 0 0
none /proc/sys/fs/binfmt_misc binfmt_misc rw 0 0
/dev/sda5 /media/FILE\040DRIVE ext4 rw,nosuid,nodev,uhelper=hal 0 0
/dev/sda6 /media/RECOVERY\040DRIVE ext4 rw,nosuid,nodev,uhelper=hal 0 0
/dev/sda7 /media/BT4 ext3 rw,nosuid,nodev,uhelper=hal 0 0
gvfs-fuse-daemon /home/hollow45/.gvfs fuse.gvfs-fuse-daemon rw,nosuid,nodev,user=hollow45 0 0

uncleV

  • Guest
Re: Unable to find mount point
« Reply #3 on: January 23, 2011, 01:14:12 AM »
Just a thought...
There in mtab labels of sda5 + sda6 combined give the label under question "FILE RECOVERY".
There is a backslash \ in those lines that Linux doesn't use in its file structure. :-\
« Last Edit: January 23, 2011, 01:16:38 AM by uncleV »

Offline dylan420

  • Full Member
  • ***
  • Posts: 71
Re: Unable to find mount point
« Reply #4 on: January 23, 2011, 01:39:50 AM »
Thank-You kindly, the information you provided solved the problem. Great observation, the untrained eye wouldn't have caught that.
I changed the label on one of the partitions. I rebooted and the following line changed in etc/mtab>
/dev/sda6 /media/RECOVERY ext4 rw,nosuid,nodev,uhelper=hal 0 0
The partition editor and the file manager now report no errors on the drive with no blank spaces in the label.

uncleV

  • Guest
Re: [SLOVED] Unable to find mount point
« Reply #5 on: January 23, 2011, 01:49:22 AM »
So no need of experts.

See? Two noobs together give a perfect half of an expert.
Just imagine what it would be if 16 noobs together were solving this problem...

 ;D    ;D    ;D

Offline Bald Brick

  • PCLinuxOS Tester
  • Hero Member
  • *******
  • Posts: 6395
  • I'm going South
Re: Unable to find mount point
« Reply #6 on: January 23, 2011, 08:13:07 AM »
Just a thought...
There in mtab labels of sda5 + sda6 combined give the label under question "FILE RECOVERY".
There is a backslash \ in those lines that Linux doesn't use in its file structure. :-\

You are right, of course. I'd just like to add that even if the backslash isn't used as a separator in the Linux file structure, it may be useful as an escape character.

Let's say you have a folder called "my folder" in your home directory. The command
Code: [Select]
ls my folder wont work. The shell will interpret the space between "my" and "folder" as a delimiter and start by looking for a directory called "my". To make it realize that the name of the folder is actually "my folder", you could type the name precisely like that, within quotes:
Code: [Select]
ls "my folder"
Or you could use the escape character "\" before the space instead. The backslash will make the shell interpret the space as just a space and not a delimiter:

Code: [Select]
ls my\ folderwill work correctly.

The \040 in dylan420's mtab is an example of an escape sequence of a different kind. In some programming languages it would also stands for a space (octal 40, decimal 32). This time it didn't work, which makes one suspect that his partitions hadn't been labelled in Linux.

And then the backslash is useful if you want to let the shell know that two consecutive lines should be interpreted as a single line.

Or try entering "echo uncle\" in a terminal, and hit Enter. You'll get the promt ">".

Then enter "V" and hit Enter again:

Code: [Select]
$ echo uncle\                                                                                                                                      
> V                                                                                                                                                                  
uncleV

So sometimes the backslash may have its place in Linux too.
« Last Edit: January 23, 2011, 08:18:13 AM by Bald Brick »
Feed the trolls!
They need it!

AMD Athlon 7450 Dual-Core Processor, 7.80 GiB RAM, Nvidia GeForce GT 120/PCIe/SSE2, OpenGL/ES-version: 3.3 0 NVIDIA 295.40, SBx00 Azalia (Intel HDA) soundcard, ‎Logitech B500 webcam, SAA7146 DVB card, HDDs: Seagate 250824AS, Western Digital WD10EAVS-00D

uncleV

  • Guest
Re: [SLOVED] Unable to find mount point
« Reply #7 on: January 24, 2011, 05:32:29 AM »
Thank you, Bald Brick, for the brief tutorial on escape sequences. Long-long ago in DOS times :D I read about it and was impressed how many tricks one can do with esc. sequences.

And here your example works too but in another manner:
Quote
[uncleV@localhost ~]$ echo Bald\
>  Brick
Black Bird
[uncleV@localhost ~]$
???
« Last Edit: January 24, 2011, 05:34:06 AM by uncleV »

Offline Bald Brick

  • PCLinuxOS Tester
  • Hero Member
  • *******
  • Posts: 6395
  • I'm going South
Re: [SLOVED] Unable to find mount point
« Reply #8 on: January 24, 2011, 05:41:53 AM »
Hehehe!  ;D ;D ;D
Feed the trolls!
They need it!

AMD Athlon 7450 Dual-Core Processor, 7.80 GiB RAM, Nvidia GeForce GT 120/PCIe/SSE2, OpenGL/ES-version: 3.3 0 NVIDIA 295.40, SBx00 Azalia (Intel HDA) soundcard, ‎Logitech B500 webcam, SAA7146 DVB card, HDDs: Seagate 250824AS, Western Digital WD10EAVS-00D