You are not logged in.

#1 2023-03-22 20:46

vanquishedangel
Member
Registered: 2023-02-11
Posts: 63

Tips for setting up an old Dell latitude d430 for work, Aquarius

So I am creating this post to help others and also remember what I did because I have done so much tweaking. This may also help other computers from this era.

1. I installed Q4os Trinity desktop pure
2. installed gufw and turned it on (needed for due diligence, i work with medical records)
3. installed Brave as the default Browser
4. installed Evolution-ews and evolution as it works with my personal and work emails and also the calendar app is amazing, really close to Thunderbird. Also works with sendinc for message encryption by setting the smtp server to use the sendinc API. heavy system resources but has a lot of functionality, not as heavy as Thunderbird. It works with office 365 as well for calendar (though may take a lot of tweaking). Also install evolution-plugin-spamassassin.
5. install clamtk (needed for due diligence, I work in medical records)
6. Logging uses Onenote, so install npm, node.js, and nvm and then install p3x-onenote to interface better with office 365 One note, and can access calendar to. better then browser access. There is also a .deb now.
7. install and use pidgin to access slack (requires https://github.com/dylex/slack-libpurple, username is member ID from slack and password is your workspace password) and facebook https://github.com/dequis/purple-facebook Remember to disable 2 factor authentication for pidgin to connect then re-enable it after in facebook settings.
8. install zram
9. install team viewer to access main desk computer remotely
10. install tlp-gui, you will need to download it and learn to use it.
11. install irqbalance (this has a lot of negative reviews but it seems to work great on this computer, I suspect this was made for early dual cores). Sped things up.
12. install tlp. This helps save battery, but it also helps regulate temperature, this prevents throttling.
13. apply hard drive tweaks, in my case for an ssd with a pata connection. https://askubuntu.com/questions/1400/ho … s-for-ssds. less writes also helps regular hard drives and can speed them up to. enable trim for older SSD.
14. minimize swap usage by changing swappiness.
15 install libreoffice for writing up forms for staff and residents.
16. turn on zswap https://www.addictivetips.com/ubuntu-li … -on-linux/
17 keep a small black thumbnail to use as wall paper, the smallest I have ever found is attached. works for cell phones as well.
18. Enabled badmemory in grub.
19. installed prelink and execstack (debian stretch version)! prelink is obsoleted on newer devices due to SSD, faster ram, and faster CPUs, however when a device gets old, it is useful still as it reduces ram usage and speeds up loading time for apps. On this device it greatly helps. Run "Sudo prelink -amf". I could not attach prelink (https://pkgs.org/download/prelink)
20 test MTU setting: ping -M do -s 1472 howtoforge.com and ctrl+c to stop, lower by 10 each time until 0 packet loss, then set MTU to the highest number with 0 packet loss
21 Set "post-up /sbin/ip link set (connection name) txqueuelen 10000" in /etc/network/interfaces
22. applied a lighter weight font to everything Bitstream Charter and bitstream vera sans.
23. Tried to apply lightweight icons. picked waterleaf
24. went through the control panel and set backgrounds to no wall paper or no picture.
25. installed these plugings in Brave; ublock origin, TamperMonkey, Save-Data .
26. installed these scripts into tampermonkey/grease monkey; web access accelerator, Disable youtube 60 fps.
27. install haveged
28. install rng-tools5
29. use lz4 for swap compression (https://baronhk.wordpress.com/2021/10/0 … gnu-linux/)
30. Speed up firefox-esr here: https://smallbusiness.chron.com/set-ram … 41282.html and here: https://www.tecmint.com/speed-firefox-linux/
31. Set up and use earlyoom sudo apt install earlyoom && sudo systemctl enable earlyoom https://baronhk.wordpress.com/2021/10/0 … gnu-linux/
32. Set parameters for e2fsck and run it, to run it try "sudo e2fsck -vcck /dev/sda1". To check parameters to see if it gets run at intervals run "sudo tune2fs -l /dev/sda1 | egrep -h 'Maximum mount count|Check interval|Last checked'" and then "sudo tune2fs -c 20 -i "1m" /dev/sda1" to set it to every 20 mounts or 30 days, whatever comes first.. (great for older or used drives). You can set this parameter for all partitions (ext type) except swap.
33. Install fdpowermon for a battery indicator, it is less buggy then TDEpowersave and uses less resources.
34. Install MPV as a light weight media player.
35. Change cpu governor to schedutil in /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor
36. Enable ksm "sudo kwrite /sys/kernel/mm/ksm/run" and change the value from 0 to 1
37. Increase the number of pages ksm scans at a time (its default setting is very weak with minimal benefits) however, this comes at a cost of more CPU cycles, "sudo kwrite /sys/kernel/mm/ksm/pages_to_scan" and I changed the number to 10000.
38. make a cronjob for bleachbit (keeping things clean speeds them up_ run crontab -e and enter 0 10 * * 1 and the file path to the .sh you created. then hit control x then y to save, then hit enter.

Last edited by vanquishedangel (2024-02-06 02:39)


Attachments:
jpeg image0.jpeg, Size: 775 B, Downloads: 151
deb execstack_0.0.20131005-1+b10_amd64.deb, Size: 86.31 KiB, Downloads: 150

Offline

#2 2023-03-23 07:25

bin
Member
From: U.K.
Registered: 2016-01-28
Posts: 1,295

Re: Tips for setting up an old Dell latitude d430 for work, Aquarius

You've obviously worked hard to get all this running - congratulations.

Just a thought on the swap stuff. If you've installed zram and have moved swap to an external(ish) drive, have you set the priorities in fstab?

You might want to look at zswap as an alternative. An SD card will be appalling slow for swapping, PCMCIA not a whole lot faster.

Offline

#3 2023-03-24 01:24

vanquishedangel
Member
Registered: 2023-02-11
Posts: 63

Re: Tips for setting up an old Dell latitude d430 for work, Aquarius

bin wrote:

You've obviously worked hard to get all this running - congratulations.

Just a thought on the swap stuff. If you've installed zram and have moved swap to an external(ish) drive, have you set the priorities in fstab?

You might want to look at zswap as an alternative. An SD card will be appalling slow for swapping, PCMCIA not a whole lot faster.


Yes I zram installed and running, but sometimes (rare though) it needs a bit more. I have also changed a few things on the list as I get more working and configured properly.

Offline

#4 2023-03-25 04:11

vanquishedangel
Member
Registered: 2023-02-11
Posts: 63

Re: Tips for setting up an old Dell latitude d430 for work, Aquarius

bin wrote:

You've obviously worked hard to get all this running - congratulations.

Just a thought on the swap stuff. If you've installed zram and have moved swap to an external(ish) drive, have you set the priorities in fstab?

You might want to look at zswap as an alternative. An SD card will be appalling slow for swapping, PCMCIA not a whole lot faster.


I am sorry, I miss read your post initially. Thank you for the suggestion of zswap! it helped a lot and it did speed it up it seems. Yes the priority was set in fstab and zram comes before use of swap, but now thanks to you, zswap will reduce the swap time when using the sd card. having to interact with office 365 consumes a lot of ram smile

I Also stress tested it and it was amazing. initially having 3 tabs open (onenote, calendar, search results) p3x-onenote,  and Thunderbird slowed it to a crawl without zswap.

Now I had 5 tabs open ( 365 calander, word document editing, youtube, 2 searches) p3x-onenote, evolution, 2 terminals htop and swapon -s, and ran slack. While the programs slowed to respond or completely open (slack took about 10 minutes), they all ran and windows were way more responsive! I used 1 gig of swap (zram 256, the rest on the sd card). I could move the mouse and close windows. While may windows popped up unresponsive, I clicked continue and they did continue. It was faster to close windows as well when I closed them to reclaim memory. This is a game changer.

Last edited by vanquishedangel (2023-03-25 05:10)

Offline

#5 2023-03-25 07:08

bin
Member
From: U.K.
Registered: 2016-01-28
Posts: 1,295

Re: Tips for setting up an old Dell latitude d430 for work, Aquarius

Good stuff - glad it helped. I admire your tenacity. smile

Offline

#6 2023-04-07 00:22

vanquishedangel
Member
Registered: 2023-02-11
Posts: 63

Re: Tips for setting up an old Dell latitude d430 for work, Aquarius

So I am close to done with modifying things and I am pretty happy. This will work for work tasks really well.


Attachments:
Screenshot2, Size: 74 KiB, Downloads: 190

Offline

#7 2024-02-06 02:52

Germ
Member
From: Bushyhead, Oklahoma
Registered: 2023-06-30
Posts: 10

Re: Tips for setting up an old Dell latitude d430 for work, Aquarius

How did I miss this...

Good job, vanquishedangel!  Thanks for sharing!

Offline

#8 2024-02-08 22:04

seb3773
Member
Registered: 2023-11-01
Posts: 69

Re: Tips for setting up an old Dell latitude d430 for work, Aquarius

Yes, this is a very good guideline for optimising a q4os installation. In fact, this was my main reference when I started to work on my qperf script, I found some other optimisations to do, but there are some very good ideas here smile

I've got a question for you vanquishedangel, about the prelink and execstack part. Did you success using these tools on a bookworm installation, and is it relevant for bookworm in first place ? (don't know why not, but I notice you can't find these tools too for bookworm)


My Q4OS scripts: win10 theming, perfs optimisation, laptop configuration, ...  for trinity users -->  https://github.com/seb3773/Q4OSseb

Offline

#9 2024-03-24 00:59

vanquishedangel
Member
Registered: 2023-02-11
Posts: 63

Re: Tips for setting up an old Dell latitude d430 for work, Aquarius

seb3773 wrote:

Yes, this is a very good guideline for optimising a q4os installation. In fact, this was my main reference when I started to work on my qperf script, I found some other optimisations to do, but there are some very good ideas here smile

I've got a question for you vanquishedangel, about the prelink and execstack part. Did you success using these tools on a bookworm installation, and is it relevant for bookworm in first place ? (don't know why not, but I notice you can't find these tools too for bookworm)

Sorry I was on vacation to spain/paris/amsterdam and did not see this until now. Also I lost my chromebook in amsterdam and I am trying to get it back from TSA lol. Anyway yes I was able to use them in bookworm. Some places may say that it is not relevant due to newer parts of the kernel handling the task however, the benefit was in reducing memory usage.

Offline

Board footer

Powered by FluxBB