This is how I install xfce4 on a new Debian:
yes | \
for x in `apt-cache search xfce4 \
| sort \
| awk 'BEGIN { FS = " - " } { print $1 }'`; do \
apt install $x; \
done
Or if you prefer a less transactional install, you can use xargs
apt-cache search xfce4 \
| sort \
| awk 'BEGIN { FS = " - " } { print $1 }' \
| xargs apt install -y
Page Updates |
---|
RetroPie Arcade |
Customize New Linux Install |
Cisco CCNA Study :: Home Lab Notes |
PostgreSQL Backup Script |
Generate new Factorio map |
Recent Articles |
---|
Debug a Linux Kernel in QEMU |
Install xfce4 on Debian |
Console Blackjack in Perl |
Selenium::WebDriver::Error::UnknownError |
Game of Life in C++ using the SDL2 |
Copyright © 2005 - 2022
GregDonald.com · Contact · Nautical War · CRM12
All Rights Reserved