LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
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-28-2016, 03:52 PM   #31
IsaacKuo
Senior Member
 
Registered: Apr 2004
Location: Baton Rouge, Louisiana, USA
Distribution: Debian Stable
Posts: 2,546
Blog Entries: 8

Rep: Reputation: 465Reputation: 465Reputation: 465Reputation: 465Reputation: 465

Quote:
Originally Posted by ForumBot View Post
Thank you for the response.

I created a new user with useradd -m temp. When I ran su temp and then startx,
This is seriously bad practice. You should log out and then log in as a particular user before attempting to run "startx". No wonder you have so many problems! There are oodles of environment variables that aren't set properly if you su without a dash ("su temp" vs "su - temp"). You're going to make a mess of things.

Rather than try and be clever about exactly what the correct procedure is to su to another user, you should log out entirely and log in as the other user.

If this is the sort of stuff you've been doing, there's no telling how messed up your system has gotten. If I were you, I'd start with a fresh OS install. This time, make sure to never run any GUI programs as root.
 
Old 08-28-2016, 04:00 PM   #32
IsaacKuo
Senior Member
 
Registered: Apr 2004
Location: Baton Rouge, Louisiana, USA
Distribution: Debian Stable
Posts: 2,546
Blog Entries: 8

Rep: Reputation: 465Reputation: 465Reputation: 465Reputation: 465Reputation: 465
Quote:
Originally Posted by ForumBot View Post
The events happened in this order:
* I ran startx as lithoria
* From within Ratpoison, I ran su root to log in as root.
* From within the above terminal, as root, I ran firefox.
* I opened a new terminal without closing the other one.
* In the new terminal I was already lithoria, so I ran firefox.
* Firefox updated the display quickly.
Needless to say, don't do anything like that again. Besides the problems of running Firefox as root in another user's X session, you switched to root without a dash - meaning a lot of environment variables were pointed to the user's settings. And then when you ran firefox again as the regular user, you messed things up even more, because firefox doesn't start a new process if it has detected it's already running. Instead, it will open a new window with the currently running process...

Time to stop being too clever by half. Try using the software in the most basic way possible, as would be expected of a newbie. Don't use su at all with anything to do with X or GUI programs. You're not doing it right, and this is messing up your system in difficult to fix ways. Just do the more straightforward thing. Log out. Log in as another user. Don't use "su" with any sort of GUI programs. Keep it basic, and see how it goes.
 
Old 08-28-2016, 05:11 PM   #33
Shadow_7
Senior Member
 
Registered: Feb 2003
Distribution: debian
Posts: 4,137
Blog Entries: 1

Rep: Reputation: 874Reputation: 874Reputation: 874Reputation: 874Reputation: 874Reputation: 874Reputation: 874
Quote:
Originally Posted by ForumBot View Post
I edited /etc/group to add lithoria to the video group, which lithoria was not currently in. I didn't notice any changes in Firefox's speed.
You have to log in again for changes to /etc/groups to take affect. And you probably should use usermod instead of editing that file directly.
 
1 members found this post helpful.
Old 08-29-2016, 10:10 AM   #34
ForumBot
LQ Newbie
 
Registered: Jul 2016
Posts: 25

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by mrmazda View Post
'lspci | grep VGA' should be sufficient to see if there is more than just Intel.

Some hardware exposes bugs that other hardware doesn't. This provides an overview, but doesn't help with why Firefox only as normal user. Someone in a Mozilla-specific forum, e.g. on IRC, might be able to provide insight.
Thank you for the response.
 
Old 08-29-2016, 10:15 AM   #35
ForumBot
LQ Newbie
 
Registered: Jul 2016
Posts: 25

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by IsaacKuo View Post
This is seriously bad practice. You should log out and then log in as a particular user before attempting to run "startx". No wonder you have so many problems! There are oodles of environment variables that aren't set properly if you su without a dash ("su temp" vs "su - temp"). You're going to make a mess of things.

