Sponsored Content
Full Discussion: How can i open rar files
Top Forums UNIX for Dummies Questions & Answers How can i open rar files Post 302346771 by abu_malek on Monday 24th of August 2009 05:00:34 AM
Old 08-24-2009
How can i open rar files

Is there a way to open rar files on linux
i would really appretiate if u would help
Smilie
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

extracting .rar files

Hi, Can someone throw light on opening a .rar file? thanks, sskb (5 Replies)
Discussion started by: sskb
5 Replies

2. UNIX for Dummies Questions & Answers

how to extract a .rar file

Hi ! I have a abc.rar file. I want to extract this file.. pls help. OS Details : SunOS papillon 5.10 Generic_127111-11 sun4us sparc FJSV,GPUZC-M (1 Reply)
Discussion started by: dashok.83
1 Replies

3. UNIX for Dummies Questions & Answers

extract rar/zip files from pc DIRECTLY on xbox (FTP)

Hello I've an old xbox connected to Ubuntu 8.04 with an ethernet cable. I use gFTP to transfer files on xbox (through FTP). When I have to transfer a rar file, first of all I have to extract it on ubuntu, then on xbox. I would like to transfer rar files directly on xbox. Is it possible with... (4 Replies)
Discussion started by: paolobitta
4 Replies

4. Red Hat

How to open RAR files?

May be this is a newbie question but i want to know hoe to open the RAR file in linux? (1 Reply)
Discussion started by: ashok.g
1 Replies

5. UNIX for Dummies Questions & Answers

Help with rar

Hi UNIX experts, I am stuck on a task due to ignorance with bash and all those commands. I have thousand of split archive files on a folder called downloads Each file is named as below: 0001.part1.rar 0001.part2.rar 0001.part3.rar 0002.part1.rar 0002.part2.rar 0003.par1.rar... (5 Replies)
Discussion started by: farneville
5 Replies

6. Shell Programming and Scripting

Searching for a string in .PDF files inside .RAR & .ZIP archives.

Hi, I have got a large number of .PDF files that are archived in .RAR & ZIP files in various directories and I would like to search for strings inside the PDF files. I would think you would need something that can recursively read directories, extract the .RAR/.ZIP file in memory, read the... (3 Replies)
Discussion started by: lewk
3 Replies

7. Solaris

Extract .rar format files in Solaris

Hi All, Is there way to extract the .rar format files in Solaris Thanks, Mani Muthu (3 Replies)
Discussion started by: k_manimuthu
3 Replies

8. Red Hat

Extract .rar format files in Red Hat

Hi All, Is there way to extract the .rar format files in red hat server. Thanks, Mani Muthu (1 Reply)
Discussion started by: k_manimuthu
1 Replies

9. UNIX for Dummies Questions & Answers

Unzip a .rar file

Hi, How to unzip a .rar file in unix. I tried unrar command but it doesnt work. Any help will be appreciated Thanks (10 Replies)
Discussion started by: irudayaraj
10 Replies

10. UNIX for Beginners Questions & Answers

Rar files

hi unix expert is there any program in linux to compress files or directory with rar (.rar)? i am using centos 7 many thanks samad (1 Reply)
Discussion started by: abdossamad2003
1 Replies
RAR_SOLID_IS(3) 							 1							   RAR_SOLID_IS(3)

RarArchive::isSolid - Check whether the RAR archive is solid

       Object oriented style (method):

SYNOPSIS
public bool RarArchive::isSolid (void ) DESCRIPTION
Procedural style: bool rar_solid_is (RarArchive $rarfile) Check whether the RAR archive is solid. Individual file extraction is slower on solid archives. PARAMETERS
o $rarfile - A RarArchive object, opened with rar_open(3). RETURN VALUES
Returns TRUE if the archive is solid, FALSE otherwise. EXAMPLES
Example #1 Object oriented style <?php $arch1 = RarArchive::open("store_method.rar"); $arch2 = RarArchive::open("solid.rar"); echo "$arch1: " . ($arch1->isSolid()?'yes':'no') ." "; echo "$arch2: " . ($arch2->isSolid()?'yes':'no') . " "; ?> The above example will output something similar to: RAR Archive "C:php_rar runk estsstore_method.rar": no RAR Archive "C:php_rar runk estssolid.rar": yes Example #2 Procedural style <?php $arch1 = rar_open("store_method.rar"); $arch2 = rar_open("solid.rar"); echo "$arch1: " . (rar_solid_is($arch1)?'yes':'no') ." "; echo "$arch2: " . (rar_solid_is($arch2)?'yes':'no') . " "; ?> PHP Documentation Group RAR_SOLID_IS(3)
All times are GMT -4. The time now is 07:19 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy