Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.
I'm having a ton of trouble connecting to my iPods IP address, connection always fails. I am using wifi in the college dorm which I believe could be the problem, is that assumption correct? If that is the problem is there either a way around it, or is there another way to access the root without using wifi?
If not looks like I'll have to wait till the end of this week for fall break and finish adding the manual apps at home.

Any clear answer would be great as I am a hacking n00b.
 
i have another problem. im almost done...but when i type the command in putty, it says "glob6 not found". what does it mean? i used the last version of touch free to jailbreak my ipod, then i used winscp to copy the apps to my ipod(i drag the app from my comp to the ipod in /applications/ and hit copy).i only need this command to work and im done.
 
i have another problem. im almost done...but when i type the command in putty, it says "glob6 not found". what does it mean? i used the last version of touch free to jailbreak my ipod, then i used winscp to copy the apps to my ipod(i drag the app from my comp to the ipod in /applications/ and hit copy).i only need this command to work and im done.

use the full path name... i.e. to run chmod run '/bin/chmod' not just 'chmod'
 
sorry i dont understand... ok so i must write /bin/chmod -(minus)Rf a+x /applications/*(without minus) and it will work?because i tried and it doesnt.just tell me what YOU wrote.
 
sorry i dont understand... ok so i must write /bin/chmod -(minus)Rf a+x /applications/*(without minus) and it will work?because i tried and it doesnt.just tell me what YOU wrote.

Ok, lets run through the command...understanding it will make it easier to trouble shoot.

the first part is the command itself:
/bin/chmod

where / is the root directory, the starting point of the filesystem, like c:\ in Windows.

bin is the first directory, like c:\bin

/ is just a directory identifier, like \ in Windows

chmod is the actual program to run, so in Windows this would be like c:\bin\chmod.exe (it doesnt exist...well it does in Cygwin, but thats another story)

so the first part says lets run the chmod program that sits in the bin directory

------------


then rest of the line are parameters, or arguments i.e. what objects to manipulate and how to manipulate them

In unix arguments are often (not always) preceded with a minus (in Windows this is typically a /)

so the -Rf is two arguments, R = recursive, meaning do every subdirectory and file within, f = force, or dont prompt for every change

the next part is telling the command to give all users the right to execute the program or file, a+x means all users + (add) x (execute)

the last part is the object itself, or the file or folder, in this case, the /Applications folder, which is like c:\applications in Windows

you can specify /Applications for the folder itself, or /Applications/* for all files in the /Applications folder, or /Applications/myfile.txt for just the myfile.txt file in the /Applications folder.

So to recap:

/bin/chmod -Rf a+x /Applications/*

Says: Hey you, chmod sitting in the /bin directory, walk the tree recursively and dont prompt for any confirmations, and while you're at it, give all users the right to execute all files and folders in the /Applications folder.

Make sense?
:p


Unix really is a far more elegant OS
 
dude! thanks a lot for taking your time to explain, i really apreciate but i did stg else and its working now :p

but really your a nice guy!
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.