Use commands and some tips for Mac OS X

Mac OS X is built in a user-friendly way so anyone can use the computer regardless of their experience. However, delving underneath OS X's shimmering surface by launching the Terminal, we can unlock many hidden features, perform many advanced tasks, adjust and troubleshoot. Mac computer. In this tutorial we will show you some effective Terminal tips and commands.

Note: Before performing the command operation, we recommend that you backup your computer to avoid unnecessary risks.

Some tips only work for a specific operating system so in the article we have chosen to issue commands that can work with most operating systems like Leopard, Snow Leopard and Lion.

To open the Terminal window, go to Applications> Utilities> Terminal .

Some useful Terminal commands on macOS

  1. 1. Show hidden files
  2. 2. Activate 2D Dock
  3. 3. Disable Dashboard
  4. 4. Display Library folder in OS X Lion
  5. 5. Hide desktop icons
  6. 6. Launch the application
  7. 7. End a process
  8. 8. Open the Finder window in the current directory
  9. 9. Change the default screenshot format
  10. 10. Download files from the Internet without a browser
  11. 11. Turn off Sleep mode on Mac
  12. 12. Play Tetris game hidden on Mac
  13. 13. Turn the audio plugged into the power on the Mac just like the iPhone
  14. 14. MacOS settings check for updates more frequently
  15. 15. Change the location to save the screenshot
  16. 16. Create the default name for the screenshot
  17. 17. Add distance between applications in Dock
  18. 18. View the entire download history and delete it
  19. 19. Turn off the Mac

1. Show hidden files

Although OS X doesn't really place too many important roles in hidden files and folders, there are still some files and folders hidden by default. This is very normal to avoid user deleting the wrong file and causing unnecessary problems, but if you want to show these hidden files, you just need to enter the following command:

 defaults write com.apple.finder AppleShowAllFiles true 

To cancel the command, replace true with false .

  1. How to hide, display files and folders on macOS

2. Activate 2D Dock

Use commands and some tips for Mac OS X Picture 1

If you've ever moved the Dock to the right or left of the screen (depending on the version of OS X you're using), you may see the 2D Dock displayed as above. If you want to enable 2D Dock at all locations, enter the following command in Terminal:

 defaults write com.apple.dock no-glass -boolean YES 

Now restart the Dock for the changes to take effect by typing

 killall Dock 

To bring Dock back to normal, replace ' YES ' in the above command with ' NO ' and restart Dock again with the killall command above.

3. Disable Dashboard

Certainly there will be many people who like Dashboard, but this is the culprit who consumes a lot of RAM resources. If you want to completely disable Dashboard to avoid this and avoid launching it accidentally, use the following command in Terminal and press Return:

 defaults write com.apple.dashboard mcx-disabled -boolean YES 

Restart the Dock for the changes to take effect.

 killall Dock 

To cancel the order and return to Dashboard, simply change 'YES' to 'NO' and restart the Dock with killall again.

4. Display Library folder in OS X Lion

OS X Lion hides the default Library folder and this makes troubleshooting such as clearing the cache very difficult. To display the Library folder permanently, enter the following command in Terminal:

 chflags nohidden ~ / Library / 

5. Hide desktop icons

Use commands and some tips for Mac OS X Picture 2

If you prefer to hide all icons on the desktop via Terminal, you can use the following command:

 defaults write com.apple.finder CreateDesktop -bool false 

Then use killall command

 killall Finder 

If you want to bring everything back as before, copy and paste the following command:

 defaults write com.apple.finder CreateDesktop -bool true 

Then use killall command.

6. Launch the application

To launch applications from Terminal, follow the following form, replace Twitter with the application name you want to launch:

 open -a Twitter 

7. End a process

If you want to end a process or an application, use the command below, replace Twitter with the process you want to end.

 killall Twitter 

8. Open the Finder window in the current directory

To quickly open the Finder window in any folder, enter the following command in Terminal

 open. 

9. Change the default screenshot format

OS X's Screenshot utility is very useful but if you want to save the JPG file, use the following command:

 defaults write com.apple.screencapture type jpg 

(Note: You can also change jpg to png if you want).

10. Download files from the Internet without a browser

Use commands and some tips for Mac OS X Picture 3

If you need to download files from the Internet without opening the browser, you can download it via Terminal. Previously, Quantrimang showed you how to install software using Homebrew, allowing downloading software through the browser. But you can download it via Terminal if there is a direct download link. First, specify the directory to save the downloaded file (here select the Downloads folder).

 cd ~ / Downloads / 

Then to download the file, type:

 curl -O [File path] 

11. Turn off Sleep mode on Mac

There are many different applications to disable the ability to "sleep" on Macs like Amphetamine, but if you don't like to install a lot of software on your computer, you can use the following Terminal command:

 Caffeine 

This command will prevent Mac from switching to Sleep mode. If you want to turn it back on, just press Ctrl + C.

  1. How to set up a Mac doesn't fall into a "sleep" state

12. Play Tetris game hidden on Mac

Use commands and some tips for Mac OS X Picture 4

If you like Tetris, you can play it on the Mac with the following command:

 Emacs 

Press the Fn and F10 keys at the same time, then press the t and g buttons. You will see the screen below, select the game you want to play and start.

Use commands and some tips for Mac OS X Picture 5

