LINUX GENERATION

project 1

Comandi da Riga di Comando

Aggiornamento del Sistema:
sudo apt-get update
sudo apt-get upgrade

Appfinder:
sudo apt-get update
sudo apt-get install xfce4-appfinder

Bluegriffon:
wget -q -O - http://archive.getdeb.net/getdeb-archive.key | sudo apt-key add -
sudo sh -c 'echo "deb http://archive.getdeb.net/ubuntu trusty-getdeb apps" >> /etc/apt/sources.list.d/getdeb.list'
sudo apt-get update
sudo apt-get install bluegriffon

Chromium:
sudo apt install chromium-browser chromium-browser-l10n

Cinelerra:
sudo apt-add-repository ppa:cinelerra-ppa/ppa
sudo apt-get update
sudo apt-get install cinelerra-cv

ClipGrab:
sudo add-apt-repository ppa:clipgrab-team/ppa
sudo apt-get update
sudo apt-get install clipgrab

Copiare un file:
sudo cp file_da_copiare directory_di_destinazione

Copiare una cartella:
sudo cp -r cartella_da_copiare directory_di_destinazione

EasyTAG:
sudo add-apt-repository ppa:amigadave/ppa
sudo apt-get update
sudo apt-get install easytag

Elementary Tweaks:
sudo apt install software-properties-common
sudo add-apt-repository ppa:philip.scott/elementary-tweaks
sudo apt install pantheon-tweaks

Fedora Media Writer:
sudo dnf install liveusb-creator

Fedy:
sudo dnf install https://dl.folkswithhats.org/fedora/$(rpm -E %fedora)/RPMS/folkswithhats-release.noarch.rpm
sudo dnf install https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm
https://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm
sudo dnf install fedy

FFmpeg:
sudo add-apt-repository ppa:djcj/hybrid
sudo apt-get update
sudo apt-get install ffmpeg

Firefox:
sudo apt install firefox firefox-locale-it

Fonts di Microsoft Windows:
sudo apt-get update
sudo apt-get install ttf-mscorefonts-installer

Gnome Character Map:
sudo apt-get update
sudo apt-get install gucharmap

Gnome Multi Writer:
sudo dnf install gnome-multi-writer

HTTrack Website Copier:
sudo apt-get update
sudo apt-get install webhttrack

Indicator Brightness:
sudo add-apt-repository ppa:indicator-brightness/ppa
sudo apt-get update
sudo apt-get install indicator-brightness

Installare pacchetti .deb:
sudo apt install ./filename.deb

Installare Programmi in Manjaro:
sudo pacman -S nomeprogramma
sudo yaourt nomeprogramma

JDownloader x86:
cd
wget http://installer.jdownloader.org/JD2SilentSetup_x86.sh
chmod +x JD2SilentSetup_x86.sh
sh JD2SilentSetup_x86.sh

JDownloader x64:
cd
wget http://installer.jdownloader.org/JD2SilentSetup_x64.sh
chmod +x JD2SilentSetup_x64.sh
sh JD2SilentSetup_x64.sh

Libreoffice Writer:
sudo apt-get update
sudo apt-get install libreoffice-writer
sudo apt-get install libreoffice-l10n-it
sudo apt-get install libreoffice-help-it

Manjaro - aggiornare pacchetti:
sudo pacman -Syu

Manjaro - Freetube:
sudo snap install freetube

Manjaro - mintstick:
sudo pacman -S mintstick

Manjaro - qview:
wget https://builds.garudalinux.org/repos/chaotic-aur/x86_64/qview-6.1-2-x86_64.pkg.tar.zst
sudo pacman -U --noconfirm qview-6.1-2-x86_64.pkg.tar.zst

Manjaro - snap:
sudo pacman -S snapd
sudo systemctl enable --now snapd.socket

Manjaro - VLC:
sudo pacman -S vlc
sudo pacman -Syu --noconfirm vlc qt4 qtcurve-qt4

Manjaro - yt-dlp:
sudo pacman -S yt-dlp

Mozilla Thunderbird:
sudo apt-get update
sudo apt-get install thunderbird
sudo apt-get install thunderbird-locale-it

MP3Gain:
sudo apt-get update
sudo apt-get install easymp3gain-gtk

Pimagizer:
sudo add-apt-repository ppa:vfrico/stable
sudo apt-get update
sudo apt-get install pimagizer

Pulizia del Sistema:
sudo apt-get --purge autoremove
sudo apt-get autoclean
sudo apt-get clean

