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 |
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.
|
|
08-18-2017, 12:39 PM
|
#1
|
LQ Newbie
Registered: Aug 2017
Posts: 6
Rep:
|
gnome-terminal will not execute commands after a su (switch user) command
Hello!
I am executing: gnome-terminal --execute su - ..... --execute cd /home/test
After the gnome-panel executes the su to another profile it ignores any later execute commands. Is there anyway to execute commands after a switch user command?
Thanks!
|
|
|
08-18-2017, 02:24 PM
|
#2
|
Moderator
Registered: Mar 2011
Location: USA
Distribution: MINT Debian, Angstrom, SUSE, Ubuntu, Debian
Posts: 9,914
|
Can you do what you wish using sudo as opposed to su?
|
|
|
08-18-2017, 02:41 PM
|
#3
|
LQ Newbie
Registered: Aug 2017
Posts: 6
Original Poster
Rep:
|
No.
|
|
|
08-18-2017, 02:48 PM
|
#4
|
LQ Guru
Registered: Apr 2005
Distribution: Linux Mint, Devuan, OpenBSD
Posts: 7,598
|
Check the manual page again:
Quote:
--execute CMD ARGS, -x CMD ARGS
Executes the command CMD with its arguments ARGS on startup. No arguments beyond this one will be processed by the terminal. This behaviour mimics the xterm -e behaviour.
|
Only one --execute option is allowed because everything after the first one is ignored by gnome-terminal.
So if you are using su instead of sudo then you'll need to pay attention to the -c option.
Code:
gnome-terminal --execute su -l -c '...; ...; cd /home/test;'
See
Code:
man gnome-terminal
man su
|
|
|
08-18-2017, 03:18 PM
|
#5
|
LQ Guru
Registered: Mar 2016
Location: Harrow, UK
Distribution: LFS, AntiX, Slackware
Posts: 8,036
|
It's not a good idea to use either su or sudo in a big desktop environment like gnome. These desktops are held together by a slew of XDG environmental variables that can get corrupted if they are exposed to root ownership. Use gksudo instead.
|
|
|
08-18-2017, 03:20 PM
|
#6
|
LQ Guru
Registered: Apr 2005
Distribution: Linux Mint, Devuan, OpenBSD
Posts: 7,598
|
Quote:
Originally Posted by hazel
It's not a good idea to use either su or sudo in a big desktop environment like gnome. These desktops are held together by a slew of XDG environmental variables that can get corrupted if they are exposed to root ownership. Use gksudo instead.
|
Adding the -H option in sudo should do the same.
|
|
|
All times are GMT -5. The time now is 03:08 AM.
|
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
|
|