Comments on: How to Create, Extract and List RAR Files in Linux https://www.tecmint.com/how-to-open-extract-and-create-rar-files-in-linux/ Tecmint - Linux Howtos, Tutorials, Guides, News, Tips and Tricks. Wed, 06 Dec 2023 09:30:06 +0000 hourly 1 By: Ravi Saive https://www.tecmint.com/how-to-open-extract-and-create-rar-files-in-linux/comment-page-1/#comment-2111400 Wed, 06 Dec 2023 09:30:06 +0000 http://www.tecmint.com/?p=832#comment-2111400 In reply to supergirl.

@Supergirl,

Yes, are correct. Engrampa is a graphical user interface (GUI) based archive manager for managing compressed files on Linux, and it supports various archive formats, including ZIP and RAR.

]]>
By: Ravi Saive https://www.tecmint.com/how-to-open-extract-and-create-rar-files-in-linux/comment-page-1/#comment-2111398 Wed, 06 Dec 2023 09:28:41 +0000 http://www.tecmint.com/?p=832#comment-2111398 In reply to Sing Min.

@Sing,

To unrar a .rar file by displaying the percentage status of the extraction without listing all filenames, you can use the -inul (stands for “no list”) option along with the -p option to specify the password if the file is encrypted.

unrar x -pYourPassword -inul archive_name.rar
]]>
By: Ravi Saive https://www.tecmint.com/how-to-open-extract-and-create-rar-files-in-linux/comment-page-1/#comment-2111397 Wed, 06 Dec 2023 09:26:19 +0000 http://www.tecmint.com/?p=832#comment-2111397 In reply to vini.

@Vini,

Many people use WinRAR, and it has been a popular compression tool for Windows users for many years.

While 7-Zip is also a widely used compression tool, but does have some differences as compared to WinRAR, including the behavior you’ve noted regarding updating existing archives. Users often choose between these tools based on their specific requirements.

Ultimately, the choice between WinRAR and 7-Zip depends on individual preferences and the specific needs of the user.

]]>
By: Ravi Saive https://www.tecmint.com/how-to-open-extract-and-create-rar-files-in-linux/comment-page-1/#comment-2111396 Wed, 06 Dec 2023 09:23:42 +0000 http://www.tecmint.com/?p=832#comment-2111396 In reply to NeophobiA.

@NeophobiA,

Your attempt to create a RAR archive with specified options looks quite close! However, there’s a small adjustment needed in the placement of the comment file option.

rar a -v2048M -vn -m5 -z"/Location/of/comment/file/COMMENT.txt" archivename.rar DirectorNameOfSourceFiles
]]>
By: Ravi Saive https://www.tecmint.com/how-to-open-extract-and-create-rar-files-in-linux/comment-page-1/#comment-2111395 Wed, 06 Dec 2023 09:22:12 +0000 http://www.tecmint.com/?p=832#comment-2111395 In reply to max.

@Max,

To extract multiple RAR files into a single or specific directory, you can use the unrar command with wildcards to match the file names.

unrar x '*.rar' /path/to/destination
]]>