PostX Gnu/Linux 0.8 released

PostX Gnu/Linux 0.8 has been released. The distribution is based on Debian 11 and is amd64.

Disclaimer: You use PostX Gnu/Linux at your own responsibility. The author of techtimejourney.net (JJ Posti) or any other party is not responsible if any kind of damage or harm will occur . NO WARRANTY is given and the user therefore agrees to use this software at his/hers own risk.

AMD status on Debian 11: Things got a lot better with AMD graphics cards on Debian 11. However, some issues still persist with newer cards when booting into a freshly installed system. For example, the dm (Lightdm) might not show up or things might not function at all on xserver. If you are in any doubt when it comes to your graphics card´s functionality, use something like Virtualbox with extension packages to experience the system.

Size of the image is about 1012mb.

PostX Gnu/Linux 0.8 download: https://techtimejourney.net/postx08_images/

Package repository: https://techtimejourney.net/postx08/

Sources repository: https://www.techtimejourney.net/postx08-sources/

Always backup your data before proceeding to installation.

Live environment: username: postx password: live

Lightdm is the display manager.
Openbox is the desktop. Right-Click menu is visible here.
Continue reading

Bash: File content tricks

Using bash to get some data from the files can be very useful. Here are some essential tricks to get you started.

  1. See if the file has a word called “hello”:

cat file.txt |grep hello

  1. Compare two files using cmp / cmp is usually part of the diffutils package.

This part is best done with simple script. However, scripting is not mandatory when using cmp.

#!/bin/bash

# Creating two new files with: echo "Helllo" > file.txt && echo "Hello" > file2.txt

file1="file.txt"
file2="file2.txt"

if cmp "$file1" "$file2"; then
echo "Files are the same."
else
echo "Files are not the same."
fi

Continue reading