How to install gyazo
curl -s https://packagecloud.io/install/repositories/gyazo/gyazo-for-linux/script.deb.sh | sudo bash sudo apt-get install gyazo -y
Source: https://github.com/gyazo/Gyazo-for-Linux
Notes
curl -s https://packagecloud.io/install/repositories/gyazo/gyazo-for-linux/script.deb.sh | sudo bash sudo apt-get install gyazo -y
Source: https://github.com/gyazo/Gyazo-for-Linux
Install adb and fastboot:
sudo su apt-get update apt-get install android-tools-adb android-tools-fastboot -y
Supposed your phone device bootloader is unblocked:
– Settings –> About Phone –> MIUI version and MIUI Version 7 Times
– Settings –> Additional Settings –> Developer Options and check “OEM unlocking” [should be already checked] and “USB debugging.”… Read the rest
The problem when you seemingly configured all right and Google’s DNS resolvers are good:
nameserver 8.8.8.8
nameserver 8.8.4.4
But system still shows wrong information
Install resolvconf if needed
sudo apt-get install resolvconf -y
You need to disable systemd-resolved to get rid of 127.0.0.53 from your /etc/resolv.conf… Read the rest
Add the stable PPA, update and install it:
sudo add-apt-repository ppa:wireshark-dev/stable
sudo apt-get update
sudo apt-get install wireshark -y
To run:
sudo wireshark… Read the rest
roxterm no longer exist in debian pkg
Download and install roxterm using source below
http://roxterm.sourceforge.net/index.php?page=installation&lang=en
git clone git://git.code.sf.net/p/roxterm/code roxterm cd roxterm
Install python if needed:
sudo apt install python
You may skip below three steps and install and install dependencies firstly
sudo python ./mscript.py… Read the rest
View your current timezone's settings: date timedatectl status
Find your timezone from the list using command below:
timedatectl list-timezones
Update your timezone:
sudo timedatectl set-timezone
Europe/Kiev
Check:
date
… Read the rest Backup your current settings if needed
cp -rp .mozilla/ .mozilla_bk
Purge current firefox
sudo apt-get purge firefox -y
Download 56 version
wget https://ftp.mozilla.org/pub/firefox/releases/56.0/linux-x86_64/en-US/firefox-56.0.tar.bz2 sudo su tar -xvf firefox-56.0.tar.bz2 cp -rp firefox /opt/ cd /usr/bin ln -s /opt/firefox/firefox firefox
Finally, you have to avoid upgrading to the newer version.… Read the rest
To install:
sudo apt-get install ffmpeg
To convert:
ffmpeg -i input.mp4 output.mpeg
Available formats:
ffmpeg -formats… Read the rest
The Linux niceness scale goes from -20 to 19. The lower the number the more priority that task gets.
If the niceness value is high number like 19 the task will be set to the lowest priority and the CPU will process it whenever it gets a chance.… Read the rest