This page (revision-13) was last changed on 2021-04-11 08:15 by Murray Altheim

This page was created on 2019-12-21 22:16 by unknown

Only authorized users are allowed to rename pages.

Only authorized users are allowed to delete pages.

Page revision history

Version Date Modified Size Author Changes ... Change note
13 2021-04-11 08:15 4 KB Murray Altheim to previous
12 2021-04-10 23:26 4 KB Murray Altheim to previous | to last
11 2021-04-10 23:18 3 KB Murray Altheim to previous | to last
10 2021-04-10 12:15 3 KB Murray Altheim to previous | to last
9 2021-04-10 11:57 3 KB Murray Altheim to previous | to last
8 2021-03-27 22:01 3 KB Murray Altheim to previous | to last
7 2021-03-27 20:34 2 KB Murray Altheim to previous | to last
6 2021-03-27 20:33 2 KB Murray Altheim to previous | to last
5 2021-03-26 06:44 1 KB Murray Altheim to previous | to last
4 2021-03-26 06:38 1 KB Murray Altheim to previous | to last
3 2021-03-26 06:35 1 KB Murray Altheim to previous | to last
2 2021-03-26 06:34 1 KB Murray Altheim to previous | to last
1 2019-12-21 22:16 372 bytes unknown to last

Page References

Incoming links Outgoing links

Version management

Difference between version and

At line 16 changed 2 lines
Many Debian-based Linux distributions like Ubuntu can be used on a Raspberry Pi. Most of the differences between these
are in the desktop environment, not the Linux kernel, so if your Pi is being used as a server, or command line only, there's little benefit in an alternative to the "standard".
Many Debian-based Linux distributions can be used on a Raspberry Pi. Most of the differences between these are solely in the desktop environment, not the Linux kernel, so if your Pi is being used as a server, or command line only, there's little benefit in an alternative to the "standard". In other words, what are often called "operating systems" are actually all using the Linux operating system and only differing in their desktop environment (window manager).
At line 32 added 2 lines
* [Raspberry Pi OS (64 bit) beta test version|https://www.raspberrypi.org/forums/viewtopic.php?f=117&t=275370#p1668160]
* [https://downloads.raspberrypi.org/raspios_arm64/images/]
At line 35 added 37 lines
The latter is a link to the directory containing RPi OS image files (i.e., not pictures but single-file copies of operating systems), the latest as of this writing is 2020-08-24.
!! Removing the UI
%%warning
Removing the UI is a rather permanent thing. Once you've done so, restoring your Pi back to being able to use the desktop again
very difficult, i.e., reversing the purge of UI libraries. So unless you're hurting for disk space on your SD card you might wish to just leave the UI files alone. One thing I ''have'' noticed is that if your WiFi gets messed up, it's easier to fix it using the UI than via raspi-config.
%%
If you never need the UI and plan to run command line only, type this:
{{{
sudo apt remove --purge x11-common
sudo apt autoremove
sudo apt update
}}}
This removes all x11 packages, then the 'autoremove' does the cleanup of packages that are no longer needed. Then updates what's left of your operating system.
This will empty up some disk space and speed up operating system updates as there's less on your Pi. As a measure of this,
here's the stats on a clean new 64 bit Raspberry Pi OS, before and after removing the UI:
__Before:__
{{{
Filesystem Size Used Avail Use% Mounted on
/dev/root 7.0G 3.8G 2.9G 58% /
/dev/mmcblk0p1 253M 31M 222M 13% /boot
}}}
__After:__
{{{
Filesystem Size Used Avail Use% Mounted on
/dev/root 7.0G 3.3G 3.5G 49% /
/dev/mmcblk0p1 253M 31M 222M 13% /boot
}}}
So this cleared about half a gigabyte of space.