Linux - Desktop This forum is for the discussion of all Linux Software used in a desktop context. |
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
 |
06-23-2021, 08:42 PM
|
#1
|
LQ Newbie
Registered: Jun 2021
Posts: 3
Rep: 
|
how can I remove ALL passwords
Hi
How can I remove ALL passwords in Linux Mint.
The PC has no security issues to be worried about.
It's just a Media Centre.
Every time copy files I have to enter a password which means I have to sit here for hours instead of just letting it go.
Cheers
Alex
Last edited by AlexEdwin; 06-23-2021 at 08:52 PM.
|
|
|
06-23-2021, 09:02 PM
|
#2
|
Senior Member
Registered: Jun 2015
Location: Tucson, AZ USA
Distribution: LMDE 6
Posts: 1,246
|
Just change the permissions of the directory you are writing to? It doesn't have to be root owned.
Code:
sudo chown -R youruser:youruser /path/to/directory
Last edited by jmgibson1981; 06-23-2021 at 09:03 PM.
|
|
|
06-23-2021, 09:04 PM
|
#3
|
LQ Guru
Registered: Jan 2006
Location: Virginia, USA
Distribution: Slackware, Ubuntu MATE, Mageia, and whatever VMs I happen to be playing with
Posts: 19,943
|
Quote:
The PC has no security issues to be worried about.
|
Is it connected to a network or the internet? Do computers on that network have internet access?
If yes, it has security issues.
|
|
|
06-24-2021, 01:27 AM
|
#4
|
LQ Addict
Registered: Mar 2012
Location: Hungary
Distribution: debian/ubuntu/suse ...
Posts: 24,360
|
Quote:
Originally Posted by AlexEdwin
Every time copy files I have to enter a password which means I have to sit here for hours instead of just letting it go.
|
Would be nice to know how is it connected and exactly what are you trying to do. Probably you can modify this using an ssh key or some other automatic authentication method. But without details hard to say anything.
|
|
|
06-25-2021, 12:20 AM
|
#5
|
LQ Addict
Registered: Dec 2013
Posts: 19,872
|
Quote:
Originally Posted by AlexEdwin
Hi
How can I remove ALL passwords in Linux Mint.
The PC has no security issues to be worried about.
It's just a Media Centre.
Every time copy files I have to enter a password which means I have to sit here for hours instead of just letting it go.
Cheers
Alex
|
It's not that simple.
Please explain exactly where you are getting this and what it says, we will take it from there.
You might want to use a dedicated media centre distribution instead.
|
|
|
07-03-2021, 05:27 PM
|
#6
|
Senior Member
Registered: May 2009
Location: center of singularity
Distribution: Xubuntu, Ubuntu, Slackware, Amazon Linux, OpenBSD, LFS (on Sparc_32 and i386)
Posts: 2,906
Rep: 
|
Quote:
Originally Posted by AlexEdwin
Hi
How can I remove ALL passwords in Linux Mint.
The PC has no security issues to be worried about.
It's just a Media Centre.
Every time copy files I have to enter a password which means I have to sit here for hours instead of just letting it go.
Cheers
Alex
|
how is it that a password causes you to have to sit there for hours? why not go do some other chores during those hours? or just don't logout! or did you create a 1000 character "no security issues" password that takes you 3 hours to type in correctly from the paper it's printed on? or maybe a shorter password? just leave it logged in!
Last edited by Skaperen; 07-03-2021 at 05:28 PM.
|
|
|
07-03-2021, 05:36 PM
|
#7
|
LQ Newbie
Registered: Jun 2021
Posts: 3
Original Poster
Rep: 
|
Solved
I reformatted my hard drive back to NTFS. Instead of EXT4
Not locked anymore.
No more password prompts anymore.
I still did not get the answer I was looking for, thanks.
Last edited by AlexEdwin; 07-03-2021 at 05:40 PM.
Reason: Question NOT answered.
|
|
|
07-03-2021, 06:11 PM
|
#8
|
Moderator
Registered: Aug 2002
Posts: 26,809
|
Quote:
I still did not get the answer I was looking for, thanks.
|
Welcome to LinuxQuestions.
The X/Y Problem is when someone asks for help with their solution instead of asking for help with the underlying problem. Everyone was trying to determine your problem in order to find an appropriate solution. It sounds like it was a permissions problem as first guessed.
|
|
1 members found this post helpful.
|
07-03-2021, 07:32 PM
|
#9
|
Member
Registered: May 2014
Distribution: Slackware
Posts: 262
Rep: 
|
Quote:
Every time copy files I have to enter a password which means I have to sit here for hours instead of just letting it go.
|
Welcome, AlexEdwin! Can you at least answer the requests to elaborate this part? It is unusual. Personally, I am wondering if you were talking about copying your movies off an USB stick to your media center.
|
|
|
07-04-2021, 08:17 PM
|
#10
|
LQ Newbie
Registered: Jun 2021
Posts: 3
Original Poster
Rep: 
|
I was copying files from an NTFS drive to a newly formatted EXT4 drive.
The question was, how do I turn off all passwords.
Every time copying created a new folder Linux asked for a password.
When I copy from NTFS to NTFS drive no passwords were asked for and the drive were not locked.
|
|
|
07-04-2021, 10:16 PM
|
#11
|
Moderator
Registered: Aug 2002
Posts: 26,809
|
NTFS filesystem permissions are not compatible with linux and therefore when it is mounted automatically read/write permissions are typically "assigned" to that user.
On the other hand with a native filesystem like ext4 permissions are not automatically assigned and you have to allow permissions. Typically there are only a few directories outside of their home directory where a regular user has write permissions.
I assume you were using sudo or the system was automatically asking for the sudo password. The question was not how to turn off passwords but how do you allow a regular user to write to that drive/ ext4 filesystem. The two basic commands are chown or chmod.
https://en.wikipedia.org/wiki/File-system_permissions
https://www.dell.com/support/kbdoc/e...ons-in-windows
https://wiki.archlinux.org/title/Fil...and_attributes
|
|
1 members found this post helpful.
|
07-05-2021, 06:01 AM
|
#12
|
LQ Addict
Registered: Dec 2013
Posts: 19,872
|
Quote:
Originally Posted by AlexEdwin
Every time copying created a new folder Linux asked for a password.
|
That shouldn't be happening.
Let's hope we get that troubleshooting info so we can start helping you.
|
|
|
All times are GMT -5. The time now is 06:45 PM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|