LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Linux Mint
User Name
Password
Linux Mint This forum is for the discussion of Linux Mint.

Notices


Reply
  Search this Thread
Old 04-04-2011, 05:00 PM   #1
Dadofmykids
LQ Newbie
 
Registered: Apr 2011
Posts: 2

Rep: Reputation: 0
How to allow non admin user accounts to access files created in other o/s.


I have installed Mint 10 on the family desktop to try it out for general family use. It is dual boot. Previous o/s is still there, along with all the files such as documents. (Am I allowed to say "Windows" here? I am not sure of the rules yet.)

I set up two accounts, one that I use with admin privileges. The other for the kids to use, without admin privileges. In the admin account I can access all documents created and in the other o/s. But in the kids account, we cannot see the documents at all. Is there any way to "share" the documents/files so the kids can retrieve their homework from the old o/s?

Thanks!
 
Old 04-05-2011, 12:57 PM   #2
ButterflyMelissa
Senior Member
 
Registered: Nov 2007
Location: Somewhere on my hard drive...
Distribution: Manjaro
Posts: 2,766
Blog Entries: 23

Rep: Reputation: 411Reputation: 411Reputation: 411Reputation: 411Reputation: 411
Hi,

Firstly: welcome, and yes, the "other os" can be mentioned, though (very) few use a capital w ...

Okay, the answer: yes. It is completely possible to allow access to a folder for other users.
In fact, THIS is where Linux shines! You need to set the access bits. Some background:
http://www.zzee.com/solutions/linux-permissions.shtml

You'll need to use the command chmod ... yes, that is a command...

This is what you'd need to do:

- place the folder somewhere in the Linux system, your folder would be best.
- open the Console, you land right into your folder
- invoke the cmod command

Quote:
chmod +r -R folderforthekids
- enter the folder of the kids, typically /home/kids
- make a symlink

Quote:
ln -s /home/myfolder/folderforthekids
- give them read rights... same as above

Take care, +r sets the read rights, -r revokes them. the capital R means "recusively", that way they get to read what is inside the folder as well...

Links:
Chmod http://www.linuxmanpages.com/man1/chmod.1.php
Ln http://www.linuxmanpages.com/man1/ln.1.php

By the way, it's good (best) practice to set up a non-root account for yourself, because if
Quote:
one that I use with admin privileges.
this is what I think it means, it means you're root...that's not safe.

How to find out?

Enter this in the console

Quote:
whoami
and if the word "root" comes back...you're in root mode. It's wise to set up a non-root account right away, if that's the case.

Wellness!

Thor

Last edited by ButterflyMelissa; 04-05-2011 at 01:06 PM.
 
1 members found this post helpful.
Old 04-06-2011, 10:08 AM   #3
repo
LQ 5k Club
 
Registered: May 2001
Location: Belgium
Distribution: Arch
Posts: 8,529

Rep: Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899
Quote:
In the admin account I can access all documents created and in the other o/s. But in the kids account, we cannot see the documents at all. I
Is the partition in VFAT, NTFS ...
How did you mount the Windows partition?
Do you mount it via
Code:
/etc/fstab
at boot?
If the filesystem is NTFS
It should look like
Code:
/dev/sda3      /mnt/windows      ntfs   umask=000,defaults   0 0
replace
Code:
/dev/sda3
with the correct name in your case
Code:
fdsik -l
will give you the correct name
and
Code:
/mnt/windows
with the mountpoint you are using


Kind regards

Last edited by repo; 04-06-2011 at 10:45 AM.
 
Old 04-06-2011, 10:17 AM   #4
repo
LQ 5k Club
 
Registered: May 2001
Location: Belgium
Distribution: Arch
Posts: 8,529

Rep: Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899
@Thor_2.0

Quote:
- place the folder somewhere in the Linux system, your folder would be best.
Why place the folder on the linuxsystem?
Then you need to copy them back to windows if you need them in Windows.
The OP wants to access the files on the windows partition.
Since he can access them as root, he should be able to access them as user also,
providing the partition is mounted correctly.

You also need to chown the folder to the actual user.
Using only
Code:
chmod +r
will still give
Code:
root:root
as owner

Kind regards

Last edited by repo; 04-06-2011 at 11:02 AM.
 
Old 04-06-2011, 12:20 PM   #5
ButterflyMelissa
Senior Member
 
Registered: Nov 2007
Location: Somewhere on my hard drive...
Distribution: Manjaro
Posts: 2,766
Blog Entries: 23

Rep: Reputation: 411Reputation: 411Reputation: 411Reputation: 411Reputation: 411
Quote:
Why place the folder on the linuxsystem?
Then you need to copy them back to windows if you need them in Windows.
The OP wants to access the files on the windows partition.
I suggested this because I was not too sure about OP's abilities...of course, your option is the better one, provided OP can accomplish this...

Let's w8-n-C

Thor
 
Old 05-10-2011, 03:19 PM   #6
ricgal
LQ Newbie
 
Registered: Jan 2005
Location: Winnipeg MB Canada
Distribution: Zorin lite
Posts: 14
Blog Entries: 1

Rep: Reputation: 0
I'm reading this thread because I have installed the new 11.04 version of Ubuntu in one of my partitions, but I have files on sda1 which I had used with 10.04, that I want to access.

Some of the advice here is old school, considering newer versions such as Ubuntu do not actually set up the root account as a desktop account, so whoami does not return root. Root cannot be set up as a desktop user, although the root account does exist in the filesystem and the "users and groups".

However, in Ubuntu, the account set up when installing the o/s is also given administrator privileges, which are accessed with the same password as this user uses.

The secret is in creating a folder on your file system for the partition you want to mount, and then modifying the etc/fstab which lists the static files of a filesystem.

Gnome users with administrative rights can open the file manager with root privileges by opening a terminal and typing

sudo nautilus

at the prompt. They will be prompted for their password.

Then when they right-click and choose to edit etc/fstab , they will be able to save their edditing results back again.
 
  


Reply

Tags
files, sharing



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
vsftpd read access for user accounts but needs write access ncsuapex Linux - Server 2 04-23-2010 10:51 AM
created user picks up machine accounts chozz Linux - General 0 08-22-2008 09:16 AM
how to get admin access in KDE while logged in as user ijak Linux - Newbie 2 12-13-2007 04:33 PM
User accounts can't access NTFS partition Agent Cobalt Linux - General 6 04-30-2006 09:56 PM
Disabled access to user accounts! HELP! Adeas Mandriva 2 09-07-2003 08:17 PM

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

All times are GMT -5. The time now is 09:51 PM.

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