|
| |||||||||
| Tags: mac os command, mac os x, terminal command |
![]() |
| | Thread Tools | Search this Thread |
|
#1
| |||
| |||
| Mac OS X Terminal Commands?
Hi guys! I have been using windows 7 beta until now. I have bought a Mac OS X for intel CPU... I installed it and it looks awesome...! Worth Trying. I have used linux a couple of times but not too familiar with it. Mac is similar to linux as its shell is a unix based shell. So now i'm planning to use Mac for a long time and i need to be familiar with its commands... Can any one help me? Thanks |
|
#2
| ||||
| ||||
| Re: Mac OS X Terminal Commands?
Here is a list for some useful commands, but i'm not sure if it works on Intel CPU based Mac. Try it out yourself : Use your screensaver as wallpaper You can use your current screensaver as a wallpaper for your desktop. You can do this with the following command: Code: cd /System/Library/Frameworks/ScreenSaver.framework/Resources/ cd ScreenSaverEngine.app/Contents/MacOS/ ./ScreenSaverEngine -background & You can restore it with this: Code: kill PID XX The desktop is also restored after logging off and then back on. |
|
#3
| ||||
| ||||
| Re: Mac OS X Terminal Commands? Moving the Dock to the Left or Right You can move your Dock to the Left or Right by using a single command. Left: Code: defaults write com.apple.dock pinning -string start killall Dock Code: defaults write com.apple.dock pinning -string start killall Dock Code: defaults write com.apple.dock pinning -string "" killall Dock |
|
#4
| ||||
| ||||
| Re: Mac OS X Terminal Commands? Eject a disc Sometimes there's a possibiity that yu can't eject a disc with the Eject-button. You can force it with this command: Code: disktool -e disk# By default, the Widgets are only visible when you open the Dashboard. But with a minor modification you can drag them to your Desktop using this command: Code: defaults write com.apple.dashboard devmode YES Code: killall Dock Code: defaults write com.apple.dashboard devmode NO |
|
#5
| ||||
| ||||
| Re: Mac OS X Terminal Commands? Disable Disk Image Verification By default when you open a Disk Image (.dmg), it will first verify the contents of the image. This can be disabled with this command: Code: defaults write com.apple.frameworks.diskimages skip-verify true Code: defaults write com.apple.frameworks.diskimages skip-verify false ou can make the icons in the Dock of hidden applicaitons transparent using this command: Code: defaults write com.apple.Dock showhidden -bool YES Code: defaults write com.apple.Dock showhidden -bool NO To show hidden files in the Finder, use this command: Code: defaults write com.apple.finder AppleShowAllFiles TRUE Code: defaults write com.apple.finder AppleShowAllFiles FALSE |
|
#6
| ||||
| ||||
| Re: Mac OS X Terminal Commands? Add A Custom Message To The Login Window This command enables you to add a custom message to the Login window : Code: sudo defaults write /Library/Preferences/com.apple.loginwindow LoginwindowText "Custom Message" Code: sudo defaults write /Library/Preferences/com.apple.loginwindow LoginwindowText "" This commands lets you increase the size of the magnification of the dock icons. Max Value: 512 Code: defaults write com.apple.dock largesize -int 512 |
|
#7
| ||||
| ||||
| Re: Mac OS X Terminal Commands? Increase Desktop Icon Size This command lets you increase the icons upto 512 pixels x 512 pixels. This hogs a lot of CPU and may slow down on older machines. Max Value: 512. Code: defaults write com.apple.finder DesktopViewOptions -dict IconSize -integer 512 killall Finder If you want to change the picture used on the login screen, you can change it with this command. Change the file location in the second half of the string to the exact image file location. Code: defaults write /Library/Preferences/com.apple.loginwindow DesktopPicture "/path-to-you-image/image.xxx" Disable Dashboard If you don’t want the dashboard running you can disable it. Change YES to NO to enable it again. Code: defaults write com.apple.dashboard mcx-disabled -boolean YES killall Dock |
![]() |
|
| Thread Tools | Search this Thread |
| |
Similar Threads for: "Mac OS X Terminal Commands?" | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| How to Migrate user Profiles from 2003 Terminal Server 32bit to 2008 Terminal Server 64bit | Zweena | Operating Systems | 5 | 22-08-2010 03:39 AM |
| MS-DOS top 10 commands | Roasted | Operating Systems | 4 | 27-03-2010 07:19 PM |
| Run Commands for Win XP | Rohit Kasle (RK) | Tips & Tweaks | 1 | 06-02-2010 10:15 AM |
| Need Basic Dos commands for Commands prompt | JangoRap | Operating Systems | 5 | 29-06-2009 01:07 PM |
| Useful DNS Commands | K.gupta | Guides & Tutorials | 3 | 10-08-2005 10:16 PM |