Pages
(Move to ...)
Home
Info
HowTo
Code
Publications
Finance
Links
Legal
▼
Showing posts with label
Debian
.
Show all posts
Showing posts with label
Debian
.
Show all posts
15/07/2020
[bash] Extract all distinct lines from file
›
Using a combination of cut and uniq , it is possible to extract all distinct lines from a given file: cut -d\; -f1 file.txt | uniq It is op...
[bash] Extract characters before marker from all lines in a file with sed
›
Using sed, it is possible to quickly extract all characters before a given marker from all lines in a file with: sed 's/MARKER.*//' ...
29/04/2020
[Docker] Move docker directory to different location on NTFS filesystem
›
The default location of docker files (images, volumes, networks, etc) on most distributions is /var/lib/docker This can be easily changed ...
28/04/2020
[GNOME] Create application shortcut that can be added to favorites
›
Some applications you install come as archives that you extract in a desired location. However, not all come with an installer that takes ca...
[Linux] Find WM_CLASS value for an application
›
In order to group application windows together, the WMClass and WMInstance attributes have been specified in the Inter-Client Communicatio...
25/04/2020
[Linux] Custom keyboard layout QWERTZ to QWERTY
›
We already saw how to customize a keyboard layout on Windows , now it's the turn of Linux, using XKB for Xorg . Remapping keys is as s...
15/08/2018
[Ubuntu] Revert kernel back to older version
›
Intro story: So much luck in a single day. I always keep only 2 kernel versions after every update, so that I can boot back if something g...
24/05/2014
[Debian] Run Wireshark as non-root user
›
Wireshark by default enables only the root user to capture network traffic; the idea is that as a root user you'll capture and store th...
[Debian] Test APT changes without altering the system
›
The APT package manager allows you to test the changes a command would perform without altering the system. To do that, simply add --dry-ru...
10/05/2014
[Debian] Set up wireless networking on a Lenovo T430 laptop
›
On a Lenovo T430 running Debian Wheezy and MATE desktop environment, the wireless networking was not working good even after installing the...
3 comments:
[Debian] Install MATE desktop environment
›
Now that GNOME 2 is dead in favour of the not-so-good GNOME 3 , users are still able to experience their solid and favourite desktop experi...
[Debian] Install package and its dependencies using dpkg
›
When installing a package with dpkg : dpkg -i package.deb its dependencies will not be automatically installed. To solve this, run: ap...
04/04/2009
Install Debian
›
This is the Debian Etch/Lenny/Sid installation guide I made. WARNING: Some parts of this guide are for the internet installation mode, if yo...
2 comments:
Enable automount on Debian
›
To enable the auto mount feature, just type in a terminal: sudo apt-get install gnome-volume-manager pmount Expecting more steps? Sorry to ...
›
Home
View web version