LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Debian
User Name
Password
Debian This forum is for the discussion of Debian Linux.

Notices


Reply
  Search this Thread
Old 01-10-2021, 02:32 PM   #1
ThatGuyNewt
LQ Newbie
 
Registered: Jan 2021
Location: 7h3w1r3
Distribution: Debian
Posts: 5

Rep: Reputation: Disabled
Question Screen Distortion On xfce


This is my first time installing Debian, Iv encountered a screen distortion when I login after screen lock.

Im a little new to Linux please help.

Images of the distortion :: https://www.reddit.com/r/debian/comm...talled_debian/
 
Old 01-11-2021, 05:41 AM   #2
heathcliff36
Member
 
Registered: Jun 2019
Location: West Coast, USA
Distribution: Debian
Posts: 90

Rep: Reputation: Disabled
Quote:
Originally Posted by ThatGuyNewt View Post
This is my first time installing Debian, Iv encountered a screen distortion when I login after screen lock.

Im a little new to Linux please help.

Images of the distortion :: https://www.reddit.com/r/debian/comm...talled_debian/
This is probably a driver issue.
What CPU and GPU is on your computer?
 
Old 01-11-2021, 02:46 PM   #3
Brains
Senior Member
 
Registered: Apr 2009
Distribution: All OS except Apple
Posts: 1,591

Rep: Reputation: 389Reputation: 389Reputation: 389Reputation: 389
It appears the resolution is down to 800x600 or something.
That's what my Debian looked like the other day after I upgraded the Motherboard firmware. Upgrading the firmware reset all settings to default including enabling Secure Boot. Perhaps you need to disable Secure Boot in computer settings or boot with the other Debian entry. In my computer's boot menu, I have two entries for Debian, one for Secure boot disabled and one for enabled.
 
Old 01-14-2021, 09:38 PM   #4
ThatGuyNewt
LQ Newbie
 
Registered: Jan 2021
Location: 7h3w1r3
Distribution: Debian
Posts: 5

Original Poster
Rep: Reputation: Disabled
Post

Quote:
Originally Posted by heathcliff36 View Post
This is probably a driver issue.
What CPU and GPU is on your computer?

CPU: Dual Core AMD Turion II Mobile M500 (-MCP-)

I ran inxi -G and got this::

Code:
Device-1: Advanced Micro Devices [AMD/ATI] RS880M [Mobility Radeon HD 4100] driver: N/A 
           Display: x11 server: X.Org 1.20.4 driver: ati,vesa unloaded: fbdev,modesetting,radeon 
           resolution: 1152x864~N/A 
           OpenGL: renderer: llvmpipe (LLVM 7.0 128 bits) v: 3.3 Mesa 18.3.6
 
Old 01-15-2021, 06:10 AM   #5
heathcliff36
Member
 
Registered: Jun 2019
Location: West Coast, USA
Distribution: Debian
Posts: 90

Rep: Reputation: Disabled
Quote:
Originally Posted by ThatGuyNewt View Post
CPU: Dual Core AMD Turion II Mobile M500 (-MCP-)

I ran inxi -G and got this::

Code:
Device-1: Advanced Micro Devices [AMD/ATI] RS880M [Mobility Radeon HD 4100] driver: N/A 
           Display: x11 server: X.Org 1.20.4 driver: ati,vesa unloaded: fbdev,modesetting,radeon 
           resolution: 1152x864~N/A 
           OpenGL: renderer: llvmpipe (LLVM 7.0 128 bits) v: 3.3 Mesa 18.3.6
Since it's an AMD cpu - it's likely your OS will need non-free firmware installed onto it.

What is the output of:
Code:
dmesg | fgrep direct-loading
This will show if firmware files have loaded or failed to load.
 
Old 01-15-2021, 07:56 PM   #6
ThatGuyNewt
LQ Newbie
 
Registered: Jan 2021
Location: 7h3w1r3
Distribution: Debian
Posts: 5

Original Poster
Rep: Reputation: Disabled
Post

Quote:
Originally Posted by heathcliff36 View Post
Since it's an AMD cpu - it's likely your OS will need non-free firmware installed onto it.

What is the output of:
Code:
dmesg | fgrep direct-loading
This will show if firmware files have loaded or failed to load.
Ran it and got this::
Code:
 [   13.806314] usb 1-2: firmware: direct-loading firmware carl9170-1.fw
Also I tried to add the non-free source to my sorces.list text file but I cant edit it without root and when i run su su my system passphrase dosent work.

am i just dumb??
 
Old 01-16-2021, 04:04 AM   #7
ondoho
LQ Addict
 
Registered: Dec 2013
Posts: 19,872
Blog Entries: 12

Rep: Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053
You're going to have to take a closer look at dmesg.
Try this:
Code:
dmesg|grep -iE 'direct-loading|firmware|amd|radeon|unloaded'
 
Old 01-19-2021, 11:50 AM   #8
heathcliff36
Member
 
Registered: Jun 2019
Location: West Coast, USA
Distribution: Debian
Posts: 90

Rep: Reputation: Disabled
Quote:
Originally Posted by ThatGuyNewt View Post
Ran it and got this::
Code:
 [   13.806314] usb 1-2: firmware: direct-loading firmware carl9170-1.fw
The output seems to be usb-related and shows no problems with loading the firmware

Quote:
Also I tried to add the non-free source to my sorces.list text file but I cant edit it without root and when i run su su my system passphrase dosent work.
I don't think you need to bother with changing /etc/apt/sources.list.
This is because your machine seems to be able to run a 'pure' version of Debian 10 - even if you do have an AMD cpu.

If you do want to make changes to /etc/apt/sources.list, then open a text editor as root.
For example:
Code:
su
Hit enter and input your root password.
I always use gedit so:
Code:
gedit /etc/apt/sources.list
This will open your sources.list file on gedit.
Make your necessary changes, press save and close gedit.

I don't think you have a driver issue.
Why does your pic show package aptitude from the debian page?
This package comes pre-installed with Debian.

What desktop environment are you using?
Consider changing the desktop environment on the initial debian login menu - and see if that makes a difference.
Also refer to ondoho's post.
 
1 members found this post helpful.
Old 01-19-2021, 03:42 PM   #9
ThatGuyNewt
LQ Newbie
 
Registered: Jan 2021
Location: 7h3w1r3
Distribution: Debian
Posts: 5

Original Poster
Rep: Reputation: Disabled
Thumbs up

Quote:
Originally Posted by heathcliff36 View Post
I don't think you have a driver issue.
Why does your pic show package aptitude from the debian page?
This package comes pre-installed with Debian.

What desktop environment are you using?
Consider changing the desktop environment on the initial debian login menu - and see if that makes a difference.
Also refer to ondoho's post.
I Belive i was just exploreing the Debian site at the time to learn about the os.

Im useing xfc as my environment.

Also i seem to recall some one saying some where that my system is loading from my cpu? whats THAT mean?

I I used you advice and can now use nano to edit my sources, Thank You
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Issues with Ubuntu13.04: screen distortion at booting and long booting time! ravisingh1 Ubuntu 2 08-19-2013 04:44 AM
[SOLVED] Nvidia screen distortion psionl0 Slackware 26 08-20-2011 03:44 AM
Screen distortion during install and now login CelticZero Ubuntu 2 12-11-2009 05:05 PM
Screen distortion on 17" Monitor, Fedora Core 6 SinofEnvy Linux - Hardware 3 12-13-2007 12:56 PM
Half life screen distortion? virii Linux - Games 3 08-22-2004 02:15 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Debian

All times are GMT -5. The time now is 12:07 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration