Login
Discover
Waves
Communities
Login
Signup
deleted
@mlibregop
30
Followers
25
Following
19
Follow
Email digest
Resource Credits
Available
Used
Created
2019-03-26 11:58
RSS Feed
Subscribe
Posts
Blog
Posts
Comments
Communities
Wallet
mlibregop
dtube
7y
Give the output of a command to another command
Give the output of a command to another command in Linux Terminal. Commands: touch today_$(date -I) Youtube Link: ▶️ DTube ▶️ IPFS
$ 0.000
0
mlibregop
dtube
7y
How to set cursor in the beginning of the line in Linux Terminal
Set the cursor at the beginning of the line. Linux Terminal. Press CTRL + A Youtube Link: ▶️ DTube ▶️ IPFS
$ 0.000
4
1
mlibregop
dtube
7y
How to prevent Bash to save command in bash history
How to stop Bash to save commands in its history. Commands: ls # use space before starting command Youtube Link: ▶️ DTube ▶️ IPFS
mlibregop
dtube
7y
Run last command in bash
How to use our previous command in Bash terminal. Command: cat test # cat: test: Permission denied sudo !! # sudo cat test YouTube Link: ▶️ DTube ▶️ IPFS
mlibregop
dtube
7y
How to search in bash history
Search and find previous commands in bash history. Linux Terminal. Press CTRL + R. Youtube Link: ▶️ DTube ▶️ IPFS
mlibregop
dtube
7y
Maximum compression with xz
Compressing files using XZ with max compression level. Command: xz --compress --keep -9 --verbose text.txt YouTube Link: ▶️ DTube ▶️ IPFS
mlibregop
dtube
7y
How to prevent Aspell to creating backup file
How to stop Aspell to create a backup file. Linux Terminal. Commands: aspell --dont-backup -c text.txt YouTube Link: ▶️ DTube ▶️ IPFS
mlibregop
dtube
7y
Check and fix spelling with aspell in Linux Terminal
find spelling mistakes with Aspell in Linux Terminal. Commands: sudo apt-get install aspell aspell-en aspell -c text.txt YouTube Link: ▶️ DTube ▶️ IPFS
mlibregop
dtube
7y
View all connected devices using adb in linux terminal
Print all connected Android devices using adb in Linux terminal. Command: adb devices YouTube Link: ▶️ DTube ▶️ IPFS
mlibregop
dtube
7y
Save git username and password permanently
Permanently authenticating with Git repositories. Linux Terminal. Command: git config --global credential.helper store ▶️ DTube ▶️ IPFS
mlibregop
dtube
7y
Enable coloured output in git
Enable colored output in git. Linux Terminal. Commands: git config --global color.ui always YouTube Link: ▶️ DTube ▶️ IPFS
mlibregop
dtube
7y
Enable maximum compression in git
Have better compression in git. Linux terminal. Command: git config --global core.compression 9 YouTube Link: ▶️ DTube ▶️ IPFS
mlibregop
dtube
7y
Setting user name and email in git globally
Setting username and email for every git repository in a computer. Commands: git config --global user.name "mlibre" git config --global user.email "
[email protected]
" YouTube Link:
mlibregop
dtube
7y
Concatenate video and audio file using ffmpeg
Merge video and audio files with ffmpeg in Linux Terminal. Commands: nano input.txt input.txt content: file 'file_1.mkv' file 'file_2.mkv' ffmpeg -f concat -i input.txt -c copy output.mkv YouTube Link:
mlibregop
dtube
7y
Trim part of video or audio file using ffmpeg
Extract part of video or audio file using ffmpeg in Terminal. Commands: ffmpeg -ss 00:01:00 -i file.mkv -t 00:02:00 -codec copy trimed.mkv YouTube Link: ▶️ DTube ▶️ IPFS
mlibregop
dtube
7y
Extract a single audio stream from a video file using ffmpeg
Extract audio from video files using ffmpeg. Commands: ffmpeg -i file.mkv -map 0:1 output.ogg YouTube Link: ▶️ DTube ▶️ IPFS
mlibregop
dtube
7y
Get video information using ffmpeg
How to get video file information using FFmpeg. Commands: ffmpeg -i file.mkv YouTube Link: ▶️ DTube ▶️ IPFS
mlibregop
dtube
7y
Make a file executable in Linux
In this video, you learn how to add executable permission to a file in Linux. Commands: chmod a+x test.js ./test.js YouTube Link: ▶️ DTube ▶️ IPFS
mlibregop
dtube
7y
How to install and run a 64 bit package on 32 bit on Debian, Ubuntu
Install and run 64-bit packages on a 32-bit system. Debian based. Commands: sudo dpkg --add-architecture i386 sudo apt-get update sudo apt-get install package:i386 ▶️ DTube ▶️ IPFS
mlibregop
dtube
7y
Correct way to chroot to another Linux
Properly prepare a Linux system for chroot to another one. Commands: sudo mount /dev/sdb1 /mnt/ sudo mount -t proc none /mnt/proc sudo mount --bind /sys /mnt/sys sudo mount --bind /dev /mnt/dev sudo chroot
← Latest
Older →