![]() |
2010-08-13
, 13:07
|
|
Posts: 820 |
Thanked: 436 times |
Joined on May 2010
@ Portsmouth, UK.
|
#81
|
The Following 2 Users Say Thank You to James_Littler For This Useful Post: | ||
![]() |
2010-08-13
, 13:11
|
Posts: 54 |
Thanked: 2 times |
Joined on May 2010
@ Bulacan, Philippines
|
#82
|
![]() |
2010-08-13
, 13:12
|
Posts: 284 |
Thanked: 74 times |
Joined on Mar 2010
@ Wigan, UK
|
#83
|
![]() |
2010-08-13
, 13:20
|
Posts: 219 |
Thanked: 21 times |
Joined on May 2010
|
#84
|
I thinkCode:root unzip /home/user/MyDocs/knight-rider.zip /root/ cd /root/opt/scripts/ chmod +x KR
![]() |
2010-08-13
, 13:36
|
|
Posts: 820 |
Thanked: 436 times |
Joined on May 2010
@ Portsmouth, UK.
|
#85
|
root cd /home/user/MyDocs/ unzip xf knight-rider.zip -C /root/ cd /root/opt/scripts/ chmod +x KR
The Following User Says Thank You to James_Littler For This Useful Post: | ||
![]() |
2010-08-13
, 13:48
|
Posts: 219 |
Thanked: 21 times |
Joined on May 2010
|
#86
|
Ok, try:
So what we're doing is:Code:root cd /home/user/MyDocs/ unzip xf knight-rider.zip -C /root/ cd /root/opt/scripts/ chmod +x KR
gain root access
change directory to /home/user/MyDocs/
unzip, which is the process,
x extracts, f is the file (could be a drive or whatever)
knight-rider.zip is the file to run the command on
-C changes directory before extracting
/root/ tells unzip where to extract to
change directory to /root/opt/scripts/
make KR excecutable
![]() |
2010-08-13
, 14:02
|
|
Posts: 820 |
Thanked: 436 times |
Joined on May 2010
@ Portsmouth, UK.
|
#87
|
root
cp -r /home/user/MyDocs/opt /root cp -r /home/user/MyDocs/usr /root cd /root/opt/scripts/ chmod +x KR
The Following User Says Thank You to James_Littler For This Useful Post: | ||
![]() |
2010-08-13
, 14:14
|
Posts: 219 |
Thanked: 21 times |
Joined on May 2010
|
#88
|
Ok that might make things easier
so you have opt and usr directories from the zip extracted to your MyDocs directory?
If so:
Code:rootCode:cp -r /home/user/MyDocs/opt /root/opt cp -r /home/user/MyDocs/usr /root/usr cd /root/opt/scripts/ chmod +x KR
![]() |
2010-08-13
, 14:23
|
|
Posts: 820 |
Thanked: 436 times |
Joined on May 2010
@ Portsmouth, UK.
|
#89
|
The Following User Says Thank You to James_Littler For This Useful Post: | ||
![]() |
2010-08-13
, 20:16
|
Posts: 219 |
Thanked: 21 times |
Joined on May 2010
|
#90
|
Inside the zip file there are 2 directories/folders, 'opt' and 'usr'.
These 2 directories need to be moved to the folder /root.
The KR file will be in the scripts folder within opt
All that command I gave you did was copied the folder '/home/user/MyDocs/opt' and '/home/user/MyDocs/usr' (which you said you had extracted to MyDocs ) to /root
The next command changed directory to /root/opt/scripts
The next command makes KR executable
Nowhere in there was an unzip/extract command