Pages
(Move to ...)
Home
Info
HowTo
Code
Publications
Finance
Links
Legal
▼
Showing posts with label
Fedora
.
Show all posts
Showing posts with label
Fedora
.
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...
17/01/2015
[Fedora] VLC repository
›
In order to install VLC on Fedora , you'll need to add their repository to your sources. Simply: yum install --nogpgcheck http://dow...
[Yum] Add and manage custom repositories
›
In the latest Fedora versions, it is possible to add custom repositories to yum by creating a .repo file under the /etc/yum.repos.d/ fold...
[Fedora] [Gnome] Use delete key to delete files
›
For some reason , on Fedora 21 - and possibly earlier versions too - you're required to Ctrl + Delete to send a file to the trash instea...
31/07/2011
Realtek wireless on Fedora
›
This article applies to the 819x Realtek wireless cards series like models 8191SEvB, 8191SEvA2, 8192SE, … Main reference site is Stanisla...
›
Home
View web version