Rather than try and be clever about exactly what the correct procedure is to su to another user, you should log out entirely and log in as the other user.

If this is the sort of stuff you've been doing, there's no telling how messed up your system has gotten. If I were you, I'd start with a fresh OS install. This time, make sure to never run any GUI programs as root.
Thank you for the feedback. I haven't run any GUI applications other than Firefox as root, normally run startx as only lithoria, which I log in as, and with a single possible exception, don't know of any errors occurring on my machine. Do you think I should still do a fresh install?
 
Old 08-29-2016, 10:17 AM   #36
ForumBot
LQ Newbie
 
Registered: Jul 2016
Posts: 25

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by Shadow_7 View Post
You have to log in again for changes to /etc/groups to take affect. And you probably should use usermod instead of editing that file directly.
I didn't know that. Thanks for the feedback.
 
Old 08-29-2016, 10:38 AM   #37
IsaacKuo
Senior Member
 
Registered: Apr 2004
Location: Baton Rouge, Louisiana, USA
Distribution: Debian Stable
Posts: 2,546
Blog Entries: 8

Rep: Reputation: 465Reputation: 465Reputation: 465Reputation: 465Reputation: 465
Quote:
Originally Posted by ForumBot View Post
Thank you for the feedback. I haven't run any GUI applications other than Firefox as root, normally run startx as only lithoria, which I log in as, and with a single possible exception, don't know of any errors occurring on my machine. Do you think I should still do a fresh install?
Yes. You do not seem to be aware of the things you have done previously which have messed up your system. However, it is likely that you will continue to do things that will mess up your newly installed system. Some tips to help you not mess up your system in the future:

1) Never use "su" without a dash.

2) Never run any GUI program as a different user than the one which is currently logged in. Log out and log back in before doing so.

3) It is okay to "su -" to root within any terminal (console or graphical) if you wish to run strictly command line programs. But be very aware when you do so about ANYTHING that can affect any files in another user's home directory. In your case, it's probably best to immediately habitually "cd /root/" after every invokation of "su -" just to make sure.

I'll be honest-I personally never use "su -". I only use "su" without the dash and this has never caused me any problem. But I am also very conscious and aware of the potential pitfalls of "su" so I'm always careful to only do the minimum necessary when su'd to root.
 
Old 08-30-2016, 09:51 AM   #38
ForumBot
LQ Newbie
 
Registered: Jul 2016
Posts: 25

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by IsaacKuo View Post
Yes. You do not seem to be aware of the things you have done previously which have messed up your system. However, it is likely that you will continue to do things that will mess up your newly installed system. Some tips to help you not mess up your system in the future:

1) Never use "su" without a dash.

2) Never run any GUI program as a different user than the one which is currently logged in. Log out and log back in before doing so.

3) It is okay to "su -" to root within any terminal (console or graphical) if you wish to run strictly command line programs. But be very aware when you do so about ANYTHING that can affect any files in another user's home directory. In your case, it's probably best to immediately habitually "cd /root/" after every invokation of "su -" just to make sure.

I'll be honest-I personally never use "su -". I only use "su" without the dash and this has never caused me any problem. But I am also very conscious and aware of the potential pitfalls of "su" so I'm always careful to only do the minimum necessary when su'd to root.
Thank you for the tips. I'll reinstall Arch Linux.
 
  


Reply

Tags
firefox, optimization, slow, speed



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
windows move slowly (repaint/redraw) and firefox scrolls slowly with ATI driver netrek Debian 3 11-20-2009 01:18 PM
Running super user commands as normal user mickyg Linux - Security 5 10-14-2005 07:25 PM
Root can't open display, but normal user can? sw67 Slackware 6 06-05-2005 11:48 PM
cant open firefox as normal user silverstormboy Debian 2 01-09-2005 07:58 AM
Firefox not starting as a normal user fredgt Linux - Software 9 10-03-2004 10:27 AM

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

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