Renderizzare Fonts Debian:
Da Terminale digitare:
sudo mousepad /etc/fonts/local.conf
ed incollare il seguente codice:
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig>
<match target="pattern">
<edit mode="append" name="antialias">
<bool>true</bool>
</edit>
<edit mode="append" name="hinting">
<bool>true</bool>
</edit>
<edit mode="append" name="autohint">
<bool>false</bool>
</edit>
<edit mode="append" name="hintstyle">
<const>hintslight</const>
</edit>
<edit mode="append" name="rgba">
<const>rgb</const>
</edit>
<edit mode="append" name="lcdfilter">
<const>lcddefault</const>
</edit>
<edit mode="append" name="embeddedbitmap">
<bool>false</bool>
</edit>
</match>
<selectfont><rejectfont><pattern>
<patelt name="scalable"><bool>false</bool></patelt>
</pattern></rejectfont></selectfont>
</fontconfig>

Ruotare Video da Terminale:
mencoder nomevideo.mp4 -o output.mp4 -vf rotate=1 -oac copy -ovc lavc

Spostare un file:
sudo mv file_da_spostare directory_di_destinazione

Spostare una cartella:
sudo mv cartella_da_spostare directory_di_destinazione

Supporto Pacchetti i386 per Distribuzioni amd64:
sudo dpkg --add-architecture i386

Sweeper:
sudo dnf install sweeper

TimeShift:
sudo apt-add-repository -y ppa:teejee2008/ppa
sudo apt-get update
sudo apt-get install timeshift

WoeUSB:
sudo add-apt-repository ppa:tomtomtom/woeusb -y
sudo apt update
sudo apt install woeusb woeusb-frontend-wxgtk -y

XFCE Theme Manager:
sudo add-apt-repository ppa:rebuntu16/other-stuff
sudo apt update
sudo apt install xfce-theme-manager

Yarock:
sudo add-apt-repository ppa:nilarimogard/webupd8
sudo apt-get update
sudo apt-get install yarock

Youtube-dlG:
sudo apt-get update
sudo apt-get install youtube-dlg
project 4

Image Magick

Convertire Formato Immagine:
convert nomefoto.jpg nomefoto.png

Ridimensionare Immagine con Dimensione Fissa:
convert nomefoto.jpg -resize 600x400\! nomefoto.jpg

Ridimensionare Immagine in Altezza:
convert nomefoto.jpg -resize x400 nomefoto.jpg

Ridimensionare Immagine in Larghezza:
convert nomefoto.jpg -resize 400 nomefoto.jpg

Ridimensionare con Dimensione Fissa tutte le Immagini di una cartella:
mogrify -resize 600x400\! *.jpg

Ridimensionare in Altezza tutte le Immagini di una cartella:
mogrify -resize x400x *.jpg

Ridimensionare in Larghezza tutte le Immagini di una cartella:
mogrify -resize 400x *.jpg

Autocrop:
convert foo.jpg -fuzz 28% -trim +repage foo_crop.jpg

Convertire Immagine in Scala di Grigio:
convert -colorspace gray nomefoto.jpg nomefoto.jpg

Effetto Carta Carbone:
convert -charcoal 3 nomefoto.jpg nomefoto.jpg

Effetto Seppia:
convert -sepia-tone 80% nomefoto.jpg nomefoto.jpg

Invertire Colori:
convert -negate nomefoto.jpg nomefoto.jpg

Ruotare Immagine a Destra:
convert nomefoto.jpg -rotate 90 nomefoto.jpg

Ruotare Immagine a Sinistra:
convert nomefoto.jpg -rotate 270 nomefoto.jpg

Ruotare a Destra tutte le Immagini presenti in una cartella:
mogrify -rotate 90 *.jpg

Ruotare a Sinistra tutte le Immagini presenti in una cartella:
mogrify -rotate 270 *.jpg
project 6

Eseguibili Open Source per Windows

