How to turn off screen rotation in Ubuntu 18.04 LTS?
In Ubuntu 17.04 there was 'Rotation' menu in Display tab. But now in new version of Ubuntu, there's still a Display tab but no more rotation menu. Now I can't turn that off again since I upgraded to 18.04 LTS.
18.04 screen gnome-shell display-rotation
add a comment |
In Ubuntu 17.04 there was 'Rotation' menu in Display tab. But now in new version of Ubuntu, there's still a Display tab but no more rotation menu. Now I can't turn that off again since I upgraded to 18.04 LTS.
18.04 screen gnome-shell display-rotation
add a comment |
In Ubuntu 17.04 there was 'Rotation' menu in Display tab. But now in new version of Ubuntu, there's still a Display tab but no more rotation menu. Now I can't turn that off again since I upgraded to 18.04 LTS.
18.04 screen gnome-shell display-rotation
In Ubuntu 17.04 there was 'Rotation' menu in Display tab. But now in new version of Ubuntu, there's still a Display tab but no more rotation menu. Now I can't turn that off again since I upgraded to 18.04 LTS.
18.04 screen gnome-shell display-rotation
18.04 screen gnome-shell display-rotation
edited Aug 21 '18 at 8:16
pomsky
29.2k1190116
29.2k1190116
asked May 12 '18 at 7:07
NeihPaine330NeihPaine330
121125
121125
add a comment |
add a comment |
6 Answers
6
active
oldest
votes
The best solution I have found so far is to use the icon that is available in the top right corner of the screen, when you click on the down arrow. The icon is the one in red in the screenshot below:
2
wow.. i had no clue what it was for until my display started rotating in bed
– sureshvv
Aug 14 '18 at 17:21
add a comment |
gsettings set org.gnome.settings-daemon.plugins.orientation active false
The above just worked for me. Seems the simplest solution
add a comment |
You may use the keyboard combination Super+O to toggle the rotation lock ON/OFF as described in @Sylvain's answer.
Note that Super is usually the key with Windows logo.
add a comment |
If you want to remove this feature then fire below commands :
Try this command to stop and disable
$ sudo systemctl stop iio-sensor-proxy.service
$ sudo systemctl disable iio-sensor-proxy.service
Try this command to remove
$ sudo apt-get remove iio-sensor-proxy
add a comment |
What do you mean "turn off screen rotation" ? Do you mean go back to normal orientation ?
Anyway, in the new gnome-control-center of gnome 3.28, in Devices > Screen Display tab, you can click on Orientation and a menu appears to let you choose between
- Landscape
- Portrait right
- Portrait left
- Landscape (flipped)
I guess this is what you want ?
add a comment |
Use the code below, it should turn screen rotation off:
gsettings set org.gnome.settings-daemon.peripherals.touchscreen orientation-lock true
gsettings set org.gnome.settings-daemon.plugins.orientation active false
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
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%2f1035209%2fhow-to-turn-off-screen-rotation-in-ubuntu-18-04-lts%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
6 Answers
6
active
oldest
votes
6 Answers
6
active
oldest
votes
active
oldest
votes
active
oldest
votes
The best solution I have found so far is to use the icon that is available in the top right corner of the screen, when you click on the down arrow. The icon is the one in red in the screenshot below:
2
wow.. i had no clue what it was for until my display started rotating in bed
– sureshvv
Aug 14 '18 at 17:21
add a comment |
The best solution I have found so far is to use the icon that is available in the top right corner of the screen, when you click on the down arrow. The icon is the one in red in the screenshot below:
2
wow.. i had no clue what it was for until my display started rotating in bed
– sureshvv
Aug 14 '18 at 17:21
add a comment |
The best solution I have found so far is to use the icon that is available in the top right corner of the screen, when you click on the down arrow. The icon is the one in red in the screenshot below:
The best solution I have found so far is to use the icon that is available in the top right corner of the screen, when you click on the down arrow. The icon is the one in red in the screenshot below:
edited Jul 11 '18 at 5:49
Stephen Rauch
1,1546716
1,1546716
answered May 15 '18 at 13:10
SylvainSylvain
45113
45113
2
wow.. i had no clue what it was for until my display started rotating in bed
– sureshvv
Aug 14 '18 at 17:21
add a comment |
2
wow.. i had no clue what it was for until my display started rotating in bed
– sureshvv
Aug 14 '18 at 17:21
2
2
wow.. i had no clue what it was for until my display started rotating in bed
– sureshvv
Aug 14 '18 at 17:21
wow.. i had no clue what it was for until my display started rotating in bed
– sureshvv
Aug 14 '18 at 17:21
add a comment |
gsettings set org.gnome.settings-daemon.plugins.orientation active false
The above just worked for me. Seems the simplest solution
add a comment |
gsettings set org.gnome.settings-daemon.plugins.orientation active false
The above just worked for me. Seems the simplest solution
add a comment |
gsettings set org.gnome.settings-daemon.plugins.orientation active false
The above just worked for me. Seems the simplest solution
gsettings set org.gnome.settings-daemon.plugins.orientation active false
The above just worked for me. Seems the simplest solution
answered Jul 11 '18 at 2:54
98cwitr98cwitr
6111
6111
add a comment |
add a comment |
You may use the keyboard combination Super+O to toggle the rotation lock ON/OFF as described in @Sylvain's answer.
Note that Super is usually the key with Windows logo.
add a comment |
You may use the keyboard combination Super+O to toggle the rotation lock ON/OFF as described in @Sylvain's answer.
Note that Super is usually the key with Windows logo.
add a comment |
You may use the keyboard combination Super+O to toggle the rotation lock ON/OFF as described in @Sylvain's answer.
Note that Super is usually the key with Windows logo.
You may use the keyboard combination Super+O to toggle the rotation lock ON/OFF as described in @Sylvain's answer.
Note that Super is usually the key with Windows logo.
answered Aug 21 '18 at 15:36
pomskypomsky
29.2k1190116
29.2k1190116
add a comment |
add a comment |
If you want to remove this feature then fire below commands :
Try this command to stop and disable
$ sudo systemctl stop iio-sensor-proxy.service
$ sudo systemctl disable iio-sensor-proxy.service
Try this command to remove
$ sudo apt-get remove iio-sensor-proxy
add a comment |
If you want to remove this feature then fire below commands :
Try this command to stop and disable
$ sudo systemctl stop iio-sensor-proxy.service
$ sudo systemctl disable iio-sensor-proxy.service
Try this command to remove
$ sudo apt-get remove iio-sensor-proxy
add a comment |
If you want to remove this feature then fire below commands :
Try this command to stop and disable
$ sudo systemctl stop iio-sensor-proxy.service
$ sudo systemctl disable iio-sensor-proxy.service
Try this command to remove
$ sudo apt-get remove iio-sensor-proxy
If you want to remove this feature then fire below commands :
Try this command to stop and disable
$ sudo systemctl stop iio-sensor-proxy.service
$ sudo systemctl disable iio-sensor-proxy.service
Try this command to remove
$ sudo apt-get remove iio-sensor-proxy
answered Jul 26 '18 at 12:05
shivang patelshivang patel
313
313
add a comment |
add a comment |
What do you mean "turn off screen rotation" ? Do you mean go back to normal orientation ?
Anyway, in the new gnome-control-center of gnome 3.28, in Devices > Screen Display tab, you can click on Orientation and a menu appears to let you choose between
- Landscape
- Portrait right
- Portrait left
- Landscape (flipped)
I guess this is what you want ?
add a comment |
What do you mean "turn off screen rotation" ? Do you mean go back to normal orientation ?
Anyway, in the new gnome-control-center of gnome 3.28, in Devices > Screen Display tab, you can click on Orientation and a menu appears to let you choose between
- Landscape
- Portrait right
- Portrait left
- Landscape (flipped)
I guess this is what you want ?
add a comment |
What do you mean "turn off screen rotation" ? Do you mean go back to normal orientation ?
Anyway, in the new gnome-control-center of gnome 3.28, in Devices > Screen Display tab, you can click on Orientation and a menu appears to let you choose between
- Landscape
- Portrait right
- Portrait left
- Landscape (flipped)
I guess this is what you want ?
What do you mean "turn off screen rotation" ? Do you mean go back to normal orientation ?
Anyway, in the new gnome-control-center of gnome 3.28, in Devices > Screen Display tab, you can click on Orientation and a menu appears to let you choose between
- Landscape
- Portrait right
- Portrait left
- Landscape (flipped)
I guess this is what you want ?
answered May 15 '18 at 13:35
solsTiCesolsTiCe
5,97422048
5,97422048
add a comment |
add a comment |
Use the code below, it should turn screen rotation off:
gsettings set org.gnome.settings-daemon.peripherals.touchscreen orientation-lock true
gsettings set org.gnome.settings-daemon.plugins.orientation active false
add a comment |
Use the code below, it should turn screen rotation off:
gsettings set org.gnome.settings-daemon.peripherals.touchscreen orientation-lock true
gsettings set org.gnome.settings-daemon.plugins.orientation active false
add a comment |
Use the code below, it should turn screen rotation off:
gsettings set org.gnome.settings-daemon.peripherals.touchscreen orientation-lock true
gsettings set org.gnome.settings-daemon.plugins.orientation active false
Use the code below, it should turn screen rotation off:
gsettings set org.gnome.settings-daemon.peripherals.touchscreen orientation-lock true
gsettings set org.gnome.settings-daemon.plugins.orientation active false
edited Jan 2 at 22:11
DCPY
1033
1033
answered Dec 10 '18 at 7:19
Vaishal DhirVaishal Dhir
1
1
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
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%2f1035209%2fhow-to-turn-off-screen-rotation-in-ubuntu-18-04-lts%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