LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 08-22-2011, 06:23 AM   #31
Bhakta Neal
Member
 
Registered: Jul 2010
Location: Big Island, Hawaii
Distribution: Kubuntu10.04
Posts: 248

Original Poster
Rep: Reputation: 19

Oh boy, another she-beast episode!
Not sure how the mixup originated...
 
Old 08-22-2011, 06:32 AM   #32
Bhakta Neal
Member
 
Registered: Jul 2010
Location: Big Island, Hawaii
Distribution: Kubuntu10.04
Posts: 248

Original Poster
Rep: Reputation: 19
Forgive me if I suggest this out of place but, it seems that the /mnt/Fatass32 is the "correct" one, and should be somehow adjusted so that a folder under /home/bhakta would open up to the same fat32 partition. And the current /home/bhakta/Fatass32 is not correct, and should be removed. Arrgghh what have I done???!
 
Old 08-22-2011, 06:40 AM   #33
EricTRA
LQ Guru
 
Registered: May 2009
Location: Gibraltar, Gibraltar
Distribution: Fedora 20 with Awesome WM
Posts: 6,805
Blog Entries: 1

Rep: Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297
Hi Neal,

Don't panic, you just got things mixed up I believe.

First of all, what's in your /etc/fstab, regarding the /dev/sda8 drive, which is the one holding your data in a FAT32 partition correctly?

Kind regards,

Eric
 
1 members found this post helpful.
Old 08-22-2011, 06:52 AM   #34
Bhakta Neal
Member
 
Registered: Jul 2010
Location: Big Island, Hawaii
Distribution: Kubuntu10.04
Posts: 248

Original Poster
Rep: Reputation: 19
Quote:
bhakta@Krishna-PC:~$ cat /etc/fstab
# /etc/fstab: static file system information.
#
# Use 'blkid -o value -s UUID' to print the universally unique identifier
# for a device; this may be used with UUID= as a more robust way to name
# devices that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point> <type> <options> <dump> <pass>
proc /proc proc nodev,noexec,nosuid 0 0
# / was on /dev/sda6 during installation
UUID=fe1ab25d-1c6c-4297-a18b-8f9571d8dbdc / ext4 errors=remount-ro 0 1
# swap was on /dev/sda7 during installation
UUID=fe43f7fe-9944-4085-b515-4747e3d92195 none swap sw 0 0

/dev/sda8 /mnt/Fatass32 vfat auto,user,rw 1 2


Correctly holding my data files is: /mnt/Fatass32
 
Old 08-22-2011, 07:10 AM   #35
EricTRA
LQ Guru
 
Registered: May 2009
Location: Gibraltar, Gibraltar
Distribution: Fedora 20 with Awesome WM
Posts: 6,805
Blog Entries: 1

Rep: Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297
Hi Neal,

OK, so

1. /mnt/Fatass32 holds the data
2. /home/bhakta/Fatass32 has no content
3. /home/bhakta/Fatass32 is a directory

Is the above correct?

Kind regards,

Eric
 
1 members found this post helpful.
Old 08-22-2011, 07:13 AM   #36
Bhakta Neal
Member
 
Registered: Jul 2010
Location: Big Island, Hawaii
Distribution: Kubuntu10.04
Posts: 248

Original Poster
Rep: Reputation: 19
yes, correct
 
Old 08-22-2011, 09:29 AM   #37
Bhakta Neal
Member
 
Registered: Jul 2010
Location: Big Island, Hawaii
Distribution: Kubuntu10.04
Posts: 248

Original Poster
Rep: Reputation: 19
Under /mnt:

/mnt/data
&
/mnt/Fatass32

The /mnt/data is blank and,
the /mnt/Fatass32 corresponds to my Fatass32 partition.

Apologees for all the mistakes. I have been house cleaning and packing, and not sleeping at all, so I am just mush right now. Long ride to airport in a few hours, then 14 hour flight..... Ughhh

Aloha!
 
Old 08-22-2011, 09:55 AM   #38
EricTRA
LQ Guru
 
Registered: May 2009
Location: Gibraltar, Gibraltar
Distribution: Fedora 20 with Awesome WM
Posts: 6,805
Blog Entries: 1

Rep: Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297
Hi Neal,

Sorry for the delay, had to attend an emergency and just got home. There are two ways you can solve your problem, either you change /etc/fstab to show as mountpoint /home/bhakta/Fatass32 instead of /mnt/Fatass32, OR you delete the directory /home/bhakta/Fatass32 and make a symbolic link to your mountpoint. Either way will do. To make a symbolic link AFTER deleting the directory:
Code:
ln -s /home/bhakta/Fatass32 /mnt/Fatass32
No problem for the mistakes buddy, that's only normal if you don't sleep. If I don't see you online for some time, have a nice flight and a good start.

