Debian CLI
General CLI Commands
Archives - rar & zip
How to Create, Extract and List RAR Files in Linux
rar
Installation
bash
apt install rar unrarCreation
bash
rar a tecmint.rar tecmintExtraction
bash
unrar x tecmint.rarList Files
bash
unrar l tecmint.rarzip
Installation
bash
apt install zip unzipCreation
bash
zip gfg.zip first.txt second.txtExtraction
bash
unzip latest.zipTo suppress the printing of messages, use the -q option:
bash
unzip -q filename.zipList Files
bash
unzip -l latest.zipSSH
ssh remote host identification has changed
Node.js
How To Install Node.js on Debian 10
bash
apt updatebash
apt install nodejsbash
node -vThis is optional, npm should be installed with Node.js.
bash
apt install npmbash
npm -v