Category: cool tested GNU Linux Apps

28.08.2016

a simple, sleak, efficient Gnome2 based desktop system, adding printers worked like a charm 🙂 keep up the good work. [cc lang=”bash” escaped=”true” width=”600″] MARCO(1) General Commands Manual MARCO(1) NAME Marco – The MATE Window Manager SYNOPSIS marco [OPTIONS] DESCRIPTION […]

18.06.2016

It’s as simple as cool as linux… the “player” software VLC is also a recorder or a streaming-station 😀 you can try to automate this process: This one-liner worked for me, with audio and video: [cc lang=”bash” escaped=”true” width=”600″] cvlc […]

31.03.2016

sudo apt-get install calibre To actually convert the EPUB file you can use the following command: ebook-convert file.epub file.pdf (For details, check this other answer)

26.02.2016

stuff: GNU Linux -> How to Install TrueCrypt / VeraCrypt / ZuluCrypt Veracrypt command line usage: manpage: veracrypt.man.txt # start interactive command line wizard veracrypt -t -c # to create a new encrypted volume or usb stick Volume type: 1) […]

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) […]

Mumble Plumble – how to make Audio Calls and Conversations – private secure and free (OpenSource) – Android v10 support with Mumla App
07.02.2016

2021: update! the old Mumble App (Plumble) does not work well with Android v10 and higher. luckily, someone made an updated version called “Mumla”: https://f-droid.org/en/packages/se.lublin.mumla/ backup: https://dwaves.de/software/apps/Mumla_se.lublin.mumla.zip (sha512sum: e3d9f366a1c3895e24c051a96f6114a30d89713e3098de77a7716ff9187b0b47db58b98eaca3386ddfd09433cd3f1a3aa5a1e29043cb9d40cb280d966852b42e) (tested and works with LineageOS 17 / Android 10) what is great […]

04.01.2016

Source & Creditz: https://l3net.wordpress.com/2013/03/17/a-memory-comparison-of-light-linux-desktops if you are running Debian Linux on a Laptop with only 1GB of RAM and want to use things as Virtualization… lightweight is important. There are Linux-Desktops out there consuming less than Windows 98!

02.01.2016

tested under: Linux laptop 3.16.0-4-686-pae #1 SMP Debian 3.16.7-ckt11-1 (2015-05-24) i686 GNU/Linux [cc lang=”c” escaped=”true” width=”600″] vim /etc/apt/sources.list; # open software package repository list # and add at the end deb http://apt.jenslody.de/stable jessie main deb-src http://apt.jenslody.de/stable jessie main apt-get update; […]

02.01.2016

get a terminal-bash-shell… [cc lang=”c” escaped=”true” width=”600″] apt-get install libgtk-3-dev; # install gnome3 header files mkdir -p /projects/c/guigtk+; # create project directory cd /projects/c/guigtk+; # enter project directory vim gnome3gui.c; # create new file [/cc] # fill it with that […]

11.08.2015

Sware Iron runs well on: Linux DebianGiada 4.0.0-2-amd64 #1 SMP Debian 4.0.8-1 (2015-07-11) x86_64 GNU/Linux but on a Virtual Machine running: Linux debian7 3.2.0-4-amd64 #1 SMP Debian 3.2.68-1+deb7u1 x86_64 GNU/Linux i get: /usr/share/iron/iron: symbol lookup error: /usr/share/iron/iron: undefined symbol: g_type_class_adjust_private_offset […]

31.07.2015

find your usb stick lsblk NAME   MAJ:MIN RM   SIZE RO TYPE MOUNTPOINT sda      8:0    0 111.8G  0 disk ├─sda1   8:1    0 107.2G  0 part / └─sda5   8:5    0   4.6G  0 part [SWAP] sdb      8:16   1  29.1G  0 disk └─sdb1   8:17   […]

20.07.2015

gui-way: DO NOT USE ANY OTHER HARDDISK FORMAT THAN THE DEFAULT QCOW2!!! with VirtualBox it’s the same. THEORETICALLY they support Micro$oft’$ HYPER_V_DISK_IMAGE.VHD BUT PRACTICALLY THINGS WILL FALL APART QUICKLY! (broken/corrupted disk image) So just stick to the defaults and you […]

GNU Linux -> how to find and remove duplicate files
17.07.2015

lsb_release -a; # tested with Description: Debian GNU/Linux 12 (bookworm) # previously this was tested with cat /etc/os-release |grep PRETTY PRETTY_NAME=”Debian GNU/Linux 11 (bullseye)” why? duplicate files are a waste of disk space. every system experiences catastrophic failures, slow downs […]

17.07.2015

Safari and Firefox both run the WebKit HTML-rendering engine – forked from KDE-KONQUEROR! Konqueror is the original WebKit browser. Long before Apple released Safari, there was Konqueror and the KHTML rendering engine. Apple liked what they saw in KHTML and […]

13.07.2015

vim /scripts/splitMP3.sh; # create new script and fill it with (copy & paste) #!/bin/bash BIG_AUDIO_FILE=$1; echo “trying to split “$BIG_AUDIO_FILE; # split the mp3 audio above into 30min files mkdir split; X=0; while( [ $X -lt 5 ] ); do […]