Show Posts - admin

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - admin

Pages: [1] 2
1
Hendri's Programing Notes / Kdenlive Samsung Video Converter Settings
« on: February 14, 2022, 12:16:40 pm »
Code: [Select]
-s 1280x720 -r 25 -vb 10000k -threads 0 -vcodec mpeg1video -acodec copy

2
Linux Mint 19.3 boot error.

BusyBox v1.17.1 (Ubuntu 1:1.17.1-10ubuntu1) built-in shell (ash)
Enter 'help' for a list of built-in commands

(initramfs)

Code: [Select]
fsck -fvy /dev/sda1

3
This worked for me on 02/02/2021 Regards Hendri Whatsapp +27834605586

Enable snaps on Linux Mint and install untrunc-anthwlock

Snaps are applications packaged with all their dependencies to run on all popular Linux distributions from a single build.
They update automatically and roll back gracefully.

Snaps are discoverable and installable from the Snap Store, an app store with an audience of millions.


Enable snapd
Snap is available for:
Linux Mint 18.2 (Sonya),
Linux Mint 18.3 (Sylvia),
Linux Mint 19 (Tara),
Linux Mint 19.1 (Tessa)
Linux Mint 19.3 (Tricia)
and the latest release, Linux Mint 20 (Ulyana).
 
You can find out which version of Linux Mint you’re running by opening System info from the Preferences menu.

On Linux Mint 20, /etc/apt/preferences.d/nosnap.pref needs to be removed before Snap can be installed.
This can be accomplished from the command line:

Code: [Select]
sudo rm /etc/apt/preferences.d/nosnap.pref
sudo apt update

To install snap from the Software Manager application, search for snapd and click Install.
Alternatively, snapd can be installed from the command line:

Code: [Select]
sudo apt update
sudo apt install snapd

Either restart your machine, or log out and in again, to complete the installation.

Install untrunc-anthwlock

To install untrunc-anthwlock, simply use the following command:

Code: [Select]
sudo snap install untrunc-anthwlock --edge
Restore a damaged (truncated) mp4, m4v, mov, 3gp video
Restore a damaged (truncated) mp4, m4v, mov, 3gp video. Provided you have a similar not broken video.
And some luck. Improved version of ponchio/untrunc.

usage:
Code: [Select]
untrunc-anthwlock -s working-video.mp4 broken-video.mp4

4
Hendri's Programing Notes / Installing Webmin
« on: March 14, 2021, 11:58:05 pm »
Code: [Select]
sudo apt update
Code: [Select]
sudo nano /etc/apt/sources.list
Put this at the bottom of your sources list
. . .
Code: [Select]
deb http://download.webmin.com/download/repository sarge contrib
Code: [Select]
wget -q -O- http://www.webmin.com/jcameron-key.asc | sudo apt-key add
Code: [Select]
sudo apt update

Code: [Select]
sudo apt install webmin

5
Hendri's Programing Notes / Installing Inkcut for Vinyl cutters
« on: November 10, 2020, 05:10:45 pm »
Code: [Select]
sudo apt install python3-pip python3-pyqt5 python3-pyqt5.qtsvg libcups2-dev
Code: [Select]
pip3 install inkcut
Code: [Select]
inkcut

6
Hendri's Programing Notes / Bigger Swap file on Linux Mint.
« on: September 11, 2020, 11:57:35 am »
Turn off swap file
Code: [Select]
sudo swapoff -aReformat swapfile to 2G
Code: [Select]
sudo  dd if=/dev/zero of=/swapfile bs=1k count=2048kSet permisions of file
Code: [Select]
sudo chmod 0600 /swapfileLink swap space to file
Code: [Select]
sudo mkswap /swapfileTurn on swapfile function
Code: [Select]
sudo swapon -aMake it permanent
Code: [Select]
sudo echo "/swapfile       swap    swap    auto      0       0" | tee -a /etc/fstab

7
Hendri's Programing Notes / How to install Veracrypt on Linux mint
« on: July 26, 2020, 11:19:52 am »
Code: [Select]
sudo add-apt-repository ppa:unit193/encryption
Code: [Select]
sudo apt-get update
Code: [Select]
sudo apt install veracrypt

8
This video provide the basic terminology for turntable's. The purpose of this video is to help you describe the part you want to buy for your turntable. Thanks for watching.


9
Code: [Select]
sudo add-apt-repository ppa:wine/wine-builds
Code: [Select]
sudo apt-get update
Code: [Select]
sudo apt-get install --install-recommends wine-staging
Code: [Select]
sudo apt update
Code: [Select]
sudo apt install wine-stable

10
Code: [Select]
sudo apt-get update
sudo apt-get install youtube-dl

Or use PIP install
Code: [Select]
pip install youtube-dl

11
Hendri's Programing Notes / Install php-bz2
« on: July 24, 2017, 10:58:39 am »
Code: [Select]
sudo apt-get update
sudo apt-get install php-bz2

13
Hendri's Programing Notes / Install module bcmath
« on: July 23, 2017, 06:43:34 pm »
Code: [Select]
sudo apt-get install php-bcmath
Code: [Select]
sudo service apache2 restart

14
Hendri's Programing Notes / How to install zip in ubuntu?
« on: July 23, 2017, 06:37:14 pm »
Code: [Select]
sudo apt-get update
Code: [Select]
sudo apt-get install zip unzip
Code: [Select]
apt-get install php7.0-zip
Code: [Select]
sudo apt-get update

15
Code: [Select]
sudo apt-get install php-soap

Pages: [1] 2