AMD RX480 Screen flicker after update to 18.04
up vote
7
down vote
favorite
As mentioned in the title. Was upgrading from 17.10. Having this screen flickering.
My GPU is AMD RX480
What I did:
- Search for similar issues for 18.04, can't find any
- Perform fresh install. Still the same.
Please help. It is very annoying. I can't work.
18.04 flicker
add a comment |Â
up vote
7
down vote
favorite
As mentioned in the title. Was upgrading from 17.10. Having this screen flickering.
My GPU is AMD RX480
What I did:
- Search for similar issues for 18.04, can't find any
- Perform fresh install. Still the same.
Please help. It is very annoying. I can't work.
18.04 flicker
add a comment |Â
up vote
7
down vote
favorite
up vote
7
down vote
favorite
As mentioned in the title. Was upgrading from 17.10. Having this screen flickering.
My GPU is AMD RX480
What I did:
- Search for similar issues for 18.04, can't find any
- Perform fresh install. Still the same.
Please help. It is very annoying. I can't work.
18.04 flicker
As mentioned in the title. Was upgrading from 17.10. Having this screen flickering.
My GPU is AMD RX480
What I did:
- Search for similar issues for 18.04, can't find any
- Perform fresh install. Still the same.
Please help. It is very annoying. I can't work.
18.04 flicker
edited May 5 at 3:00
WinEunuuchs2Unix
35.4k758132
35.4k758132
asked Apr 29 at 3:52
nschong
93210
93210
add a comment |Â
add a comment |Â
6 Answers
6
active
oldest
votes
up vote
5
down vote
accepted
I solved it myself by using amdgpu.dc=0
as a boot parameter.
To do this, edit the file /etc/default/grub
, for example using
sudoedit /etc/default/grub
Find the line beginning GRUB_CMDLINE_LINUX_DEFAULT
and add the text amdgpu.dc=0
between the double quotes (""
). Leave any other parameters as they are. For example, you may end up with a line like this:
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash amdgpu.dc=0"
Save the file and exit, and then run
sudo update-grub
to write the configuration, and reboot.
Getting a black screen, answer doesn't work any more?
â Gabor
May 9 at 2:17
I had this problem and your solution worked! +1
â I. Renk
May 17 at 19:20
add a comment |Â
up vote
1
down vote
I've no answer here, but some observation and confirmation of problem. If someone finds this text: please stick to ubuntu 17.10 if you have radeon rx 580 (may be 480 and vegas)
Got myself to very same situation with 18.04 (upgrade, then fresh install). Amd rx 580 here, kernel 4.15.0-20.
What did not help:
- fresh install after upgrade
oibaf drivers
M-Bab custom kernel
4.17-rc3 kernel from main line ppa.- amdgpu.dc=1 as boot parameter (/etc/default/grub)
Update:
Apparently older kernel works. I've been tinkering with other distibutions and found that kernel 4.15.14 works for rx 580, you may want to try it from mainline ppa.
Hi, try amdgpu.dc=0. It solves the problem.
â nschong
May 5 at 1:57
Kernel4.15
is no longer maintained by Linux Kernel developers. You can also try the4.14
chain from the same mainline PPA. It is maintained for 5 or 6 years. I'm using4.14.34
myself as4.14.36
and4.14.37
had symbolic link bugs which prevented installing.
â WinEunuuchs2Unix
May 12 at 22:31
add a comment |Â
up vote
1
down vote
I have screen flickering problem when I'm connecting my laptop to my TV. I found that when I change the refresh rate from 60Hz to 59Hz this problem disappear.
Within Xorg (as I know 18.04 uses it by default) you can change the refresh rate by the help of xrandr
:
0. First you must find the video output name to which you should assing the new mode. Just type xrandr
and investigate which one is it. In my case this is HDMI-1
.
1. Generate new modeline using cvt
:
$ cvt 1920 1080 59
# 1920x1080 58.94 Hz (CVT) hsync: 66.02 kHz; pclk: 169.00 MHz
Modeline "1920x1080_59.00" 169.00 1920 2040 2240 2560 1080 1083 1088 1120 -hsync +vsync
1920
and1080
are the horizontal and vertical resolution's values.59
is the value of the refresh rate.
2. Create the new mode:
xrandr --newmode 1920x1080_59.00 169.00 1920 2040 2240 2560 1080 1083 1088 1120 -hsync +vsync
3. Assign the new mode to the video output:
xrandr --addmode HDMI-1 1920x1080_59.00
4. Activate the new mode:
xrandr --output HDMI-1 --mode 1920x1080_59.00
If the above works and the problem disappear, you should find a proper way to add and set this mode at the system startup. Here are few references about that:
- How can I make
xrandr
customization permanent? - Adding newmode with Xrandr - "800x480_60.00"
- start up command
- Differences how to run scripts at startup
add a comment |Â
up vote
0
down vote
Turn off the automatic brightness control to fix this.
add a comment |Â
up vote
0
down vote
I faced a similar problem,I wasn't able to log in with the graphical mode at all, I solved it by :
1- enter to tty mode (ctrl+alt+f5, en my case)
2- adding open grafic Drivers (https://launchpad.net/~oibaf/+archive/ubuntu/graphics-drivers):
sudo add-apt-repository ppa:oibaf/graphics-drivers
sudo apt-get update
3- reboot
4- enter into tty mode again
5-
sudo apt update && sudo apt full-upgrade
6- reboot and it works fine!!
hope it helps.
Thank you very much @Hassan for sharing the instructions. In my case I cannot get into the tty. Just to make sure, where do you ctrl+alt+f5? Does your computer have a fn key?
â Delosari
Jul 14 at 23:01
add a comment |Â
up vote
0
down vote
Just got 4.19-rc1 kernel installed and flickering is completly gone, no need to restart PC no other magic - it works out of the box.
I'm using Arch now, but believe ubuntu's mainline kernel going to provide same experience. http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.19-rc1/
add a comment |Â
6 Answers
6
active
oldest
votes
6 Answers
6
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
5
down vote
accepted
I solved it myself by using amdgpu.dc=0
as a boot parameter.
To do this, edit the file /etc/default/grub
, for example using
sudoedit /etc/default/grub
Find the line beginning GRUB_CMDLINE_LINUX_DEFAULT
and add the text amdgpu.dc=0
between the double quotes (""
). Leave any other parameters as they are. For example, you may end up with a line like this:
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash amdgpu.dc=0"
Save the file and exit, and then run
sudo update-grub
to write the configuration, and reboot.
Getting a black screen, answer doesn't work any more?
â Gabor
May 9 at 2:17
I had this problem and your solution worked! +1
â I. Renk
May 17 at 19:20
add a comment |Â
up vote
5
down vote
accepted
I solved it myself by using amdgpu.dc=0
as a boot parameter.
To do this, edit the file /etc/default/grub
, for example using
sudoedit /etc/default/grub
Find the line beginning GRUB_CMDLINE_LINUX_DEFAULT
and add the text amdgpu.dc=0
between the double quotes (""
). Leave any other parameters as they are. For example, you may end up with a line like this:
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash amdgpu.dc=0"
Save the file and exit, and then run
sudo update-grub
to write the configuration, and reboot.
Getting a black screen, answer doesn't work any more?
â Gabor
May 9 at 2:17
I had this problem and your solution worked! +1
â I. Renk
May 17 at 19:20
add a comment |Â
up vote
5
down vote
accepted
up vote
5
down vote
accepted
I solved it myself by using amdgpu.dc=0
as a boot parameter.
To do this, edit the file /etc/default/grub
, for example using
sudoedit /etc/default/grub
Find the line beginning GRUB_CMDLINE_LINUX_DEFAULT
and add the text amdgpu.dc=0
between the double quotes (""
). Leave any other parameters as they are. For example, you may end up with a line like this:
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash amdgpu.dc=0"
Save the file and exit, and then run
sudo update-grub
to write the configuration, and reboot.
I solved it myself by using amdgpu.dc=0
as a boot parameter.
To do this, edit the file /etc/default/grub
, for example using
sudoedit /etc/default/grub
Find the line beginning GRUB_CMDLINE_LINUX_DEFAULT
and add the text amdgpu.dc=0
between the double quotes (""
). Leave any other parameters as they are. For example, you may end up with a line like this:
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash amdgpu.dc=0"
Save the file and exit, and then run
sudo update-grub
to write the configuration, and reboot.
edited May 5 at 16:41
Zanna
47.9k13119227
47.9k13119227
answered May 5 at 1:55
nschong
93210
93210
Getting a black screen, answer doesn't work any more?
â Gabor
May 9 at 2:17
I had this problem and your solution worked! +1
â I. Renk
May 17 at 19:20
add a comment |Â
Getting a black screen, answer doesn't work any more?
â Gabor
May 9 at 2:17
I had this problem and your solution worked! +1
â I. Renk
May 17 at 19:20
Getting a black screen, answer doesn't work any more?
â Gabor
May 9 at 2:17
Getting a black screen, answer doesn't work any more?
â Gabor
May 9 at 2:17
I had this problem and your solution worked! +1
â I. Renk
May 17 at 19:20
I had this problem and your solution worked! +1
â I. Renk
May 17 at 19:20
add a comment |Â
up vote
1
down vote
I've no answer here, but some observation and confirmation of problem. If someone finds this text: please stick to ubuntu 17.10 if you have radeon rx 580 (may be 480 and vegas)
Got myself to very same situation with 18.04 (upgrade, then fresh install). Amd rx 580 here, kernel 4.15.0-20.
What did not help:
- fresh install after upgrade
oibaf drivers
M-Bab custom kernel
4.17-rc3 kernel from main line ppa.- amdgpu.dc=1 as boot parameter (/etc/default/grub)
Update:
Apparently older kernel works. I've been tinkering with other distibutions and found that kernel 4.15.14 works for rx 580, you may want to try it from mainline ppa.
Hi, try amdgpu.dc=0. It solves the problem.
â nschong
May 5 at 1:57
Kernel4.15
is no longer maintained by Linux Kernel developers. You can also try the4.14
chain from the same mainline PPA. It is maintained for 5 or 6 years. I'm using4.14.34
myself as4.14.36
and4.14.37
had symbolic link bugs which prevented installing.
â WinEunuuchs2Unix
May 12 at 22:31
add a comment |Â
up vote
1
down vote
I've no answer here, but some observation and confirmation of problem. If someone finds this text: please stick to ubuntu 17.10 if you have radeon rx 580 (may be 480 and vegas)
Got myself to very same situation with 18.04 (upgrade, then fresh install). Amd rx 580 here, kernel 4.15.0-20.
What did not help:
- fresh install after upgrade
oibaf drivers
M-Bab custom kernel
4.17-rc3 kernel from main line ppa.- amdgpu.dc=1 as boot parameter (/etc/default/grub)
Update:
Apparently older kernel works. I've been tinkering with other distibutions and found that kernel 4.15.14 works for rx 580, you may want to try it from mainline ppa.
Hi, try amdgpu.dc=0. It solves the problem.
â nschong
May 5 at 1:57
Kernel4.15
is no longer maintained by Linux Kernel developers. You can also try the4.14
chain from the same mainline PPA. It is maintained for 5 or 6 years. I'm using4.14.34
myself as4.14.36
and4.14.37
had symbolic link bugs which prevented installing.
â WinEunuuchs2Unix
May 12 at 22:31
add a comment |Â
up vote
1
down vote
up vote
1
down vote
I've no answer here, but some observation and confirmation of problem. If someone finds this text: please stick to ubuntu 17.10 if you have radeon rx 580 (may be 480 and vegas)
Got myself to very same situation with 18.04 (upgrade, then fresh install). Amd rx 580 here, kernel 4.15.0-20.
What did not help:
- fresh install after upgrade
oibaf drivers
M-Bab custom kernel
4.17-rc3 kernel from main line ppa.- amdgpu.dc=1 as boot parameter (/etc/default/grub)
Update:
Apparently older kernel works. I've been tinkering with other distibutions and found that kernel 4.15.14 works for rx 580, you may want to try it from mainline ppa.
I've no answer here, but some observation and confirmation of problem. If someone finds this text: please stick to ubuntu 17.10 if you have radeon rx 580 (may be 480 and vegas)
Got myself to very same situation with 18.04 (upgrade, then fresh install). Amd rx 580 here, kernel 4.15.0-20.
What did not help:
- fresh install after upgrade
oibaf drivers
M-Bab custom kernel
4.17-rc3 kernel from main line ppa.- amdgpu.dc=1 as boot parameter (/etc/default/grub)
Update:
Apparently older kernel works. I've been tinkering with other distibutions and found that kernel 4.15.14 works for rx 580, you may want to try it from mainline ppa.
edited May 1 at 14:57
answered May 1 at 7:29
Lauri
463
463
Hi, try amdgpu.dc=0. It solves the problem.
â nschong
May 5 at 1:57
Kernel4.15
is no longer maintained by Linux Kernel developers. You can also try the4.14
chain from the same mainline PPA. It is maintained for 5 or 6 years. I'm using4.14.34
myself as4.14.36
and4.14.37
had symbolic link bugs which prevented installing.
â WinEunuuchs2Unix
May 12 at 22:31
add a comment |Â
Hi, try amdgpu.dc=0. It solves the problem.
â nschong
May 5 at 1:57
Kernel4.15
is no longer maintained by Linux Kernel developers. You can also try the4.14
chain from the same mainline PPA. It is maintained for 5 or 6 years. I'm using4.14.34
myself as4.14.36
and4.14.37
had symbolic link bugs which prevented installing.
â WinEunuuchs2Unix
May 12 at 22:31
Hi, try amdgpu.dc=0. It solves the problem.
â nschong
May 5 at 1:57
Hi, try amdgpu.dc=0. It solves the problem.
â nschong
May 5 at 1:57
Kernel
4.15
is no longer maintained by Linux Kernel developers. You can also try the 4.14
chain from the same mainline PPA. It is maintained for 5 or 6 years. I'm using 4.14.34
myself as 4.14.36
and 4.14.37
had symbolic link bugs which prevented installing.â WinEunuuchs2Unix
May 12 at 22:31
Kernel
4.15
is no longer maintained by Linux Kernel developers. You can also try the 4.14
chain from the same mainline PPA. It is maintained for 5 or 6 years. I'm using 4.14.34
myself as 4.14.36
and 4.14.37
had symbolic link bugs which prevented installing.â WinEunuuchs2Unix
May 12 at 22:31
add a comment |Â
up vote
1
down vote
I have screen flickering problem when I'm connecting my laptop to my TV. I found that when I change the refresh rate from 60Hz to 59Hz this problem disappear.
Within Xorg (as I know 18.04 uses it by default) you can change the refresh rate by the help of xrandr
:
0. First you must find the video output name to which you should assing the new mode. Just type xrandr
and investigate which one is it. In my case this is HDMI-1
.
1. Generate new modeline using cvt
:
$ cvt 1920 1080 59
# 1920x1080 58.94 Hz (CVT) hsync: 66.02 kHz; pclk: 169.00 MHz
Modeline "1920x1080_59.00" 169.00 1920 2040 2240 2560 1080 1083 1088 1120 -hsync +vsync
1920
and1080
are the horizontal and vertical resolution's values.59
is the value of the refresh rate.
2. Create the new mode:
xrandr --newmode 1920x1080_59.00 169.00 1920 2040 2240 2560 1080 1083 1088 1120 -hsync +vsync
3. Assign the new mode to the video output:
xrandr --addmode HDMI-1 1920x1080_59.00
4. Activate the new mode:
xrandr --output HDMI-1 --mode 1920x1080_59.00
If the above works and the problem disappear, you should find a proper way to add and set this mode at the system startup. Here are few references about that:
- How can I make
xrandr
customization permanent? - Adding newmode with Xrandr - "800x480_60.00"
- start up command
- Differences how to run scripts at startup
add a comment |Â
up vote
1
down vote
I have screen flickering problem when I'm connecting my laptop to my TV. I found that when I change the refresh rate from 60Hz to 59Hz this problem disappear.
Within Xorg (as I know 18.04 uses it by default) you can change the refresh rate by the help of xrandr
:
0. First you must find the video output name to which you should assing the new mode. Just type xrandr
and investigate which one is it. In my case this is HDMI-1
.
1. Generate new modeline using cvt
:
$ cvt 1920 1080 59
# 1920x1080 58.94 Hz (CVT) hsync: 66.02 kHz; pclk: 169.00 MHz
Modeline "1920x1080_59.00" 169.00 1920 2040 2240 2560 1080 1083 1088 1120 -hsync +vsync
1920
and1080
are the horizontal and vertical resolution's values.59
is the value of the refresh rate.
2. Create the new mode:
xrandr --newmode 1920x1080_59.00 169.00 1920 2040 2240 2560 1080 1083 1088 1120 -hsync +vsync
3. Assign the new mode to the video output:
xrandr --addmode HDMI-1 1920x1080_59.00
4. Activate the new mode:
xrandr --output HDMI-1 --mode 1920x1080_59.00
If the above works and the problem disappear, you should find a proper way to add and set this mode at the system startup. Here are few references about that:
- How can I make
xrandr
customization permanent? - Adding newmode with Xrandr - "800x480_60.00"
- start up command
- Differences how to run scripts at startup
add a comment |Â
up vote
1
down vote
up vote
1
down vote
I have screen flickering problem when I'm connecting my laptop to my TV. I found that when I change the refresh rate from 60Hz to 59Hz this problem disappear.
Within Xorg (as I know 18.04 uses it by default) you can change the refresh rate by the help of xrandr
:
0. First you must find the video output name to which you should assing the new mode. Just type xrandr
and investigate which one is it. In my case this is HDMI-1
.
1. Generate new modeline using cvt
:
$ cvt 1920 1080 59
# 1920x1080 58.94 Hz (CVT) hsync: 66.02 kHz; pclk: 169.00 MHz
Modeline "1920x1080_59.00" 169.00 1920 2040 2240 2560 1080 1083 1088 1120 -hsync +vsync
1920
and1080
are the horizontal and vertical resolution's values.59
is the value of the refresh rate.
2. Create the new mode:
xrandr --newmode 1920x1080_59.00 169.00 1920 2040 2240 2560 1080 1083 1088 1120 -hsync +vsync
3. Assign the new mode to the video output:
xrandr --addmode HDMI-1 1920x1080_59.00
4. Activate the new mode:
xrandr --output HDMI-1 --mode 1920x1080_59.00
If the above works and the problem disappear, you should find a proper way to add and set this mode at the system startup. Here are few references about that:
- How can I make
xrandr
customization permanent? - Adding newmode with Xrandr - "800x480_60.00"
- start up command
- Differences how to run scripts at startup
I have screen flickering problem when I'm connecting my laptop to my TV. I found that when I change the refresh rate from 60Hz to 59Hz this problem disappear.
Within Xorg (as I know 18.04 uses it by default) you can change the refresh rate by the help of xrandr
:
0. First you must find the video output name to which you should assing the new mode. Just type xrandr
and investigate which one is it. In my case this is HDMI-1
.
1. Generate new modeline using cvt
:
$ cvt 1920 1080 59
# 1920x1080 58.94 Hz (CVT) hsync: 66.02 kHz; pclk: 169.00 MHz
Modeline "1920x1080_59.00" 169.00 1920 2040 2240 2560 1080 1083 1088 1120 -hsync +vsync
1920
and1080
are the horizontal and vertical resolution's values.59
is the value of the refresh rate.
2. Create the new mode:
xrandr --newmode 1920x1080_59.00 169.00 1920 2040 2240 2560 1080 1083 1088 1120 -hsync +vsync
3. Assign the new mode to the video output:
xrandr --addmode HDMI-1 1920x1080_59.00
4. Activate the new mode:
xrandr --output HDMI-1 --mode 1920x1080_59.00
If the above works and the problem disappear, you should find a proper way to add and set this mode at the system startup. Here are few references about that:
- How can I make
xrandr
customization permanent? - Adding newmode with Xrandr - "800x480_60.00"
- start up command
- Differences how to run scripts at startup
edited Jun 3 at 5:16
user3563396
31
31
answered May 3 at 4:50
pa4080
12k52255
12k52255
add a comment |Â
add a comment |Â
up vote
0
down vote
Turn off the automatic brightness control to fix this.
add a comment |Â
up vote
0
down vote
Turn off the automatic brightness control to fix this.
add a comment |Â
up vote
0
down vote
up vote
0
down vote
Turn off the automatic brightness control to fix this.
Turn off the automatic brightness control to fix this.
edited May 3 at 3:46
ubashu
2,23721736
2,23721736
answered May 3 at 3:27
forwindie
1
1
add a comment |Â
add a comment |Â
up vote
0
down vote
I faced a similar problem,I wasn't able to log in with the graphical mode at all, I solved it by :
1- enter to tty mode (ctrl+alt+f5, en my case)
2- adding open grafic Drivers (https://launchpad.net/~oibaf/+archive/ubuntu/graphics-drivers):
sudo add-apt-repository ppa:oibaf/graphics-drivers
sudo apt-get update
3- reboot
4- enter into tty mode again
5-
sudo apt update && sudo apt full-upgrade
6- reboot and it works fine!!
hope it helps.
Thank you very much @Hassan for sharing the instructions. In my case I cannot get into the tty. Just to make sure, where do you ctrl+alt+f5? Does your computer have a fn key?
â Delosari
Jul 14 at 23:01
add a comment |Â
up vote
0
down vote
I faced a similar problem,I wasn't able to log in with the graphical mode at all, I solved it by :
1- enter to tty mode (ctrl+alt+f5, en my case)
2- adding open grafic Drivers (https://launchpad.net/~oibaf/+archive/ubuntu/graphics-drivers):
sudo add-apt-repository ppa:oibaf/graphics-drivers
sudo apt-get update
3- reboot
4- enter into tty mode again
5-
sudo apt update && sudo apt full-upgrade
6- reboot and it works fine!!
hope it helps.
Thank you very much @Hassan for sharing the instructions. In my case I cannot get into the tty. Just to make sure, where do you ctrl+alt+f5? Does your computer have a fn key?
â Delosari
Jul 14 at 23:01
add a comment |Â
up vote
0
down vote
up vote
0
down vote
I faced a similar problem,I wasn't able to log in with the graphical mode at all, I solved it by :
1- enter to tty mode (ctrl+alt+f5, en my case)
2- adding open grafic Drivers (https://launchpad.net/~oibaf/+archive/ubuntu/graphics-drivers):
sudo add-apt-repository ppa:oibaf/graphics-drivers
sudo apt-get update
3- reboot
4- enter into tty mode again
5-
sudo apt update && sudo apt full-upgrade
6- reboot and it works fine!!
hope it helps.
I faced a similar problem,I wasn't able to log in with the graphical mode at all, I solved it by :
1- enter to tty mode (ctrl+alt+f5, en my case)
2- adding open grafic Drivers (https://launchpad.net/~oibaf/+archive/ubuntu/graphics-drivers):
sudo add-apt-repository ppa:oibaf/graphics-drivers
sudo apt-get update
3- reboot
4- enter into tty mode again
5-
sudo apt update && sudo apt full-upgrade
6- reboot and it works fine!!
hope it helps.
edited May 12 at 22:19
answered May 12 at 22:11
Hassan
12
12
Thank you very much @Hassan for sharing the instructions. In my case I cannot get into the tty. Just to make sure, where do you ctrl+alt+f5? Does your computer have a fn key?
â Delosari
Jul 14 at 23:01
add a comment |Â
Thank you very much @Hassan for sharing the instructions. In my case I cannot get into the tty. Just to make sure, where do you ctrl+alt+f5? Does your computer have a fn key?
â Delosari
Jul 14 at 23:01
Thank you very much @Hassan for sharing the instructions. In my case I cannot get into the tty. Just to make sure, where do you ctrl+alt+f5? Does your computer have a fn key?
â Delosari
Jul 14 at 23:01
Thank you very much @Hassan for sharing the instructions. In my case I cannot get into the tty. Just to make sure, where do you ctrl+alt+f5? Does your computer have a fn key?
â Delosari
Jul 14 at 23:01
add a comment |Â
up vote
0
down vote
Just got 4.19-rc1 kernel installed and flickering is completly gone, no need to restart PC no other magic - it works out of the box.
I'm using Arch now, but believe ubuntu's mainline kernel going to provide same experience. http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.19-rc1/
add a comment |Â
up vote
0
down vote
Just got 4.19-rc1 kernel installed and flickering is completly gone, no need to restart PC no other magic - it works out of the box.
I'm using Arch now, but believe ubuntu's mainline kernel going to provide same experience. http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.19-rc1/
add a comment |Â
up vote
0
down vote
up vote
0
down vote
Just got 4.19-rc1 kernel installed and flickering is completly gone, no need to restart PC no other magic - it works out of the box.
I'm using Arch now, but believe ubuntu's mainline kernel going to provide same experience. http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.19-rc1/
Just got 4.19-rc1 kernel installed and flickering is completly gone, no need to restart PC no other magic - it works out of the box.
I'm using Arch now, but believe ubuntu's mainline kernel going to provide same experience. http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.19-rc1/
answered Aug 29 at 7:10
Lauri
463
463
add a comment |Â
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1029517%2famd-rx480-screen-flicker-after-update-to-18-04%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
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