Tags
- ALGOL 68
- alpha
- apt
- audio
- bash
- C/C++
- DECwindows
- firefox
- FORTRAN
- ftp
- GDM
- GNOME
- grub
- HTML
- jessie
- lenny
- lightdm
- lighttpd
- MATE
- nfs
- photography
- python
- qemu
- Raspberry Pi
- Raspberry Pi 3
- sensehat
- simh
- squeeze
- ssh
- stretch
- ubuntu
- UFW
- vax
- video
- VMS
- vnc
- wget
- wheezy
- WiPy
- wireless
- wordpress
- xdmcp
- XFCE
- X windows
- yum
Updated
-
Recent
Popular
- Determine MTU size using ping
- Setting the network MTU size
- Implementing 'cat' in Python (reading a file character by character)
- GNOME 3 Customizing the login screen
- Yet another desktop - Compiling CDE on Debian 8.0 (Jessie)
- Remote Desktop using VNC
- Configure a network interface to have no IP address
- Minimal GNOME 3 Install on Debian (jessie)
- Set Linux Console Height and Width
- Configuring a linux wireless access point
Recommended
-
- 646,323 hits
Tag Archives: rpm
List packages by install date
A handy ‘one liner’ that lists all the packages installed on a RedHat system by the install date. $ rpm -qa --qf $'%{INSTALLTIME}\t%{INSTALLTIME:date}\t%{NAME}\n' | sort -n -r -k1 | cut -f2,3 Sun 09 Jun 2019 17:26:04 BST systemd-sysv Sun 09 Jun 2019 17:26:04 BST systemd-libs Sun 09 Jun 2019 17:26:04 BST rsync : : : Thu 02 Nov 2017 12:49:32 GMT bzip2-libs Thu 02 Nov 2017 12:49:13 GMT fontpackages-filesys Thu 02 Nov 2017 12:49:13 GMT basesystem $ This command uses format specifier … Continue reading
Using RPM to find package dependencies
I recently discovered that is it actually rather difficult to determine which packages depend on a particular package using the RedHat Package Manager, and I ended up writing a short script to list all the dependencies for a particular package.