1

I have a DELL Vostro 1000 old notebook.

It is very slow to use but still usable, could be because of 1.8GB RAM or some video difficulty, or because the 1GB swap is usually 50%+ filled up.

But the real problem is the screen only refreshing where the mouse is over and only if there is something activetable there, like a link or a button, otherwise it wont update, quite difficult to use.

specs inxi -SG -! 31

System:    Kernel: 4.15.0-51-generic x86_64 bits: 64 Desktop: Gnome 3.28.3 Distro: Ubuntu 18.04.2 LTS
Graphics:  Card: Advanced Micro Devices [AMD/ATI] RS482M [Mobility Radeon Xpress 200]
           Display Server: x11 (X.Org 1.19.6 ) drivers: fbdev,ati (unloaded: modesetting,vesa,radeon)
           Resolution: 1024x768@76.00hz
           OpenGL: renderer: llvmpipe (LLVM 7.0, 128 bits) version: 3.3 Mesa 18.2.8

The problem I have (inside every window) is not the same I saw or read at:

2 Answers2

1

Currently I added xrefresh (from x11-xserver-utils) to startup apps:

bash -c 'while true;do xrefresh;sleep 1;done'

and the notebook is at least usable now.

Pablo Bianchi
  • 15,657
  • I disabled this as latest ubuntu updates apparently fixed the problem, in a sense that this is slower (and also had some glitches) than the fixed OS/Xorg. – Aquarius Power Dec 10 '19 at 19:37
  • This works on Ubuntu 22.04 with a DELL D-3100 Docking Station with 2 HDMI attached. Using the nVidia HDMI output makes the D-3100 screens to freeze and makes impossible to work unless you keep the mouse in movement. Anyway I had to change the delay to sleep 0.1 in order to have a better feeling. Thanks for this partial solution. – Geppettvs D'Constanzo Apr 24 '23 at 13:48
1

You have a general problem with your hardware acceleration on your system.

OpenGL: renderer: llvmpipe (LLVM 7.0, 128 bits) version: 3.3 Mesa 18.2.8

That means software rendering.

(unloaded: modesetting,vesa,radeon)

The radeon module is unloaded.

Make sure xserver-xorg-video-radeon is on your system. This should be the case.

Make sure that no kernel boot parameter like nomodeset or vag=something is active.

Create /etc/X11/xorg.conf.d/20-radeon.conf.

Section "Device"
    Identifier  "Radeon"
    Driver "radeon"
    Option "AccelMethod" "EXA" 
        Option "DRI" "2"
        Option "TearFree" "on"
EndSection
Eliah Kagan
  • 117,780
nobody
  • 5,437
  • I tried all that, but I had to keep "nomodeset" or the video bugs out (pseudo rainbow vertical lines w/o moving mouse). The result of inxi -SG -! 31 did not change. I still have to try some other WM. Keeping the memory unbloated (only one big app per time, and dropping everything that I am not using, like evolution stuff) helps on making it a bit faster by avoiding swapping. – Aquarius Power Jun 17 '19 at 21:42
  • now I wonder if there could have some video trick that could be applied on demand, like turning off "nomodeset" after the WM has fully loaded and I had login on it? just a wild thought... – Aquarius Power Jun 17 '19 at 21:43