41

I have an HP Pavilion 14 inch laptop.

I recently upgraded from Ubuntu 17.04 to 17.10.

Everything went well, but when I boot up the system, my screen rotation was set to left.

Then I tried using xandr to rotate my screen, but my every effort failed.

Can anybody help me on the same?

pomsky
  • 70,557
tushar
  • 513

9 Answers9

40

Had the same issue. Seems like a bug. I disabled the screen rotation from task bar(top right) and it went to landscape mode. Just check if this works for you. Also, xrandr does not work on Wayland.

gsettings set org.gnome.settings-daemon.peripherals.touchscreen orientation-lock true

Additionally, the below command ought to disable the orientation plugin completely.

gsettings set org.gnome.settings-daemon.plugins.orientation active false

Also, gnome provides an option to rotate the screen from Settings -> Devices -> Displays -> Orientation setting (search for displays in 'Activities').

pomsky
  • 70,557
Legolas
  • 1,703
37

One of the easiest way that I found to fix this problem on Ubuntu 17.10:

enter image description here

pomsky
  • 70,557
14

Solution: If you're stuck, here's a solution that worked on a 2012 HP Envy 14":

sudo apt-get remove iio-sensor-proxy (UbuntuForums Source)

Then log out and log back in.

Caveat: orientation lock icon is gone from the menu bar and you can't use the gyroscope (if it even exists in your device) to change orientation but that's not a problem since you don't want orientation changes anyway :). If you ever want to re-enable the feature, reverse the process:

sudo apt-get install iio-sensor-proxy

Observations: The HP Envy did not respond to the gsettings changes suggested here. It also did not respond to physically rotating the laptop or tilting the screen. Orientation settings were also missing from the settings application.

For some reason the auto-rotate code gets triggered after it's been asleep and it's impossible to get it to return to normal without CLI intervention.

The laptop does not recognize orientation changes or tilting the lid so I'm not sure why the orientation (rotation) automatically changed in the first place.

4

Weirdly, I noted my screen changed orientation when I plugged in my DS4 (PS4) controller while Steam was running. The gyro in the controller flipped my screen. I had to turn the controller on its head to get the proper screen orientation and then locked the orientation via task bar icon.

This is not going to be a solution for everyone, but it solved my issue.

3

I am having the same issue on a HP pavilion 15 touchscreen (skylake).

There is no Orientation under Display!

While turning the laptop upside down and setting the orientation-lock true I got it back on track and it seems to stay there.

2

I just got this issue fixed. This is an option provided in ubuntu 17.10. You tilt the laptop/screen towards or away from you- the display will rotate. If you have accidentally rotated it, just tilt the laptop screen (physically) away or towards you to see the screen change. You can also tilt it sideways- and it will orient the display in another direction. You can permanently disable this feature by following the answer and the screenshot shown above by "hotheadhacker".

Nanditha
  • 141
1

On a Lenovo Miix 310 none of the Gnome settings changes made a permanent difference. After reboot, the screen would always be rotated 90 degrees to the left (in portrait mode).

What solved it for me was changing the 'accelerometer mounting matrix'.

This can be done by creating a file /etc/udev/hwdb.d/61-sensor-local.hwdb

With this content:

sensor:modalias:acpi:*KIOX000A*:dmi:*svn*LENOVO:*pn*80SG*
 ACCEL_MOUNT_MATRIX=0, 1, 0; 1, 0, 0; 0, 0, 1

After reboot your screen rotation should be fine.

Note: this is specific to the Miix 310. For other devices you'd need a different identifier and likely a different matrix.

More information: https://github.com/hadess/iio-sensor-proxy#accelerometer-orientation

smhg
  • 113
  • 6
0

Observed the same problem, and it seems I found the reason for it. Like mobiles, a change in orientation of screen is detected by laptop and accordingly it rotates the screen. Like someone above suggested, after disabling rotation, it didn't rotate!

Ibraheem
  • 63
  • 7
0

Workaround:

I had a similar experience with an HP-ProBook-450-G2 running Ubuntu 17.10. After restart or reboot the desktop was rotated 90* to the left. I was able to fix this temporarily by rotating the laptop upside down and then running the script to lock orientation. However I found a more stable workaround solution which has done the job for now.

In the end I followed these steps to resolve the issue:

1a. Rotated the laptop

1b. ran: 'gsettings set org.gnome.settings-daemon.peripherals.touchscreen orientation-lock true'

Outcome: Didn't fix the problem after reboot

  1. ran: 'gsettings set org.gnome.settings-daemon.plugins.orientation active false'

Outcome: Didn't fix the problem after reboot

  1. Restarted the computer and booted into an Xorg rather than Wayland session following these instructions:

https://itsfoss.com/switch-xorg-wayland/

Outcome: The screen was the correct orientation after login.

Hope this helps others!

LTD
  • 1