Content Top
DAL Computer Help » Operating System Help » Linux Help » hiding or locking folders in ubuntu

Recommended Fix

Click here to fix Windows Errors and Optimize Windows Performance

Need Computer Help?
Register Now for FREE

hiding or locking folders in ubuntu

Reply
Thread Tools
Linux Help
  #1 (permalink)  
Old 22-04-2009, 04:34 AM
Junior Member
New Recruit
 
Join Date: May 2007
Posts: 42
asdf Is a beginner here at D-A-L
hiding or locking folders in ubuntu

is there any software for hiding or locking the folders and files in Ubuntu ?
the hiding in the sense that the files become invisible and one need a password to access those files/folder even if one is logged on as root.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old 22-04-2009, 07:25 AM
rokytnji's Avatar
Dedicated Member
Loyal Contributor
 
Join Date: Dec 2007
Posts: 1,212
rokytnji has a achieved the highest status possiblerokytnji has a achieved the highest status possiblerokytnji has a achieved the highest status possiblerokytnji has a achieved the highest status possiblerokytnji has a achieved the highest status possiblerokytnji has a achieved the highest status possiblerokytnji has a achieved the highest status possiblerokytnji has a achieved the highest status possiblerokytnji has a achieved the highest status possiblerokytnji has a achieved the highest status possiblerokytnji has a achieved the highest status possible
Re: hiding or locking folders in ubuntu

Quote:
even if one is logged on as root.
When logged in as root, nothing is hidden. If you want to encrypt your file system. You can use Truecrypt

If you want to lock a file just change who can access by going into permissions with right click and change permissions for that folder or file.
__________________
I’ll keep using Linux until they pry it from my cold dead fingers.

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 22-04-2009, 08:09 AM
townsbg's Avatar
Dedicated Member
Loyal Contributor
 
Join Date: Apr 2005
Posts: 1,612
townsbg is quite a big dealtownsbg is quite a big dealtownsbg is quite a big dealtownsbg is quite a big dealtownsbg is quite a big dealtownsbg is quite a big dealtownsbg is quite a big dealtownsbg is quite a big dealtownsbg is quite a big dealtownsbg is quite a big dealtownsbg is quite a big deal
Re: hiding or locking folders in ubuntu

Quote:
Originally Posted by rokytnji View Post
If you want to lock a file just change who can access by going into permissions with right click and change permissions for that folder or file.
Can't root override any folder/file permissions? Do you not have control of root? Thats worse than not having control of the administrative accounts in windows. It would seem that file encryption should work but can't root unlock password protected accounts?

toucan is a standalone encryption program. Encrypted files are useless until the app is used to decrypt it. The good news is that it is for WINE. The source code as well as a GNU Tarball are also available. Doesn't that install a program on some versions of Linux?

Last edited by townsbg; 22-04-2009 at 08:19 AM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old 22-04-2009, 08:18 AM
rokytnji's Avatar
Dedicated Member
Loyal Contributor
 
Join Date: Dec 2007
Posts: 1,212
rokytnji has a achieved the highest status possiblerokytnji has a achieved the highest status possiblerokytnji has a achieved the highest status possiblerokytnji has a achieved the highest status possiblerokytnji has a achieved the highest status possiblerokytnji has a achieved the highest status possiblerokytnji has a achieved the highest status possiblerokytnji has a achieved the highest status possiblerokytnji has a achieved the highest status possiblerokytnji has a achieved the highest status possiblerokytnji has a achieved the highest status possible
Re: hiding or locking folders in ubuntu

Root can access any file, document, etc..... in linux.
Quote:
When logged in as root, nothing is hidden
Just like I stated in above statement.

Root is superuser. I suggested locking the file so regular users can't access file or change it. Security for root is determined by the User of said computer by the strength of his root accounts password which can only be changed by the owner of said computer and only he should know roots password. Linux has it set up so you (the owner) can set up whatever root password you wish to use,

Kind of a fishy question about somebody else having the password to a root account anyhows. Nobody can access any files I have locked out but me.
__________________
I’ll keep using Linux until they pry it from my cold dead fingers.

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5 (permalink)  
Old 22-04-2009, 08:24 AM
townsbg's Avatar
Dedicated Member
Loyal Contributor
 
