Anyone's itunes keep on freezing, mine freezes all the time and then i can't force quite or anything....
whats the terminal command to force quite
thanks
Here's a command that, while rather odd, displays the pid (process ID) of the iTunes application when it is running. Cut and paste it so you don't have to type such an awful thing yourself.
ps -x | grep '[i,i]Tunes ' | awk '{print $1}'
(Ten points to anyone who can explain why I used [i,i]Tunes instead of iTunes.)
Here's a command that, while rather odd, displays the pid (process ID) of the iTunes application when it is running. Cut and paste it so you don't have to type such an awful thing yourself.
ps -x | grep '[i,i]Tunes ' | awk '{print $1}'
(Ten points to anyone who can explain why I used [i,i]Tunes instead of iTunes.)
Well, y-y-yes, but that's n-n-not why I typed that command on my P-P-Powerbook. (My apologies to those with speech problems.)
If you use a grep command for "iTunes" you find two processes with that word in their "ps" line, namely the real iTunes and the grep command itself, since it too contains the word iTunes. By using the bracketed expression, which means "letter i or letter i", you find the real iTunes process but not the grep command! One of those sneaky Unix tricks that shows how you can be clever with shell commands and why it can also be infuriating.
The trailing space after 'Tunes ' avoids finding other processes such as iTunesHelper.app.
yea... i restarted my computer....
when i copy and paste that in terminal, nuthing happens, unless i'm doing something wrong, i think its me though cause i have no idea how to use terminal.... 😱😉
yea... i restarted my computer....
when i copy and paste that in terminal, nuthing happens, unless i'm doing something wrong, i think its me though cause i have no idea how to use terminal.... 😱😉
If "nothing happens" means you simply get another prompt in Terminal, that would indicate either that my command didn't work or that iTunes isn't running. Since you restarted, it must be the latter!