Entries

How to install qBittorrent on Linux Lite?

Linux Lite is using standard Ubuntu repositories, and qBittorrent is not part of it. So we have to add additional repository and then install qBittorrent client from it.

Adding qBittorrent repository

$ sudo add-apt-repository ppa:qbittorrent-team/qbittorrent-stable

Then update the repo:

$ sudo apt-get update

Read more

Written by Administrator on Friday April 17, 2020

How to install Wifite on Mabox Linux (Manjaro)

To install wifite tool in Mabox Linux it's enough to use pacman package manager:

$ sudo pacman -S wifite

output:

resolving dependencies...
looking for conflicting packages...

Packages (3) aircrack-ng-1.6-2  ethtool-1:5.4-1  wifite-1:87.r139.918a499-2

Total Download Size:   0.70 MiB
Total Installed Size:  2.74 MiB

:: Proceed with installation? [Y/n] y
:: Retrieving packages...
error: failed retrieving file 'ethtool-1:5.4-1-x86_64.pkg.tar.zst' from mirror.dkm.cz : Operation timed out after 10000 milliseconds with 0 out of 0 bytes received
 ethtool-1:5.4-1-...   134.3 KiB  15.1 KiB/s 00:09 [######################] 100%
error: failed retrieving file 'aircrack-ng-1.6-2-x86_64.pkg.tar.zst' from mirror.dkm.cz : Operation timed out after 10000 milliseconds with 0 out of 0 bytes received
 aircrack-ng-1.6-...   546.3 KiB  42.3 KiB/s 00:13 [######################] 100%
 wifite-1:87.r139...    31.5 KiB  72.3 KiB/s 00:00 [######################] 100%
(3/3) checking keys in keyring                     [######################] 100%
(3/3) checking package integrity                   [######################] 100%
(3/3) loading package files                        [######################] 100%
(3/3) checking for file conflicts                  [######################] 100%
(3/3) checking available disk space                [######################] 100%
:: Processing package changes...
(1/3) installing ethtool                           [######################] 100%
(2/3) installing aircrack-ng                       [######################] 100%
(3/3) installing wifite                            [######################] 100%
Optional dependencies for wifite
    reaver: WPS attack support
    pyrit: detect WPA handshakes
    wireshark-cli: detect handshakes
    cowpatty: detect WPA handshakes
    macchanger: change MAC for attacks
:: Running post-transaction hooks...
(1/1) Arming ConditionNeedsUpdate...

Read more

Written by Administrator on Tuesday April 14, 2020

How to install VLC in openSUSE

VLC player is not part of standard openSUSE repositories, so we have to add additional repository for VLC and its tools:

Adding VLC repository

For openSUSE Leap 15.0:

$ sudo zypper ar http://download.videolan.org/pub/vlc/SuSE/Leap_15.0/ VLC

For openSUSE Leap 15.1:

$ sudo zypper ar http://download.videolan.org/pub/vlc/SuSE/Leap_15.1/ VLC

Read more

Written by Administrator on Monday April 13, 2020

How to install Aegisub subtitles editor in LinuxLite

Aegisub subtitle editor is very powerful and famous subtitle editr not only among Windows user, but also among Linux users. Unfortunately, Aegisub application is not included in standard repository, so we have to add another repository to get this app. We know, that LiteLinux is using the same repositories like Ubuntu Linux does, so you can easily do it using add-apt-repository command in your terminal:

$ sudo add-apt-repository ppa:alex-p/aegisub

My output was following:

Read more

Written by Administrator on Sunday April 12, 2020

How to count number of folders in folder|directory in Linux?

To count number of folders/directories/files in folder/directory is possible using wc command with a parameter -l. But we have to be sure, that we are counting only folders, so let's filter only folder using ls command, and then count then.

My example:

$ pwd
/home/dima/

Then let's take a look, which files and folders we have:

Read more

Written by Administrator on Saturday April 11, 2020

How to count characters in file in openSUSE Linux using terminal

Linux command line is very powerful tool even for string and character operations without installing any third-party applications.

To count number of characters in some file, containing text, you can use wc command with -m parameter using following scheme:

$ wc -m <file_name>

Examples:

$ wc -m nata-ubuntu-settings 
21 nata-ubuntu-settings

$ wc -m it-slang-v-rustine 
1019 it-slang-v-rustine

$ wc -m rongta-files-installation 
389 rongta-files-installation

Read more

Written by Administrator on Saturday April 11, 2020