How To Split A File In Two Rar Parts?


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers How To Split A File In Two Rar Parts?
# 15  
Old 02-11-2014
hey thanks it Worked!!! You Are The Best Smilie
# 16  
Old 02-11-2014
To some extend it is important where and how you are going to 'rar' the file/s.

Let me google that for you
1st & 2nd post are usable Smilie

In short, try to include this string: -x .[a-z]*
Currently on a windows machine, so i cant verify.

Hope this helps

EDIT:
Further, it seems this syntax is wrong formed...
Code:
rar a -v3M tester Avicii.mp3.rar

So in total, try someting like:
Code:
cd tester
rar a -v3M  -x .[a-z]* Avicii.mp3.rar

hth

Last edited by sea; 02-11-2014 at 09:16 AM.. Reason: Code fix according to blog ;)
# 17  
Old 02-11-2014
Quote:
Originally Posted by sea
To some extend it is important where and how you are going to 'rar' the file/s.

Let me google that for you
1st & 2nd post are usable Smilie

In short, try to include this string: -x .[a-z]*
Currently on a windows machine, so i cant verify.

Hope this helps

EDIT:
Further, it seems this syntax is wrong formed...
Code:
rar a -v3M tester Avicii.mp3.rar

So in total, try someting like:
Code:
cd tester
rar a -v3M  -x .[a-z]* Avicii.mp3.rar

hth
It Didn't Work!!! It Says Command Not Found Please HelpSmilie
# 18  
Old 02-11-2014
What is the output of:
Code:
pwd
ls -ld

from where you executed: rar a -v3M -x .[a-z]* Avicii.mp3.rar?

Command not found indicates that it didnt find the command, probably rar...
Did you delete .bashrc? /*sarcasic smile*/
# 19  
Old 02-11-2014
OK Anyways I Deleted .bash files Smilie. the server seems to be fine. actually the bash files come back every time i log out and log in via ssh. so i just delete them and then rar my file so its ok i guess.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Split the all files in to 8 parts in a folder

Hi, I have different files and i need to split the files in that folder split in to 8 parts with equal number of lines....! any fastest way of doing this in awk. for an example i have a file called "BillingDetails_BaseFile.csv" with total line count 65536 and i need to split in to 8 parts... (1 Reply)
Discussion started by: Raghuram717
1 Replies

2. Shell Programming and Scripting

Split line in 4 parts

Hi Guys, I have file A.txt 1 2 3 4 5 6 7 8 9 10 11 Want Output :- 1 2 3 (3 Replies)
Discussion started by: pareshkp
3 Replies

3. UNIX for Dummies Questions & Answers

Split a file into parts only if the first field is different

Hi, I have a file like this: aaa 123 aaa 223 aaa 225 bbb 332 bbb 423 bbb 6755 bbb 324 ccc 112 ccc 234 ccc 897 Which I need to split into several files, something like split -l 3 but the way that the lines with the same names would only go into one file: (7 Replies)
Discussion started by: coppuca
7 Replies

4. Shell Programming and Scripting

Split file into n parts.

Hi all: I have a 5-column tab-separated file. The only thing that I want to do with it is to split it. However, I want to split it with a 80/20 proportion -- randomized, if possible. I know that something like : awk '{print $0 ""> "file" NR}' RS='' input-file will work, but it only... (6 Replies)
Discussion started by: owwow14
6 Replies

5. Shell Programming and Scripting

Incrementing parts of ten digits number by parts

I have number in file which contains date and serial number: 2013101000. The last two digits are serial number (00). So maximum of serial number is 100. After reaching 100 it becomes 00 with incrementing 10 which is day with max 31. after reaching 31 it becomes 00 and increments 10... (31 Replies)
Discussion started by: Natalie
31 Replies

6. UNIX for Dummies Questions & Answers

Using a rar file on a suse linux

Hi, I have this file in .rar format and need to use it on a suse linux system. I have transfered the file into the system and tried to unpack it using unrar command but i got this l# unrar e Alarm.rar UNRAR 3.51 freeware Copyright (c) 1993-2005 Alexander Roshal ??? - the file header... (5 Replies)
Discussion started by: mena
5 Replies

7. UNIX for Dummies Questions & Answers

Move a .zip file to a unix system in .rar format

Hi all, need help here in moving a .zip file into a suse system and want it to be in .rar format. How can i do this? (1 Reply)
Discussion started by: mena
1 Replies

8. 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

9. 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

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