How extract 7zip file on Linux
This evening I need to extract a file with .7z extension. Guess what? I don’t know how to do that. I probably don’t even have 7zip program installed on my Fedora machine. Here’s something to remind myself how to get it working. First let’s find out what package we need to install: [root@watamem ~]# dnf search 7zip Last metadata expiration check: 3:14:50 ago on Thu Oct 20 20:39:30 2016. ================ N/S Matched: 7zip ================== p7zip-plugins.x86_64 : Additional plugins for p7zip p7zip.x86_64 : Very high compression ratio file archiver p7zip-gui.x86_64 : 7zG - 7-Zip GUI version So, it seems we need to install p7zip. ...