Authors
Join me in Slack!
-
Join 245 other subscribers
Tags
- 3G Modem
- adblock plus
- aix
- apt
- apt-get
- Bash
- bionic-beaver
- Bluetooth
- bug
- Compile
- core
- Crack
- data
- db
- Desktop
- encryption
- extensions
- ffmpeg
- files
- filesystem
- find
- Firefox
- Gnome
- gnome-shell
- google-chrome
- grep
- hostname
- img
- install
- iso
- Java
- kde
- kvm
- Leadership
- Linux
- linuxmint
- Live USB
- Lucid
- lvm
- Management
- mint
- mount
- MySQL
- nautilus
- network
- Network Manager
- OpenOffice
- Oracle
- Oracle Enterprise Linux
- password
- printer
- qemu
- Redhat
- reset
- rm
- sed
- server
- siebel
- SQL
- sqlplus
- srvrmgr
- ssh
- swap
- tablespace
- terminal
- Ubuntu
- Ubuntu Hardy
- Ubuntu Jaunty
- Uncategorized
- Unix
- VirtualBox
- Windows
- xenial
- xserver
- Xubuntu
Archives
- April 2023
- January 2023
- October 2022
- July 2022
- December 2021
- October 2021
- July 2021
- April 2021
- March 2021
- October 2020
- May 2020
- April 2020
- March 2020
- February 2020
- January 2020
- December 2019
- November 2019
- October 2019
- June 2019
- April 2019
- February 2019
- January 2019
- December 2018
- November 2018
- October 2018
- September 2018
- May 2018
- April 2018
- March 2018
- February 2018
- January 2018
- December 2017
- November 2017
- September 2017
- August 2017
- July 2017
- May 2017
- April 2017
- March 2017
- February 2017
- January 2017
- October 2016
- September 2016
- August 2016
- July 2016
- April 2016
- March 2016
- November 2015
- September 2015
- August 2015
- June 2015
- February 2015
- December 2014
- November 2014
- October 2014
- September 2014
- June 2014
- May 2014
- February 2014
- January 2014
- September 2013
- August 2013
- July 2013
- May 2013
- April 2013
- March 2013
- February 2013
- January 2013
- December 2012
- November 2012
- October 2012
- September 2012
- August 2012
- July 2012
- January 2012
- December 2011
- November 2011
- October 2011
- September 2011
- June 2011
- May 2011
- April 2011
- March 2011
- January 2011
- December 2010
- November 2010
- October 2010
- September 2010
- August 2010
- June 2010
- May 2010
- April 2010
- March 2010
- February 2010
- January 2010
- December 2009
- October 2009
- September 2009
- August 2009
- July 2009
- June 2009
- May 2009
- April 2009
- March 2009
- February 2009
- January 2009
- December 2008
- November 2008
- June 2008
- May 2008
- April 2008
- March 2008
- February 2008
- January 2008
- November 2007
Tag Archives: Bash
What to do when an SSH session hangs because of a network problem
It’s a very basic post, yet still useful! Sometimes when you disconnect from a network or VPN or have any network connectivity problem in general that affects an established SSH connection to any of your servers, the terminal hangs for … Continue reading
Script to count number of logged in users to OpenVPN
To get that information you need to query your openvpn-status.log file, which usually resides in /var/log/openvpn/openvpn-status.log. A normal cat will show the following: OpenVPN CLIENT LIST Updated,Wed Mar 5 11:57:51 2019 Common Name,Real Address,Bytes Received,Bytes Sent,Connected Since someuser,someip:55530,100686479,319036434,Tue Mar 5 … Continue reading
Touchpad enable/disable script and shortcut on Ubuntu 18.10
If your laptop doesn’t have a working switch for turning on/off your touchpad, then this post is for you. Create a script called disenable_touchpad.sh and add the following code to it: !/bin/bash state=$( gsettings get org.gnome.desktop.peripherals.touchpad send-events ) if [ … Continue reading
How to beautify XML text on command line in Ubuntu
sudo apt install libxml2-utils echo ‘your xml stuff here’ | xmllint –format – You will get a beautiful well-organized XML output. Sources: https://jahansyed.co.uk/2016/04/22/how-to-install-xmllint-in-ubuntu/ https://stackoverflow.com/questions/16090869/how-to-pretty-print-xml-from-the-command-line
How to check packages support status for Ubuntu 18.04
To know which packages are supported and which are not, for how long and whether the community or canonical are the ones who support it, just run: ubuntu-support-status It will give you this sample output: Support status summary of ‘$HOSTNAME’: … Continue reading