Help!  need help w/ terminal...

my friend borrowed my computer to try and rip videos from their ipod to my computer then move them to another ipod...anyway, she typed something in terminal and now i have a "network", "servers", ".DS_Store" icons on my desktop and seemingly everywhere else...all my other icons are dim...how can i fix this?
powerbook g4   Mac OS X (10.4.9)  

used another post by another user.

Similar Messages

  • How to run hardware diagnostic with the help of terminal?

    how to run hardware diagnostic with the help of terminal? any cmds

    Macs newer than 10.7's release just need to boot with the 'D' key.  
    Otherwise you need to find the original installer disk of the Mac, or call AppleCare for it to be able to run the hardware diagnostic.

  • Need a quick bit of help using Terminal

    I have something simple I want to do with Terminal but I am obviously doing it wrong!
    I want to change the format of screen grabs (I have to do a ton of them at work and I'm tired of re-saving PNGs as JPGs).
    I've read I need to type the line into Terminal:
    defaults write com.apple.screencapture type jpg
    So I did. Then I logged out and logged back in to my computer (just for good measure? I dunno). It's still saving my screen grabs as PNGs.
    It's got to be something simple that I'm doing wrong. Thanks in advance for any help!

    As an easy way to change the user interface aspect of Finder to save
    screenshots as jpg instead of png, I've used OnyX from Titanium
    Software, a free running interface utility that can so several things.
    {Not that I got it to do that, but found the extra options it allows can
    be of some use, outside of the chance you could really mess up
    the OS if you mis-use some aspects of this kind of utility.}
    While there is a way, & someone had posted how to change it
    in terminal (in single user mode, etc) I do not remember all that
    because I use OnyX for general maintenance every so often &
    have it in my computers. There is a version for your Mac's OS...
    Titanium Software - OnyX:
    http://www.titanium.free.fr/pgs/english/apps.html
    Good luck & happy computing!

  • Kinda need some help with Terminal =\

    I pasted a code i found in the Wikipedia into terminal, how do i reverse it? it's making my panther act really weird =(
    Below is the article with the code in it i copied, it's from wikipedia.
    Thanks for your help.
    It's here (look under Trivia): http://en.wikipedia.org/wiki/Exposé%28Mac_OSX%29
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    The "blob" is a hidden and undocumented interface to Exposé that was discovered by a member of the MacNN forums[2] When clicked, it enables the "Application Windows" mode. When Option+clicked, it enables the "All Windows" mode. Holding down Shift and clicking or Option+clicking causes the Exposé effect to occur in slow motion.
    To enable the blob, enter the following commands in Terminal (/Applications/Utilities/Terminal.app):
    defaults write com.apple.dock wvous-floater -bool true
    killall Dock
    To disable the blob, repeat the above steps replacing true with false.
    Another undocumented feature of Exposé is for the show desktop function. It places all the open windows in a small box on the screen that can be moved to anywhere on the screen. Unfortunately this function has some bugs, after exiting the show desktop mode, the foremost window will not have a shadow and the user will not be able to move the window. However, this easily fixed by using the show all function (which is set to default F9).
    To enable this function simply enter the following command into the Terminal
    defaults write com.apple.dock wvous-olddesktop -bool false
    killall Dock
    To disable this function repeat the above steps replacing false with true.
    Exposé was introduced with Mac OS X v10.3 ("Panther") on June 23, 2003. Since then, a number of third-party applications have appeared for other platforms that attempt to duplicate its functionality. A new feature in Microsoft's upcoming Windows Vista operating system, "Windows Flip 3D", also bears a slight resemblance to Exposé. Compiz, an experimental compositing window manager for the accelerated X server Xgl, also has a plugin (called "scale") which adds a similar feature.
    Exposé makes extensive use of undocumented features of the Core Graphics framework.

    Ah, thanks
    Before, i tried it but didn't put the Killall dock thing in ^_^;
    funny how these things can seem so obvious once you know the answer, eh? ^__^;;;
    Thanks ^_^
    I have not tried any of this myself, but the
    Wikipedia article tells how to undo these settings.
    To enable the blob, enter the following commands
    in Terminal (/Applications/Utilities/Terminal.app):
    defaults write com.apple.dock wvous-floater -bool
    true
    killall Dock
    To disable the blob, repeat the above steps replacing
    true with false.
    That is, to disable the blob, enter the following two
    commands into a Terminal window:
    defaults write com.apple.dock wvous-floater -bool
    false
    killall Dock
    To enable this function simply enter the following
    command into the Terminal
    defaults write com.apple.dock wvous-olddesktop -bool
    false
    killall Dock
    To disable this function repeat the above steps
    replacing false with true.
    That is, enter the following commands in a Terminal
    window:
    defaults write com.apple.dock wvous-olddesktop -bool
    true
    killall Dock
    I hope this solves your problems.
    Rich
    EMAC G4 1.0 GHz
      Mac OS X (10.4.8)  

  • Need help using terminal to delete files

    I left my camera to download a ton of photos, but now my hard drive is full and the computer froze up with an error message that the hard drive was full. I shut down last night and can't startup now. I've been trying to figure out how to get into terminal to delete the photo files, but can't figure it out.
    I can get into terminal using the option key at startup, but don't know what to do next.
    the files are in a folderi n the users/me/Pictures folder. I could just delete the whole folder if someone could help me.
    Also tried starting up in target mode, but wouldn't. Also couldn't start up from an install disk. When I try, it just flashes from the apple logo to the null symbol.
    HELP!
    Thanks!

    Melvin Richards wrote:
    All of the files seem like they're in tact and accessable, I just can't use Finder to access them.
    Create a external bootable drive.
    Create a data recovery/undelete external boot drive

  • !!!-Need help for terminating a Java thread in real time

    Hi everyone!
    I use J2SDK1.4.1 on a Unix platform.
    I want to terminate (or stop) a running java thread, which is dealing with time consuming tasks, in real-time (for example: the delay before the thread is terminated can't beyond one second), However, I don't know which techniques I can use to make sure the previous (or old) running java threads have been terminated?
    Could you please give me any help if you can?
    Any suggestion or reply will be kindly appreciated!
    Thanks!

    Thanks very much, jverd !
    I do set a flag that the thread should periodically check !
    Well, the scenario is like this:
    1. the thread read line by line (using BufferedReader) string from a probably huge-size file
    2. analyse each string read from the file if required (some strings may be omitted based on the user's operations), the analyzing process is a time-consuming task, and the analysing process may be terminated at any time the user want.
    3. record only the strings that have been analyzed by the previous process into a recording file
    The problem I meet is as follows: (Here, I suppose that it should take at least 30 seconds to finish analyse all the strings in a given huge file )
    1. the user start the analysing process, and run it for only 5 seconds,then stop the analyzing.
    2. the user start the analysing process again from the begining of the file(analyse the strings within the same file as previous step), and then stop the analysing process at 10 second. (it means, this time the analysing process is running for 10 seconds, still haven't finish analyse all the strings in the file).
    Once I open the record file, I saw some of the strings in the recording file have been repetitively record for 2 times, and the repetitive strings are just the strings the analysing time from at 5 second to at 10 second.
    And the repetitive times are depend on how many time the user start and stop the analysing process using the same file. for example, based on the above two steps, the user do the third step as follow:
    3. the user start the analysing process once again, analyse the same file,too. And run it for 15 seconds
    This time open the recording file, this time I saw some of the strings have been repetitively record for 3 times, and the repetitive strings are just the strings the analysing time from at 10 second to at 15 second.
    So, I guess the problem is probably because the previous analysing threads haven't been terminated completely, or say they just are blocked or set as inactive etc., then when the next time start the analysing process, the old threads will be reactive,and rerun ffrom the last time they are blocked.
    I hope you had catched what I mean, if you not, please ust let me know, I'll try to explain it again.
    Thanks once again!

  • Need help using terminal to back up failed HDD

    The stock HDD on my MacBook has developed S.M.A.R.T. errors and is on its way out. I need to get all of my pictures and documents backed up before everything gets completely lost. I was finally able to get the thing fired up, and everything seems to somewhat work, except for Finder. I opened up terminal and attempted copying folders to my external HDD (1 TB Western Digital MyBook) but i can't seem to get it to work.
    I'm not sure if it is best to copy just the files I need (such as the.whole Documents and Pictures folders), or to do a complete backup. What would be the best solution for when I install the new HDD and reload everything?
    Can anyone provide me with any advice or the line(s) of code that ill need to get this done, starting from when i open Terminal?
    Much appreciated!!!

    Melvin Richards wrote:
    All of the files seem like they're in tact and accessable, I just can't use Finder to access them.
    Create a external bootable drive.
    Create a data recovery/undelete external boot drive

  • Help needed with basic Terminal command

    Hey there guys! Recently I decided to install SSD on my Mac Pro. Of course SSD is not spacious enough to store all my files, so I found a good solution on the web which involves a little bit of basic Terminal knowledge - http://mattgemmell.com/using-os-x-with-an-ssd-plus-hdd-setup/
    In the article its said :
    - In the Finder, copy the folder from SSD to the HDD. Check that it was copied successfully.
    - In Terminal, 'cd' to the location of the original folder (on the SSD), and delete it via 'sudo rm -rf foldername'.
    - in Terminal, still in the location of the original folder you just deleted, make a link to the copy of the folder on the HDD, via 'ln -s /Volumes/HDDname/path/to/foldername'.
    What Im struggling with is what 'cd' means and what is meant by - 'still in the location of the original folder'?
    I would appreciate if someone could explain to a noob how to create SDD+HDD setup mentioned in article.

    cd means change directory.
    - means options to the command follow.
    The options listed for the Remove command are Recursive and Force.
    Recursive means traverse all subdirectories and delete the files in there, too, then finish by deleting the listed directory. Force means do it no matter what.
    still in the location of the original folder
    means, don't change directories. You must be in the original folder's directory when you run the Link command as listed.
    Some other options to your problem:
    Move your entire Home folder (better): os x move home folder
    Create your own Fusion Drive (sketchy): http://www.macworld.com/article/2014011/how-to-make-your-own-fusion-drive.html

  • Help with Terminal Please

    Here's the deal. My cousin was playing on my computer when I was at a friends and decided to mess with terminal. Now it won't work. Here is the site of the codes he was working with → http://www.usingmac.com/2009/4/27/twiddle-with-terminal-command-prompt I also made a screenshot of how my terminal changed → http://img29.imageshack.us/my.php?image=terminalshot.tif
    The problem now is I can't type anything in it. Any help is appreciated. Thanks.
    Sarah

    The simplest recover is to use TimeMachine to restore the system to just prior to the hacking.
    Also Apple recommends NEVER using your computer casually as an administrator.
    Letting other people play with your computer as a toy, when you are running an administrator account is begging for problems.
    If you don't have a backup, ask your cousin exactly what he did, and reverse it.

  • Help on terminal command

    i just accidently copy a command to terminal to order make a bootable USB for Mavericks, what the command for the default view folder on terminal?
    just too annoying looking ds_store file visible in my all folder

    Neil's script will work so long as you didn't use the key "True" (a synonym for "1") in the original command to turn on hidden files.   To turn Finder back to normal, copy and paste this entire line into Terminal: 
    defaults write com.apple.finder AppleShowAllFiles 0;  killall Finder
    Press 'return' to enter it.
    I have a free, one-click app for toggling hidden files on and off that you can download and keep in your Dock if remembering Terminal commands is too boring. .
    You can download "Reveal.app" from here:
    http://applehelpwriter.com/apps/
    (disclaimer: this links to my personal website which is in no way endorsed by Apple)

  • Help with Terminal and bashrc

    I have a brand new iMac and am trying to set up some customizations in Terminal. I created a .bashrc file in my home directory. If I type "source .bashrc" in the Terminal it properly sets up my custom prompt. However I can't figure out how to make this file get sourced when terminal starts. I went to Terminal preferences and clicked on "Execute this command" and put "source /Users/myShortName/.bashrc" in the box. I tried several combinations (e.g. ". /Users...") but nothing I've tried has worked. What's the trick?

    You might want to ask in the Unix forum:
    http://discussions.apple.com/forum.jspa?forumID=735

  • Can anyone help with Terminal not working properly on 2013 (late) mac pro?

    New 2013 (late) mac pro. 10.9.2 osx
    Using Terminal utility and giving "cat" command, I get a return message of "file or directory not found" even though the files are right there. This is a little procedure I have performed with older mac pro and laptops (also Mavericks) and never had a problem.

    Thank you for posting Linc. I worked it out, it is a case of user error.

  • Done Something Dumb, Please Help With Terminal Command

    OK, So I couldn't figure out why I was no longer getting Growl notifications with mail.app and GrowlMail after I upgraded to 10.5. Turns out it has something to do with the bundle version it is running. I ran the following 2 terminal commands found here : http://www.davidroessli.com/logs/2007/01/gettinggrowlmail_towork/
    they were:
    defaults write com.apple.mail EnableBundles 1
    defaults write com.apple.mail BundleCompatibilityVersion 2
    Once I launched mail.app again the application told me that it had shut off support for the Plaxo plugin that I use. Now neither Growl nor the Plaxo plugin work. Long story short, can someone explain to me how to put mail.app back the way it was before I foolishly ran terminal commands? Thanks in advance

    Email the author. Growl isn't supported by Apple.
    You are aware that the article was written quite a while before 10.5.2 was released? It's not a good idea to implement modifications that are not tested on the current version of OS X without checking first with the author of such modifications. It's especially not a good idea to use the "defaults write" command without knowing how to undo the change.
    The first command is undone by substituting 0 for 1. Change the second one from 2 to 3.

  • Help with Terminal!

    Hi guys, my problem is when I load up terminal I get:
    Unknown-00-1c-b3-76-e2-b8:~ "my user name"$
    and when I want to run any script (this time I'm changing the look of my dock) I get an error message saying:
    "No matching processes belonging to you were found"
    Please help

    When in Terminal.app type in "id" and CR. Post back what you see.
    CR = carriage return.
    Message was edited by: BarryXSharp

  • Disk copy helper unexpectedly terminated

    I have down loaded software update 10.2.8 for my G4 but when I double click to install I get the above message. Does anyone know how I can fix this? I've looked everywhere but can't find anything in trouble shooting.

    Hello Carole:
    Welcome to Apple discussions.
    This knowledge base article (toward the bottom) seems to address your specific problem:
    http://docs.info.apple.com/article.html?artnum=25818
    Barry

Maybe you are looking for

  • Mac Finder Thumbnail Update Using Save-As External Hard Drive

    Hello: I recently converted to an iMac and CS6 from PC/CS5.  In addition to the Mac OS missing some key file selection tools (like shift select for a range of files), I am having a big problem with thumbnail.  I recently sent a file to be printed tha

  • Is there a magic wand tool in photoshop CC 2014?

    Is there a magic wand tool in photoshop CC 2014?  I am looking for a complete method of removing a white background transparent.

  • Update, restart, missing files

    I just updated to itunes 12 because i have not updated in awhile, after the update, i restarted like it asked, but then when i tried to open itunes it had an error saying there was missing files and it couldn't open and to reinstall itunes, so i went

  • GUI opens new session extremely slow

    My gui opens new session very slowly, there isnt any other slow progress, just opening "new session". It occured suddenly, i cant see a reason. i reinstalled gui but the problem survived. Then i updated gui from 7.1 to 7.2, but again, nothing changed

  • SAP Web Intellegence's Input Control(Calendar) VS Rich Client's Input Control(Calendar)

    SAP Web Intellegence's Input Control(Calendar) VS sap Rich Client's Input Control(Calendar) Hello everyone ! I need your help. I configurated Intput Controls ( Calendar). but, Web Intellegence's Input Control(Calendar) and Rich Client's Input Control