Category: Fedora / RedHat / CentOS

GNU linux time zones – change timezone
07.06.2017

Debian 12 as systemd is installed per default but not the time-sync service #wtf? su – root apt install systemd-timesyncd timedatectl set-timezone Europe/Berlin systemctl status systemd-timesyncd timedatectl; # check if sync is on Local time: Fri 2023-12-08 16:21:41 CET Universal […]

Yum cheat sheet – the future of Yum is Dnf
24.05.2017

update: 2021-1 yum -> dnf hostnamectl; # tested on Virtualization: kvm Operating System: CentOS Linux 8 CPE OS Name: cpe:/o:centos:centos:8 Kernel: Linux 5.4.11 Architecture: x86-64 ll /usr/bin/yum -> dnf-3 all those yum commands still work with dnf (nice work!) DNF […]

19.05.2017

there are plenty 😀 debian8.8 [cc lang=”bash” escaped=”true” width=”600″] uname -a; # tested with Linux debian 3.16.0-4-686-pae #1 SMP Debian 3.16.43-2 (2017-04-30) i686 GNU/Linux find / -type d -iname bin /bin /usr/local/bin /usr/bin /usr/share/doc/libintl-perl/examples/simplecal/bin /usr/lib/klibc/bin [/cc] suse12 [cc lang=”bash” escaped=”true” […]

19.05.2017

rpm is a powerful Package Manager for Red Hat, Suse and Fedora Linux. It can be used to build, install, query, verify, update, and remove/erase individual software packages. A Package consists of an archive of files, and package information, including […]

17.05.2017

su; # become root yum install kernel-devel # get kernel source # kernel sources will be copied to /usr/src/kernels/3.10.0-514.16.1.el7.x86_64/ # there is a broken softlink in # /usr/src/kernels/3.10.0-514.el7.x86_64 # -> # /usr/src/kernels/3.10.0-514.16.1.el7.x86_64/ # which you will have to fix like […]

linux CentOS7 – install MATE Gnome2 based Desktop
17.05.2017

yum install epel-release yum groupinstall “X Window system” yum groupinstall “MATE Desktop” # immediately switch over to grafical gui (if possible) systemctl isolate graphical.target; # Tell your systemd to start the graphical.target per default after boot unlink /etc/systemd/system/default.target; ln -s […]

04.05.2017

what real value can add linux to mankind? efficiency – less power consumed – less waste – because it runs well on old hardware as well transparency – should actually dissalow tyrannie and dictatorship – because you SHOULD acutally be […]

03.05.2017

you can check your machine’s current ip with: ip addr show to modify your network interface address setting simply use the nmtui tool: this failed me once with “no Update2” method… so let’s move on to the… manual way: terminal […]

Debian8.7 vs CentOS7 vs. SUSE12 – kernel version – filesystem – directory structure – RAM memory usage
24.04.2017

it is interesting to see what kernel+filesystem the distributions rely on. Kernels: While CentOS is still on 3.10, Debian is believing in 3.16, and SUSE is “latest” with it’s 4.4 Version kernel. http://www.omgubuntu.co.uk/2015/04/linux-kernel-4-0-new-features https://www.heise.de/newsticker/meldung/Linux-Kernel-macht-Versionssprung-auf-4-0-2557302.html you can upgrade with Debian to […]

How to monitor system temperature CPU HD Harddisk read hardware Sensors on Linux
13.11.2016

monitor (andoird) devices with bpf: https://www.socallinuxexpo.org/sites/default/files/presentations/bcc-scale.pdf How to monitor system temperature on Linux Last updated on November 7, 2013 Authored by Dan Nanni 10 Comments Creditz: http://xmodulo.com/monitor-system-temperature-linux.html In most cases, you are not supposed to be worried about the temperature […]

The MATRIX HAS YOU
06.09.2016

cmatrix now also for centos redhat and suse12! 😀 the probably most important linux program in cyberspace…. and neither centos nor suse have it in their repositories. shame! 😀 matrix just changed color 😀 if you wanna feel like a […]

19.08.2016

what rkhunter is also doing nicely… it keeps a hash of every file on your system… and if this file changes… you will get noticed. rkhunter (Rootkit Hunter) is a Unix-based tool that scans for rootkits, backdoors and possible local […]

Linux: Alternative Browsers – last update: 2019-07
16.02.2016

update: 2018.04 PaleMoon archive Server HACKED! “A malicious party gained access to the at the time Windows-based archive server” (src) oh gosh! ? GO USE CENTOS DEBIAN AND LATEST KERNEL NOW! “malware dropper tracked by ESET as Win32/ClipBanker.DY” (steals bitcoins) […]

GNU Linux -> List all open ports and listening services /etc/services
16.06.2015

what service/program is using what port: # list all open ports and listening services/programs lsof -i -P -n; web gui based -> https://dwaves.de/2018/04/04/monitoring-your-network/ watch traffic on terminal -> https://dwaves.de/2017/06/20/linux-bash-terminal-monitor-watch-network-traffic-in-real-time/ resource monitoring -> https://dwaves.de/2017/07/17/debian9-stretch-basic-web-based-ressource-monitoring-with-basic collectd/ nmap returns a nice overview… but […]

29.04.2015

add user to group # official, cross distribution (tested with suse12, centos7, debian8) usermod -a -G GROUPNAME USERNAME # redhat/centos: usermod -a -G wheel user; # add user „user“ to group „wheel“ in order to allow user to use sudo […]