Join Date: Apr 2005
Posts: 1,612
townsbg is quite a big dealtownsbg is quite a big dealtownsbg is quite a big dealtownsbg is quite a big dealtownsbg is quite a big dealtownsbg is quite a big dealtownsbg is quite a big dealtownsbg is quite a big dealtownsbg is quite a big dealtownsbg is quite a big dealtownsbg is quite a big deal
Re: hiding or locking folders in ubuntu

Kind of a fishy subject.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #6 (permalink)  
Old 22-04-2009, 08:58 AM
rokytnji's Avatar
Dedicated Member
Loyal Contributor
 
Join Date: Dec 2007
Posts: 1,212
rokytnji has a achieved the highest status possiblerokytnji has a achieved the highest status possiblerokytnji has a achieved the highest status possiblerokytnji has a achieved the highest status possiblerokytnji has a achieved the highest status possiblerokytnji has a achieved the highest status possiblerokytnji has a achieved the highest status possiblerokytnji has a achieved the highest status possiblerokytnji has a achieved the highest status possiblerokytnji has a achieved the highest status possiblerokytnji has a achieved the highest status possible
Re: hiding or locking folders in ubuntu

Quote:
toucan is a standalone encryption program. Encrypted files are useless until the app is used to decrypt it. The good news is that it is for WINE. The source code as well as a GNU Tarball are also available. Doesn't that install a program on some versions of Linux?
to install a tarball you need to install first
linux-headers
make
gcc
build-essential

Then in terminal do
for files ending in .tar.gz, use:
Quote:
tar -zxvf <filename>
You should now have a new directory, containing all of the source files. To confirm it exists, and to get its name, use the "ls" command .
Quote:
ls
we now need to go into the new directory, so use the cd command:
Quote:
cd <directory>
This is where things will differ. Some packages will have an INSTALL or README file which will contain installation instructions. use "ls" to see if the software has an install or readme file. If it does have one, you can use the "more" command to read it, like so:
Quote:
more INSTALL
Generally, the final 3 stages are as follows:
- Configure the installation
- Compile the software
- Install the binaries

The pre-installation configuration is done by executing ./configure:
Quote:
./configure
The next stage is to compile the software, this is done using "make". When you run "make" it will read the instructions in the Makefile and build the application binaries.
Quote:
make
The final stage is to install these binaries, ie, copy them to a more permanent location. Typically only the "root" user can do this, so you will need to swich to the root user with the "su" command:
Quote:
su
Once you are root, install the binaries using the "make" command, followed by "install", like so:
Quote:
make install
That is how you install a source tarball in Linux. It's not for the novice, Thats why I suggested truecrypt. Its available in the repositories in Ubuntu.
__________________
I’ll keep using Linux until they pry it from my cold dead fingers.

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #7 (permalink)  
Old 22-04-2009, 09:23 AM
townsbg's Avatar
Dedicated Member
Loyal Contributor
 
Join Date: Apr 2005
Posts: 1,612
townsbg is quite a big dealtownsbg is quite a big dealtownsbg is quite a big dealtownsbg is quite a big dealtownsbg is quite a big dealtownsbg is quite a big dealtownsbg is quite a big dealtownsbg is quite a big dealtownsbg is quite a big dealtownsbg is quite a big dealtownsbg is quite a big deal
Re: hiding or locking folders in ubuntu

I know enough about linux to barely know what you are talking about but not enough to explain it to others. I've used it but if got to admit that I don't like it but maybe the last class I had that involved it soured me on it.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Thread Tools

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Locking Folders in Mobiles Mashetty Mobile / Cell Phones 0 22-02-2008 04:59 AM
hiding toolbars/adress bar in HTML madmikejt12 Web Development Help 3 14-02-2006 04:39 PM
Trojan downloader hiding very well Rowena Spyware, Adware, Viruses and HijackThis Logs 4 22-12-2004 02:45 PM
hiding browser 4 lines at the top loader04 Windows 2000 Help 7 26-11-2004 11:47 PM
Hiding Source Hologram Web Development Help 7 22-11-2004 05:09 PM


All times are GMT +1. The time now is 09:40 AM.

Bottom Corner