13. Turn the audio plugged into the power on the Mac just like the iPhone

If you like the sound of the iPhone, you can turn the audio plugged in to the same power as the iPhone with the following command:

 defaults write com.apple.PowerChime ChimeOnAllHardware -bool true; open /System/Library/CoreServices/PowerChime.app 

14. MacOS settings check for updates more frequently

For better computer security, you should update your Mac regularly, but most users don't pay attention to it and forget to download important patches and updates. In this case you can set up Mac to check for these updates more often.

To set up Mac to check for updates daily, type the following command:

 defaults write com.apple.SoftwareUpdate ScheduleFrequency -int 1 

15. Change the location to save the screenshot

Use commands and some tips for Mac OS X Picture 6

On a Mac, when taking screenshots, by default it will save these photos on the desktop. However, for those who need to capture multiple screens, their desktop becomes a mess. There is an easy way to change the location to save this default screenshot. You just need to type the following command, replace / your / location / here with the path to the folder you want to change.

 defaults write com.apple.screencapture location ~ / your / location / here 

Then type:

 killall SystemUIServer 

16. Create the default name for the screenshot

Use commands and some tips for Mac OS X Picture 7

Another command you can use with Mac screenshots is to change its default name. Normally, Mac will name screenshots like Screen Shot 2018-09-11 at 20.00.46.png , but this name is difficult to find and inconvenient for users. You can replace it with a more recognizable name with the following command:

 defaults write com.apple.screencapture name "New screenshot name" 

Then type:

 killall SystemUIServer 

17. Add distance between applications in Dock

Use commands and some tips for Mac OS X Picture 8

With this command, you can change the distance between applications in the Dock:

 defaults write com.apple.dock persistent-apps -array-add '{"tile-type" = "spacer-tile";}' 

Then type:

 killall Dock 

18. View the entire download history and delete it

Use commands and some tips for Mac OS X Picture 9

The Mac stores your entire download history, to view this entire list, type:

 sqlite3 ~ / Library / Preferences / com.apple.LaunchServices.QuarantineEventsV * 'select LSQuarantineDataURLString from LSQuarantineEvent' 

To delete download history, enter the following command:

 sqlite3 ~/Library/Preferences/com.apple.LaunchServices.QuarantineEventsV* 'delete from LSQuarantineEvent' 

Now if you type the first command again, you will see this list blank, nothing.

19. Turn off the Mac

To turn off the Mac, enter the following command:

 $ sudo shutdown -h now 

To restart the Mac, type:

 $ sudo shutdown -r now 

I wish you all success!

See more:

  1. 7 commands to manipulate the most basic files and folders everyone must know
  2. 10 troubleshooting tips for Mac OS X
  3. Instructions to enable hidden features for dock on Mac OS
5 ★ | 1 Vote

May be interested

  • 15 Tar commands should try in Linux15 Tar commands should try in Linux
    on * nix operating systems, such as linux, the commonly used utility is tar. the name of this command comes from archive tape, because it was originally designed to back up data on tape.
  • How to Run Linux Commands on Windows with WSL 2How to Run Linux Commands on Windows with WSL 2
    windows subsystem for linux 2 builds on the success of the original wsl, and the newer wsl 2 brings more power and reliability to users. it is important that you understand how to use linux commands and utilities on windows subsystem for linux 2.
  • Combine all the most basic AutoCAD commandsCombine all the most basic AutoCAD commands
    using autocad shortcut commands helps to manipulate faster. if you do not know all the cad commands, please see the summary of autocad commands that we have done below.
  • Top 10 examples of Netstat commands on LinuxTop 10 examples of Netstat commands on Linux
    netstat is a command line utility that can be used to list all network connections (sockets), allowing comparison with network connections, routing tables, interface records, connection spoofing.
  • What is CMD Commands in WindowsWhat is CMD Commands in Windows
    what is cmd commands in windows. for those who are new to computers, they will not know what cmd is and how to use it. so in the following article of tipsmake.com will help you answer what is cmd? and the most common commands used in cm
  • 10 Netsh commands of Windows Server 2008 should know10 Netsh commands of Windows Server 2008 should know
    introducing 10 netsh commands that every administrator should know. netsh is very powerful and flexible, however, because it is not possible to select netsh 'most important' commands, since the importance of each command depends on administrative tasks in each specific task. so what we introduced in this article is 10 commands that we feel are valuable for you and help you when you encounter problems.
  • 10 commands to master when working with Cisco IOS10 commands to master when working with Cisco IOS
    if you want to master the cisco ios, you need to learn some necessary commands. the following article will summarize 10 useful commands to handle various troubleshooting and configuration tasks.
  • PHP syntaxPHP syntax
    before starting programming in any language, the basic syntax and program structure is very important. this chapter introduces you to the basic php syntax, including: php tags, comments, print commands, echo commands, and two print and echo commands.
  • Review changes in GitReview changes in Git
    after rechecking the deposit details, jerry realizes that the string length cannot be negative, so he decides to change the type of my_strlen function.
  • Commands in CAD - Summary of the most complete AutoCAD commandCommands in CAD - Summary of the most complete AutoCAD command
    in order to use autocad fluently, you will need a long time to learn and familiarize with the commands in autocad, but the commands in autocad are many and not easy to remember at all. therefore in this article thuthuatphanmem.vn will summarize the help