Decompress 7z files from Linux CLI ====================================== This is usefull when trying to decompress from my Pi2019 server for exsample (I cant close the window, but atleast dont need to move the archive to my laptop, then move back). To install: sudo apt install p7zip-full --------------------------------- To run: Make sure I got premissions to write to (Or I waste large amounts of time that leads to an error at the end) that folder though: sudo chmod -R 777 /NAS Then navagate to the right folder I want to exstract to: cd target_directory Then exstract the file with: 7z x /path/to/archive.7z Then regive premissions so I can access from laptop: sudo chmod -R 777 /NAS ---------------------------------------------------------- Source: https://www.simplified.guide/linux/extract-7z-file Date: September 19th, 2021