Resizing images with Bash
If the files have the extension .JPG #!/bin/bash for i in *.JPG; do convert $i -resize 10% $(basename $i .JPG).JPG; […]
Resizing images with Bash Read Post »
If the files have the extension .JPG #!/bin/bash for i in *.JPG; do convert $i -resize 10% $(basename $i .JPG).JPG; […]
Resizing images with Bash Read Post »
How to replace a string in multiple files at once? When there are files in one directory: perl -pi -e
Replacing strings in files with regexp Read Post »
Which FTP server should I install at Ubuntu? VSFTP – simple and easy to configure, can be set up quickly.
Ubuntu which FTP server? Read Post »
CUPS – printing system in Linux CUPS is a modern and universal printing system for Unix systems. It can be
CUPS – printing and print management Read Post »
Solving problem with Gmail in KDE Plasma If you cannot run the Google plasmoid widget and instead of an envelope,
Gmail Plasmoid Python ScriptEngine Read Post »
USB flash drive formatting using Bash 1. First make sure the USB device is not mounted, if so please unmount
Formatting a USB flash drive with Bash Read Post »
How to recover lost data? One of my neighbors came to me a few days ago with a problem… he
Recovering lost data from a drive Read Post »
How to find files in Linux with Bash? File search in Linux: find ./ -name “mozilla.pdf”
Searching for files in Linux with Bash Read Post »
Linux pendrive error! How to scan a pendrive with FAT32? For example, with this command (together with surface scanning): sudo
How to fix file system errors on a pendrive Read Post »
How to check the size of a pendrive? You can check the size of your portable memory with this command:
How to check the size of a flash drive? Read Post »