Kind regards,

Eric
 
1 members found this post helpful.
Old 08-22-2011, 10:09 AM   #39
Bhakta Neal
Member
 
Registered: Jul 2010
Location: Big Island, Hawaii
Distribution: Kubuntu10.04
Posts: 248

Original Poster
Rep: Reputation: 19
Ughh, another brick wall...
Hey I kinda recall some permissions issues in the last thread, I will go check...

Anyway here is he results for the instruction in post #38:

Quote:
bhakta@Krishna-PC:~$ ln -s /home/bhakta/Fatass32 /mnt/Fatass32
ln: creating symbolic link `/mnt/Fatass32/Fatass32': Permission denied
bhakta@Krishna-PC:~$ sudo ln -s /home/bhakta/Fatass32 /mnt/Fatass32
ln: creating symbolic link `/mnt/Fatass32/Fatass32': Operation not permitted
 
Old 08-22-2011, 10:12 AM   #40
EricTRA
LQ Guru
 
Registered: May 2009
Location: Gibraltar, Gibraltar
Distribution: Fedora 20 with Awesome WM
Posts: 6,805
Blog Entries: 1

Rep: Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297
Hi,

Try the other way, changing the mount point in the /etc/fstab file and run
Code:
sudo mount -a
Kind regards,

Eric
 
1 members found this post helpful.
Old 08-22-2011, 10:18 AM   #41
Bhakta Neal
Member
 
Registered: Jul 2010
Location: Big Island, Hawaii
Distribution: Kubuntu10.04
Posts: 248

Original Poster
Rep: Reputation: 19
I have fstab open, not sure (afraid?) what to adjust.

I am changing /mnt/Fatass32 to /home/bhakta/Fatass32 in the fstab.

Hope that's right.

Whats THIS lil red button do...?

Ok now sudo mount -a...

Quote:
bhakta@Krishna-PC:~$ sudo nano /etc/fstab
bhakta@Krishna-PC:~$ sudo mount -a
mount: mount point /home/bhakta/Fatass32 does not exist
I just can't get it right! Ha! Eyes are crossing!
 
Old 08-22-2011, 10:32 AM   #42
Bhakta Neal
Member
 
Registered: Jul 2010
Location: Big Island, Hawaii
Distribution: Kubuntu10.04
Posts: 248

Original Poster
Rep: Reputation: 19
Eric, no problem, you have an emergency, please go tend to that. No need to stay at the puter if you are needed elsewhere. If needed, we can connect in a few days, after Im in Hawaii.
 
Old 08-22-2011, 11:49 AM   #43
Bhakta Neal
Member
 
Registered: Jul 2010
Location: Big Island, Hawaii
Distribution: Kubuntu10.04
Posts: 248

Original Poster
Rep: Reputation: 19
Wait I think it works after restart!
 
Old 08-22-2011, 11:52 AM   #44
Bhakta Neal
Member
 
Registered: Jul 2010
Location: Big Island, Hawaii
Distribution: Kubuntu10.04
Posts: 248

Original Poster
Rep: Reputation: 19
SOLVED!
I hope some other "hopeless" noobs can learn from this thread, and the referenced previous one.

Thanks again Eric.
Damn you are worth your weight in beer! How many kegs now?!

Not sure if I will ever make it to Spain or Peru, but if you come to Hawaii, I will take good care of you :-)

I can only aspire to be as helpful to linuxers and humanity as you are.

Much love to you and your familia.

Neal
 
Old 08-22-2011, 01:40 PM   #45
EricTRA
LQ Guru
 
Registered: May 2009
Location: Gibraltar, Gibraltar
Distribution: Fedora 20 with Awesome WM
Posts: 6,805
Blog Entries: 1

Rep: Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297
Hi Neal,

Sorry I wasn't around for the fireworks!! But I'm glad you got it solved. Enjoy Hawaii buddy and I'm sure we'll meet some day next year. Keep in touch my friend!

Kind regards,

Eric
 
1 members found this post helpful.
  


Reply



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
Installed slackware-try to access FAT32 file partition-permission denied-? linus72 Slackware 10 03-23-2009 08:23 AM
How do I manually mount a FAT32 external drive in Kubuntu 7.0.0? higleyg Linux - Newbie 1 05-26-2008 05:37 PM
Access denied when attempting access samba share warlockvix Linux - Software 1 05-11-2007 02:36 PM
getting access denied , when trying to access camera as normal user bennythepitbull Linux - Hardware 2 11-04-2003 02:30 AM
2 fat32 partitions on fbsd5/w2k dual. Can only access one fat32 so far.. mipia *BSD 1 10-06-2003 02:10 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

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