Linux Resources
- Home
- Linux Resources
This article covers different ways of installing the latest version of the VidCutter video editing and movie creation on the Linux Mint system. In fact, VidCutter is a modern, simple to use, constantly evolving and hella fast MEDIA CUTTER + JOINER w/ frame-accurate SmartCut technology + Qt5, libmpv, FFmpeg and MediaInfo powering the backend.
Depending on the method used, the following commands can be used to update.
1. APT Update Method
$ sudo apt upgrade && sudo apt upgrade
2. Flatpak Update Method
$ flatpak update
1. To remove if installed via the APT Method, simply run the below command:
$ sudo apt autoremove vidcutter
Also, it is advised to remove the PPA.
$ sudo rm /etc/apt/sources.list.d/ozmartian.list
2. To remove if installed via Flatpak, run the below command:
$ flatpak uninstall --delete-data com.ozmartians.VidCutter
Next, run the following command for any leftover clean-up.
$ flatpak remove --unused
Users that have installed Linux Mint for the first time or have not imported a GPG key before using the command line terminal will often have issues importing GPG keys from LaunchPAD PPAs due to the directories not being created. This is an easy fix. Use the following command that will, in turn, generate the directories:
$ sudo gpg --list-keys
This article covers how to easily install TeXworks on Ubuntu 22.10 (Kinetic Kudu). In fact, TeXworks comes with pdfTeX, pdfLaTex, LuaTex, LuaLaTex, BibTex MakeIndex and XeTeX typesetting engines support. To learn more about TeXworks, simply visit the official website https://www.tug.org/texworks/.
This article covers the usage of the DU command in Linux. In fact, the du command makes it convenient for Linux users to stay aware of their disk consumption and make an upgrade if required.
The sort command provides -h parameter allows to compare human-readable numbers (e.g., 10K 15M 1G etc). This helps up to compare the results of `du -h` and short them.
It takes the below form:
$ du -h * | sort -h
This will display the results in the ascending order by size.
You can also reverse this using -r to show results in descending order with the below command:
$ du -h * | sort -rh
The du -sh * command will display only a total for each argument as well as print sizes in human readable format (e.g., 1K 234M 2G).
The command takes the below form:
$ du -sh
The df command displays the amount of disk space available on the filesystem with each file name's argument.
The df command can be run by any user. Like many Linux commands, df uses the following structure:
$ df [OPTION]... [FILE]...
The df command primarily checks disk usage on a mounted filesystem. If you don't include a file name, the output shows the space available on all currently mounted filesystems.
While du reports files and directories disk usage, df reports how much disk space your filesystem is using.
The du command is used to estimate file space usage. To print sizes in human readable format such as 5K, 400M, or 3G, type the following commands:
du -h
du -h /tmp
du -h /home/user
The du command displays the files and directory sizes in a recursive manner.
This article covers how to Create Network Bridges on Centos OS. In fact, the nmcli command-line tool can create a persistent bridge configuration without editing any files.
This article covers the basic usage of the CHOWN command in Linux.In fact, you can now change the ownership of a file in system at the user level as well as at the group level. Also, with the chmod command command , you can change file access permissions such as read, write, and access.
This article covers the methods of finding out the ports that are in use in your Ubuntu Linux machine. In fact, if you are intending to close any unused port, you will easily be able to do that after knowing that it is still in the listening state.
1. Open a terminal application i.e. shell prompt. Run any one of the following command on Linux to see open ports:
$ sudo lsof -i -P -n | grep LISTEN
$ sudo netstat -tulpn | grep LISTEN
$ sudo ss -tulpn | grep LISTEN
$ sudo lsof -i:22 ## see a specific port such as 22 ##
$ sudo nmap -sTU -O IP-address-Here
2. For the latest version of Linux use the ss command. For example:
$ ss -tulw