What is the command to run System Settings from a terminal?
up vote
145
down vote
favorite
System Settings can be run from the launcher (pinned by default), the Dash, or the power cog. But what command would I enter in a terminal window if I want to run it from there?
command-line
add a comment |
up vote
145
down vote
favorite
System Settings can be run from the launcher (pinned by default), the Dash, or the power cog. But what command would I enter in a terminal window if I want to run it from there?
command-line
add a comment |
up vote
145
down vote
favorite
up vote
145
down vote
favorite
System Settings can be run from the launcher (pinned by default), the Dash, or the power cog. But what command would I enter in a terminal window if I want to run it from there?
command-line
System Settings can be run from the launcher (pinned by default), the Dash, or the power cog. But what command would I enter in a terminal window if I want to run it from there?
command-line
command-line
edited Apr 7 '12 at 22:17
fossfreedom♦
148k36326371
148k36326371
asked Mar 28 '12 at 8:01
Christopher Kyle Horton
10.3k1269141
10.3k1269141
add a comment |
add a comment |
5 Answers
5
active
oldest
votes
up vote
187
down vote
accepted
For versions between 14.04 and 17.04 :
unity-control-center
For versions before 14.04 & 17.10 and greater :
gnome-control-center
FYI, on my Ubuntu 14.04 onlygnome-control-center
works.
– dr01
Dec 17 '15 at 14:00
@dr01 I assume you are running the Gnome DE and not Unity DE then.
– Elder Geek
Jul 17 at 15:22
add a comment |
up vote
11
down vote
if you run
gnome-control-center
and get
gnome-control-center: command not found
you can install with
sudo apt-get install gnome-control-center
2
14.04 and greater may use the commandunity-control-center
instead, which was forked from it. There's no need to installgnome-control-center
as well.
– Christopher Kyle Horton
Jul 2 '14 at 16:18
@WarriorIng64 cool, thanks. This was meant to help those following the accepted post that had trouble with gnome-control-center (as I did). Not sure why this post received a down vote.
– grant
Jul 7 '14 at 16:55
add a comment |
up vote
2
down vote
In Crouton, you must run anything that would require a password from the terminal, such as update manager, software center, synaptic, etc. So, to get to system settings you would enter in the terminal:
sudo gnome-control-center
That will bring up the system settings GUI.
To check for updates, or if the update manager appears in the Unity Launcher, run it from the terminal, not by clicking on it:
sudo update-manager
The same applies to synaptic, the software center, etc. Anything which requires a password, must be run from the terminal in Crouton with a sudo
.
4
AFAIK GNOME Control Center does not needsudo
permissions to run. Also, usingsudo
to run GUI apps is potentially a bad idea.
– Christopher Kyle Horton
May 19 '14 at 23:34
2
Yeah well I ran it withoutsudo
and only three of the setting icons showed up. I ran it withsudo
and all the setting icons showed up. What does that tell you?!
– Sukima
Mar 5 at 17:52
add a comment |
up vote
2
down vote
I found a different solution...
I tried removing/installing
gnome-control-center
; this did reinstall the application I still couldn't open it.Later I found that it would start up on the side of the screen and I couldn't access it
I changed the display mode to single display and it came back. Hope it helps.
New contributor
add a comment |
up vote
1
down vote
for folks stuck like me on lubuntu
to change the default disaply settings - lxrandr
is the command to adjust display settings.
add a comment |
5 Answers
5
active
oldest
votes
5 Answers
5
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
187
down vote
accepted
For versions between 14.04 and 17.04 :
unity-control-center
For versions before 14.04 & 17.10 and greater :
gnome-control-center
FYI, on my Ubuntu 14.04 onlygnome-control-center
works.
– dr01
Dec 17 '15 at 14:00
@dr01 I assume you are running the Gnome DE and not Unity DE then.
– Elder Geek
Jul 17 at 15:22
add a comment |
up vote
187
down vote
accepted
For versions between 14.04 and 17.04 :
unity-control-center
For versions before 14.04 & 17.10 and greater :
gnome-control-center
FYI, on my Ubuntu 14.04 onlygnome-control-center
works.
– dr01
Dec 17 '15 at 14:00
@dr01 I assume you are running the Gnome DE and not Unity DE then.
– Elder Geek
Jul 17 at 15:22
add a comment |
up vote
187
down vote
accepted
up vote
187
down vote
accepted
For versions between 14.04 and 17.04 :
unity-control-center
For versions before 14.04 & 17.10 and greater :
gnome-control-center
For versions between 14.04 and 17.04 :
unity-control-center
For versions before 14.04 & 17.10 and greater :
gnome-control-center
edited Nov 10 '17 at 17:34
pomsky
27.2k1184111
27.2k1184111
answered Mar 28 '12 at 8:07
Vibhav Pant
2,93311215
2,93311215
FYI, on my Ubuntu 14.04 onlygnome-control-center
works.
– dr01
Dec 17 '15 at 14:00
@dr01 I assume you are running the Gnome DE and not Unity DE then.
– Elder Geek
Jul 17 at 15:22
add a comment |
FYI, on my Ubuntu 14.04 onlygnome-control-center
works.
– dr01
Dec 17 '15 at 14:00
@dr01 I assume you are running the Gnome DE and not Unity DE then.
– Elder Geek
Jul 17 at 15:22
FYI, on my Ubuntu 14.04 only
gnome-control-center
works.– dr01
Dec 17 '15 at 14:00
FYI, on my Ubuntu 14.04 only
gnome-control-center
works.– dr01
Dec 17 '15 at 14:00
@dr01 I assume you are running the Gnome DE and not Unity DE then.
– Elder Geek
Jul 17 at 15:22
@dr01 I assume you are running the Gnome DE and not Unity DE then.
– Elder Geek
Jul 17 at 15:22
add a comment |
up vote
11
down vote
if you run
gnome-control-center
and get
gnome-control-center: command not found
you can install with
sudo apt-get install gnome-control-center
2
14.04 and greater may use the commandunity-control-center
instead, which was forked from it. There's no need to installgnome-control-center
as well.
– Christopher Kyle Horton
Jul 2 '14 at 16:18
@WarriorIng64 cool, thanks. This was meant to help those following the accepted post that had trouble with gnome-control-center (as I did). Not sure why this post received a down vote.
– grant
Jul 7 '14 at 16:55
add a comment |
up vote
11
down vote
if you run
gnome-control-center
and get
gnome-control-center: command not found
you can install with
sudo apt-get install gnome-control-center
2
14.04 and greater may use the commandunity-control-center
instead, which was forked from it. There's no need to installgnome-control-center
as well.
– Christopher Kyle Horton
Jul 2 '14 at 16:18
@WarriorIng64 cool, thanks. This was meant to help those following the accepted post that had trouble with gnome-control-center (as I did). Not sure why this post received a down vote.
– grant
Jul 7 '14 at 16:55
add a comment |
up vote
11
down vote
up vote
11
down vote
if you run
gnome-control-center
and get
gnome-control-center: command not found
you can install with
sudo apt-get install gnome-control-center
if you run
gnome-control-center
and get
gnome-control-center: command not found
you can install with
sudo apt-get install gnome-control-center
answered Aug 29 '13 at 15:46
grant
24224
24224
2
14.04 and greater may use the commandunity-control-center
instead, which was forked from it. There's no need to installgnome-control-center
as well.
– Christopher Kyle Horton
Jul 2 '14 at 16:18
@WarriorIng64 cool, thanks. This was meant to help those following the accepted post that had trouble with gnome-control-center (as I did). Not sure why this post received a down vote.
– grant
Jul 7 '14 at 16:55
add a comment |
2
14.04 and greater may use the commandunity-control-center
instead, which was forked from it. There's no need to installgnome-control-center
as well.
– Christopher Kyle Horton
Jul 2 '14 at 16:18
@WarriorIng64 cool, thanks. This was meant to help those following the accepted post that had trouble with gnome-control-center (as I did). Not sure why this post received a down vote.
– grant
Jul 7 '14 at 16:55
2
2
14.04 and greater may use the command
unity-control-center
instead, which was forked from it. There's no need to install gnome-control-center
as well.– Christopher Kyle Horton
Jul 2 '14 at 16:18
14.04 and greater may use the command
unity-control-center
instead, which was forked from it. There's no need to install gnome-control-center
as well.– Christopher Kyle Horton
Jul 2 '14 at 16:18
@WarriorIng64 cool, thanks. This was meant to help those following the accepted post that had trouble with gnome-control-center (as I did). Not sure why this post received a down vote.
– grant
Jul 7 '14 at 16:55
@WarriorIng64 cool, thanks. This was meant to help those following the accepted post that had trouble with gnome-control-center (as I did). Not sure why this post received a down vote.
– grant
Jul 7 '14 at 16:55
add a comment |
up vote
2
down vote
In Crouton, you must run anything that would require a password from the terminal, such as update manager, software center, synaptic, etc. So, to get to system settings you would enter in the terminal:
sudo gnome-control-center
That will bring up the system settings GUI.
To check for updates, or if the update manager appears in the Unity Launcher, run it from the terminal, not by clicking on it:
sudo update-manager
The same applies to synaptic, the software center, etc. Anything which requires a password, must be run from the terminal in Crouton with a sudo
.
4
AFAIK GNOME Control Center does not needsudo
permissions to run. Also, usingsudo
to run GUI apps is potentially a bad idea.
– Christopher Kyle Horton
May 19 '14 at 23:34
2
Yeah well I ran it withoutsudo
and only three of the setting icons showed up. I ran it withsudo
and all the setting icons showed up. What does that tell you?!
– Sukima
Mar 5 at 17:52
add a comment |
up vote
2
down vote
In Crouton, you must run anything that would require a password from the terminal, such as update manager, software center, synaptic, etc. So, to get to system settings you would enter in the terminal:
sudo gnome-control-center
That will bring up the system settings GUI.
To check for updates, or if the update manager appears in the Unity Launcher, run it from the terminal, not by clicking on it:
sudo update-manager
The same applies to synaptic, the software center, etc. Anything which requires a password, must be run from the terminal in Crouton with a sudo
.
4
AFAIK GNOME Control Center does not needsudo
permissions to run. Also, usingsudo
to run GUI apps is potentially a bad idea.
– Christopher Kyle Horton
May 19 '14 at 23:34
2
Yeah well I ran it withoutsudo
and only three of the setting icons showed up. I ran it withsudo
and all the setting icons showed up. What does that tell you?!
– Sukima
Mar 5 at 17:52
add a comment |
up vote
2
down vote
up vote
2
down vote
In Crouton, you must run anything that would require a password from the terminal, such as update manager, software center, synaptic, etc. So, to get to system settings you would enter in the terminal:
sudo gnome-control-center
That will bring up the system settings GUI.
To check for updates, or if the update manager appears in the Unity Launcher, run it from the terminal, not by clicking on it:
sudo update-manager
The same applies to synaptic, the software center, etc. Anything which requires a password, must be run from the terminal in Crouton with a sudo
.
In Crouton, you must run anything that would require a password from the terminal, such as update manager, software center, synaptic, etc. So, to get to system settings you would enter in the terminal:
sudo gnome-control-center
That will bring up the system settings GUI.
To check for updates, or if the update manager appears in the Unity Launcher, run it from the terminal, not by clicking on it:
sudo update-manager
The same applies to synaptic, the software center, etc. Anything which requires a password, must be run from the terminal in Crouton with a sudo
.
edited May 19 '14 at 23:30
Christopher Kyle Horton
10.3k1269141
10.3k1269141
answered May 18 '14 at 19:01
Tractor
9617
9617
4
AFAIK GNOME Control Center does not needsudo
permissions to run. Also, usingsudo
to run GUI apps is potentially a bad idea.
– Christopher Kyle Horton
May 19 '14 at 23:34
2
Yeah well I ran it withoutsudo
and only three of the setting icons showed up. I ran it withsudo
and all the setting icons showed up. What does that tell you?!
– Sukima
Mar 5 at 17:52
add a comment |
4
AFAIK GNOME Control Center does not needsudo
permissions to run. Also, usingsudo
to run GUI apps is potentially a bad idea.
– Christopher Kyle Horton
May 19 '14 at 23:34
2
Yeah well I ran it withoutsudo
and only three of the setting icons showed up. I ran it withsudo
and all the setting icons showed up. What does that tell you?!
– Sukima
Mar 5 at 17:52
4
4
AFAIK GNOME Control Center does not need
sudo
permissions to run. Also, using sudo
to run GUI apps is potentially a bad idea.– Christopher Kyle Horton
May 19 '14 at 23:34
AFAIK GNOME Control Center does not need
sudo
permissions to run. Also, using sudo
to run GUI apps is potentially a bad idea.– Christopher Kyle Horton
May 19 '14 at 23:34
2
2
Yeah well I ran it without
sudo
and only three of the setting icons showed up. I ran it with sudo
and all the setting icons showed up. What does that tell you?!– Sukima
Mar 5 at 17:52
Yeah well I ran it without
sudo
and only three of the setting icons showed up. I ran it with sudo
and all the setting icons showed up. What does that tell you?!– Sukima
Mar 5 at 17:52
add a comment |
up vote
2
down vote
I found a different solution...
I tried removing/installing
gnome-control-center
; this did reinstall the application I still couldn't open it.Later I found that it would start up on the side of the screen and I couldn't access it
I changed the display mode to single display and it came back. Hope it helps.
New contributor
add a comment |
up vote
2
down vote
I found a different solution...
I tried removing/installing
gnome-control-center
; this did reinstall the application I still couldn't open it.Later I found that it would start up on the side of the screen and I couldn't access it
I changed the display mode to single display and it came back. Hope it helps.
New contributor
add a comment |
up vote
2
down vote
up vote
2
down vote
I found a different solution...
I tried removing/installing
gnome-control-center
; this did reinstall the application I still couldn't open it.Later I found that it would start up on the side of the screen and I couldn't access it
I changed the display mode to single display and it came back. Hope it helps.
New contributor
I found a different solution...
I tried removing/installing
gnome-control-center
; this did reinstall the application I still couldn't open it.Later I found that it would start up on the side of the screen and I couldn't access it
I changed the display mode to single display and it came back. Hope it helps.
New contributor
edited Nov 23 at 19:09
Zanna
49.1k13123234
49.1k13123234
New contributor
answered Nov 23 at 17:54
Jaison
211
211
New contributor
New contributor
add a comment |
add a comment |
up vote
1
down vote
for folks stuck like me on lubuntu
to change the default disaply settings - lxrandr
is the command to adjust display settings.
add a comment |
up vote
1
down vote
for folks stuck like me on lubuntu
to change the default disaply settings - lxrandr
is the command to adjust display settings.
add a comment |
up vote
1
down vote
up vote
1
down vote
for folks stuck like me on lubuntu
to change the default disaply settings - lxrandr
is the command to adjust display settings.
for folks stuck like me on lubuntu
to change the default disaply settings - lxrandr
is the command to adjust display settings.
answered Oct 15 at 6:12
Anand Rockzz
1601211
1601211
add a comment |
add a comment |
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f116655%2fwhat-is-the-command-to-run-system-settings-from-a-terminal%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown