Problem installing rar and unrar

 
Thread Tools Search this Thread
Operating Systems Linux Fedora Problem installing rar and unrar
# 1  
Old 03-16-2012
Problem installing rar and unrar

Good day all,

I am trying to install rar and unrar on fedora 16.


In terminal root, when I try to do :
# cp rar unrar /bin

I get the following error message:
cp: cannot stat `rar': No such file or directory
cp: cannot stat `unrar': No such file or directory

can anyone please suggest something to help.
-peter
# 2  
Old 03-16-2012
I suspect it means what it says -- they're not in the same folder as your terminal is looking inside.

Where do you have these files?
# 3  
Old 03-16-2012
hi Corona,

Please keep in mind I am extremely new to Linux.
I made to attempts to get it to work , without success.

1) Firstly, I tried to be in "bin" folder:

[root@peterpc bin]# cp rar unrar /bin
cp: cannot stat `rar': No such file or directory
cp: cannot stat `unrar': No such file or directory

2) In the 2nd attempt ,I also tried to be in the "rar" folder :
[peter@peterpc rar]$ cp rar unrar /bin
cp: cannot create regular file `/bin/rar': Permission denied
cp: cannot create regular file `/bin/unrar': Permission denied

can you suggest anything?

appreciate the help,
peter
# 4  
Old 03-16-2012
You need to be in whatever folder rar and unrar are in. I don't know where that is, not being able to see your computer from here.

Surely it's somewhere under your home folder, though. Try this:

Code:
cd ~/
find . -type f -name rar

That will hunt for any file named 'rar' anywhere inside you home directory or any of its subfolders.

~/ is short-form for your home-folder, so it'd amount to cd /home/myusername
# 5  
Old 03-16-2012
would you recommend:

$ sudo cp rar unrar /bin

since this may give me permission?
# 6  
Old 03-16-2012
If you have found the files, then yes.

Though I might suggest /usr/bin instead of /bin. /bin sometimes isn't in a normal user's PATH so could be annoying to use.
# 7  
Old 03-16-2012
thanks. rar works.

I am now looking for the extracted files. The name of the file that was extracted is "Math43.iso"

Without success ,I am trying to use the "find" command to locate it :
$ find . -type f -name Math

thanks
-peter

---------- Post updated at 07:48 PM ---------- Previous update was at 07:47 PM ----------

correction :

$ find . -type f -name Math43

---------- Post updated at 09:35 PM ---------- Previous update was at 07:48 PM ----------

please ignore this last messgae , since my .rar file was corrupt.

thanks for the help
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

How to install unrar?

I need to extract a ,rar file and getting the below error while using unrar e filename.rar error: ksh: unrar: not found. I guess I need to install unrar. please let me know how to install unrar. my os is - SunOS e08k24 5.10 Generic_141444-09 sun4u sparc SUNW,Sun-Fire-880 (1 Reply)
Discussion started by: lohithsunny
1 Replies

2. Shell Programming and Scripting

unrar files

Hi, I have two .rar files on unix server. but how to unrar these files ?? (6 Replies)
Discussion started by: milink
6 Replies

3. Shell Programming and Scripting

unrar - get the name of extracted file

If I have a script that is using unrar e file.part1.rar How does the script get the name of the extracted file if I don't know the extension of the file? In my example the name would be file.***, but I wouldn't know the extension. ---------- Post updated at 05:13 PM ---------- Previous... (0 Replies)
Discussion started by: locoroco
0 Replies

4. Solaris

unrar doesn't seem to install properly

Hi, I downloaded unrar from sun-freeware website (unrar-3.68-sol8-sparc-local.gz). After gunzip, I then did: install -c /usr/local unrar-3.68-sol8-sparc-local I'm not sure if that was right. Am I installing it correctly? Hope you can help as I need to open .rar files immediately. ... (4 Replies)
Discussion started by: daytripper1021
4 Replies

5. Shell Programming and Scripting

Simple unrar script

I am not a programer so I need a litle help here. On linux I have installed unrar. What I need is a script which will unrar all rar files in folders and subfolders and subfolders of subfolders, then check this files which are unpacked and then delete this rar files if check is ok. If someone can... (2 Replies)
Discussion started by: blisk
2 Replies

6. Shell Programming and Scripting

unrar multiple files with password

The problem: how to unrar multiple rar files with known password This works fine: but how to/what to implement to prevent asking me for password each time Have tried: but it wont work. Any help appreciated. (2 Replies)
Discussion started by: vampirex
2 Replies

7. Solaris

Solaris 10,audio don't work and unrar needed

Hi, I'm here again for newbie questions :) I've installed Solaris 10 but audio don't work.I've a Realtek integrated peripheral,listed in Sun Hcl.The volume control is ok also.But nothing came from speakers. I need to install unrar also,I've download it from here Freeware for Solaris with... (1 Reply)
Discussion started by: bgf0
1 Replies

8. UNIX for Dummies Questions & Answers

Unrar Multiple Files with Command

I work with multiple archive files, mostly rar. I understand the basics of rar and zip. I'm looking for a way to decompress multiple rar files with a single command. Hopefully each file would be unrared into dir with same name as archive. I normally just do this manually, but sometimes I'm... (2 Replies)
Discussion started by: dobbs
2 Replies

9. UNIX for Dummies Questions & Answers

unrar on MPRAS (UNIX)

I am wanting to compile unrar on our MPRAS UNIX system. The currently available source (from www.rarlab.com) does not support this system and I am not sure how to configure the makefile to work. Has anyone been able to get this to work on MPRAS and can supply me with some direction? Thanks... (0 Replies)
Discussion started by: Mr C
0 Replies

10. UNIX Desktop Questions & Answers

file zip,rar,tar,compress,uncompress,unzip,unrar

i want know how to compress and uncompress file using unix, compress uncompress,zip,unzip,rar,unrar,how its work and more about this.:confused: (1 Reply)
Discussion started by: ismael xavier
1 Replies
Login or Register to Ask a Question