AbiWord 2.8.6
AdFender
Acrobat Reader 4.0.5
Acrobat Reader 6.0
Acrobat Reader 7.0.5
Acrobat Reader 8.1.0
Acrobat Reader 9.4.0
Acrobat Reader 10.1.0
Acrobat Reader 11.0
Advanced IP Scanner
Advanced Process Terminator 4.2
AdwCleaner
All In One Runtimes 2.4.8
AMD Driver Autodetect
AntiMicro 2.24 win64
Audacity 2.1.0
Autoruns 13.70
Avastclear
Balena Etcher 1.4.9 win64
BlueGriffon 2.3.1
BurnAware Free 11.6
Caffeine
CDex 1.98
CD ROM Apri e Chiudi
CCleaner 4.17.4808
Chromium
ClipGrab
CoffeeCup Free FTP 1.0
Cool Page 2.6
CPU-Z
Cross FTP 1.99.9
Dell SupportAssist
Device Cleanup 1.2.1 win32
Device Cleanup 1.2.1 win64
DiskInternals Linux Reader 2.6
Display Driver Uninstaller 17.0.7.3
Driver Booster
Driver Easy
DVD Decrypter 3.1.7.0
DVD Identifier 3.2
DVD Shrink 3.2 win32
DVD Styler 3.0.4 win64
EaseUS Partition Master Free 12.5
Eliminare Coda di Stampa
Everything 1.3.4.686 win32
Everything 1.3.4.686 win64
FileFormatConverters
FileTypeMan win32
FileTypeMan win64
FileZilla
Flush DNS, Release TCP/IP, Reset Winsock [esegui come admin]
flux 4.120
Free Download Manager
Free MP3 Cutter Joiner 10.8
Free Video Cutter Joiner 10.6
Free Video Flip And Rotate 2.2.41.831
Free Video to JPG Converter 5.0.101.201
FreeVimager 9.9.22
FreeTube
FrontSketch-2.1.8.0
Geany
Gemc 2.0
GnuCash 2.6.19
Google Drive Sync
Google Earth
HandBrake 1.0.3 win32
HandBrake 1.0.3 win64
HP USB Disk Storage Format Tool 2.2.3
ImageGlass 7.6.4.30 win32
ImageGlass 7.6.4.30 win64
Imagine 1.1.1 win32
Imagine 1.1.1 win64
Infra Recorder 0.53 win32
Infra Recorder 0.53 win64
Internet Explorer 11 win32
Internet Explorer 11 win64
Intel Driver Update Utility
JDownloader 2 win32
JDownloader 2 win64
Kaspersky Virus Removal Tool
Lazesoft Recovery Suite 4.2 Home Edition
MailPassView
MDF to ISO
Microsoft Media Creation Tool 1803
Microsoft Office 2011 Home & Business for Mac ITA
Microsoft Office 2011 Home & Business for Mac ENG
Microsoft Office 2013 win32 ITA
Microsoft Office 2013 win32 ENG
Microsoft Office 2016 win32 ITA
Microsoft Office 2016 win32 ENG
Microsoft Office 2019 win64 ITA
Microsoft Office 2019 win64 ENG
Microsoft Office 2021 win64 ITA
Microsoft Office 2021 win64 ENG
Microsoft Security Essentials win32
Microsoft Security Essentials win64
Microsoft Windows 7 USB-DVD
Mozilla Firefox
MP3Gain 1.2.5
Mp3tag 2.85
MP4Tools 3.5 win32
My Money 3
NetTime 3.14
Neutron 1.07
NewFileTime 3.35 win32
NewFileTime 3.35 win64
Norton Power Eraser
Notepad2 4.2.25
NRG to ISO 1.0
NVIDIA Smart Scan
PangoBright
PhotoRec e TestDisk win32
PhotoRec e TestDisk win64
PhotoWipe 1.21
Picasa 3.9.138.150
Prima Nota Semplice 2.2.2
PSPad
qBittorrent
Rufus
Safari 5.1.7
SaveAsPDF
SD Card Formatter 5.0.2 MacOS
SD Card Formatter 5.0.2 Windows
SDFormatter 4.0
SpeedFan 4.52
SmillaEnlarger 0.9.0 Portable
Stampa Copertine 3.0.9
StarOffice 5.2 ITA
SumatraPDF 2.5.2
SystemLook_x64
TouchFreeze 1.1.0
Unchecky 1.2
Ultrasurf 21.32
Universal Watermark Disabler
Unlocker 1.9.2
USB Disk Eject
vanBasco's Karaoke Player 2.53
VidCoder 2.62 win64
VidCoder 2.62 portable win64
VLC 2.2.8 win32
VLC 2.2.8 win64
WebBrowserPassView
Winamp 2.72
Winamp 2.81
Winamp 5.666
Winamp 5.8.3660 beta
Winamp 5.90
Winamp 5.91
Winamp Language Packs 1.4
WinBin2Iso win32
WinBin2Iso win64
WinCDEmu 4.0 portable
WinCDEmu 4.1
Windows Essentials
Windows Mostra Desktop classico
Windows Visualizzatore Immagini classico
Windows Update Blocker
Wise Data Recovery 3.83
WPD
Youtube-dlG 0.3.7
Youtube-dlG 0.3.7 portable
project 7

Youtube-dl

Installazione Ubuntu:
sudo apt update
sudo apt install youtube-dl

Download Video Ubuntu:
youtube-dl urlvideo

Download Video Manjaro (yt-dpl):
yt-dlp urlvideo

Download Audio:
youtube-dl urlvideo --extract-audio --audio-format mp3

Download Video in formato MP4:
youtube-dl --recode-video mp4 urlvideo

Download best audio-video quality:
youtube-dl -f 'bestvideo[ext=mp4]+bestaudio[ext=m4a]/mp4' urlvideo