Active Topics

 



Notices


Reply
Thread Tools
James_Littler's Avatar
Posts: 820 | Thanked: 436 times | Joined on May 2010 @ Portsmouth, UK.
#81
Originally Posted by mangal_sk8erboy View Post
when you say root, I really dont understand.
when you say make /opt/scripts/KR executable, i REALLY dont understand.

the last one i do understand..
but kinda defeats the point doesnt it?
it would be great if you could explain like you would to a 13 year old child.
sorry :P

Code:
root
unzip /home/user/MyDocs/knight-rider.zip /root/
cd /root/opt/scripts/
chmod +x KR
I think
 

The Following 2 Users Say Thank You to James_Littler For This Useful Post:
Posts: 54 | Thanked: 2 times | Joined on May 2010 @ Bulacan, Philippines
#82
...wooooooooow
 
Posts: 284 | Thanked: 74 times | Joined on Mar 2010 @ Wigan, UK
#83
I know pretty much rock all about linux programming, but could it be done using this?

Originally Posted by Matan View Post
Easily done with dbus-scripts. Create a file in directory /etc/dbus-scripts.d/ conaining
Code:
/usr/bin/slide * * org.freedesktop.Hal.Device Condition ButtonPressed cover
And the file /usr/bin/slide will be executed whenever the keyboard is opened or closed.
If we just have it run the kr script instead of the 'slide' file would that work? Would we still have permissions issues needing to be root?
 
Posts: 219 | Thanked: 21 times | Joined on May 2010
#84
Originally Posted by James_Littler View Post
Code:
root
unzip /home/user/MyDocs/knight-rider.zip /root/
cd /root/opt/scripts/
chmod +x KR
I think
root


BusyBox v1.10.2 (Debian 3:1.10.2.legal-1osso30+0m5) built-in shell (ash)
Enter 'help' for a list of built-in commands.

Nokia-N900:~# unzip /home/user/MyDocs/knight-rider.zip /root/Archive: /home/user/MyDocs/knight-rider.zip
caution: filename not matched: /root/
Nokia-N900:~# cd /root/opt/scripts/
-sh: cd: can't cd to /root/opt/scripts/
Nokia-N900:~# chmod +x KR
chmod: KR: No such file or directory
Nokia-N900:~#

help? :$
 
James_Littler's Avatar
Posts: 820 | Thanked: 436 times | Joined on May 2010 @ Portsmouth, UK.
#85
Ok, try:
Code:
root
cd /home/user/MyDocs/
unzip xf knight-rider.zip  -C /root/
cd /root/opt/scripts/
chmod +x KR
So what we're doing is:

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

Last edited by James_Littler; 2010-08-13 at 13:40.
 

The Following User Says Thank You to James_Littler For This Useful Post:
Posts: 219 | Thanked: 21 times | Joined on May 2010
#86
Originally Posted by James_Littler View Post
Ok, try:
Code:
root
cd /home/user/MyDocs/
unzip xf knight-rider.zip  -C /root/
cd /root/opt/scripts/
chmod +x KR
So what we're doing is:

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
again error :s

i havent made a opt/scripts file in root btw. i dont know how. can you give me a command to create file 1st.then copy paste the extracted file(extracted in mydocs already)..and then execute?and how to make an APP button too.

this is my error

root


BusyBox v1.10.2 (Debian 3:1.10.2.legal-1osso30+0m5) built-in shell (ash)
Enter 'help' for a list of built-in commands.

Nokia-N900:~# cd /home/user/MyDocs/
Nokia-N900:/home/user/MyDocs# unzip xf knight-rider.zip -C /root/
unzip: cannot find or open xf, xf.zip or xf.ZIP.
Nokia-N900:/home/user/MyDocs# cd /root/opt/scripts/
-sh: cd: can't cd to /root/opt/scripts/
Nokia-N900:/home/user/MyDocs# chmod +x KR
chmod: KR: No such file or directory
Nokia-N900:/home/user/MyDocs#
 
James_Littler's Avatar
Posts: 820 | Thanked: 436 times | Joined on May 2010 @ Portsmouth, UK.
#87
Ok that might make things easier

so you have opt and usr directories from the zip extracted to your MyDocs directory?

If so:

Code:
root
Code:
cp -r /home/user/MyDocs/opt /root
cp -r /home/user/MyDocs/usr /root
cd /root/opt/scripts/
chmod +x KR

Last edited by James_Littler; 2010-08-13 at 14:10.
 

The Following User Says Thank You to James_Littler For This Useful Post:
Posts: 219 | Thanked: 21 times | Joined on May 2010
#88
Originally Posted by James_Littler View Post
Ok that might make things easier

so you have opt and usr directories from the zip extracted to your MyDocs directory?

If so:

Code:
root
Code:
cp -r /home/user/MyDocs/opt /root/opt
cp -r /home/user/MyDocs/usr /root/usr
cd /root/opt/scripts/
chmod +x KR
no!i have the KR file extracted and ready, that way you can skip the whole UNZIP command.
all i have is the KR file in MyDocs.
i do not have ANYTHING else.i dont know if i have the opt file in the root directory either.
so what i have to do (from what ive read is) i have to paste the KR file inside /root/opt/scripts (which is a default folder?if not please give me a command for this too :$)
and then be able to execute the command too!
thanks alot for your time man.
 
James_Littler's Avatar
Posts: 820 | Thanked: 436 times | Joined on May 2010 @ Portsmouth, UK.
#89
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
 

The Following User Says Thank You to James_Littler For This Useful Post:
Posts: 219 | Thanked: 21 times | Joined on May 2010
#90
Originally Posted by James_Littler View Post
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
AHH FINALY!
Ive got the problem..the two files were inside the knight-rider folder.thats why it wasnt found.
anyways ive done the needfull.but i still cant seem to find KNIGHT rider in the application menu!!
(im almost there!!i can feeel it!!)
 
Reply


 
Forum Jump


All times are GMT. The time now is 08:19.