How To Download Xquartz On Mac From Terminal

You may not realize it, but your Mac already runs a variant of UNIX. You can easily access a terminal window to use your computer's built-in UNIX functionality with the 'Terminal' program (Applications/Utilities/Terminal.app). You may want to make a shortcut to this program in your Dock, since you'll be using it a lot from now on. Similarly, you can use your Mac directly to log into a UNIX server, and even to transfer files to/from a UNIX server.

I need to install XQuartz in Mac 10.8.5.But every time when I reach the destination folder selection in installation step,it freezes and doesn't move forward.I have admin account as well but as I l. If you don't have it already, you need an X11 server. Download and install XQuartz. After that, go to the Sourceforge website, and download the 2.6.2 version of cp2k. Using the Mac terminal, go to the directory where cp2k has been downloaded (if it has been downloaded in the Downloads directory type cd /Downloads).To unpack the archive files type the command given below.

Enabling X11-Forwarding (Popping up windows from the UNIX server)

Your Mac comes with another program that enables you to display graphics from programs running on a remote UNIX/Linux server, called 'XQuartz' (Applications/Utilities/XQuartz.app). On older OS X systems this program was called 'X11' and was located in essentially the same location. If neither of these programs are currently installed on your Mac, you can download XQuartz from the Mac App Store (free).

To enable forwarding, just run XQuartz/X11 before starting Terminal. If a xterm window pops up from XQuartz/X11, you may close that window before starting Terminal, since Terminal is more feature-rich than XTerm (my opinion). Once XQuartz/X11 is running, when you log into remote UNIX servers (as shown in the next section) you should be able to display remote graphics.

Logging into an UNIX server

The standard protocol for logging into a modern UNIX server is through using a Secure SHell (SSH) client. OS X has built-in SSH functionality, through the 'ssh' command in the Terminal.

To use ssh from the Terminal:

  • Open Terminal.
  • At the command line, type
    ssh username@hostname -CY
    or
    ssh username@hostname -CX
    (the Y vs X difference is minimal, and will not affect your user experience, just remember to use one of them). Here, username is your user name on the UNIX server, and hostname is the name of the UNIX server. For example, I could log into the UNIX server titan.smu.edu with the command
    ssh reynolds@titan.smu.edu -CY

Xquartz Mac Install

For additional information on using ssh, type

man ssh

(short for manual) in the Terminal window.

Transferring files to and from a UNIX server (terminal)

Xquartz X11

How To Download Xquartz On Mac From Terminal

You may copy files to and from a UNIX/Linux server in the Terminal window as well, using the 'scp' command. The syntax is either

scp file_to_copy_from username@hostname:file_to_copy_to

or

scp username@hostname:file_to_copy_from file_to_copy_to

depending on whether you want to copy the file to or from the UNIX server. For example, suppose I have a file named 'file1' in my home directory on titan, and I want to copy it to the current directory on my Mac (the one the terminal is in, type 'pwd' to see which directory you are in if unsure):

scp reynolds@titan.smu.edu:file1 .

or

scp reynolds@titan.smu.edu:file1 file1
Xquartz app

would give the desired result. Suppose now that I have the file 'file2' in the current directory on my Mac that I want to copy to my home directory on titan:

scp file2 reynolds@titan.smu.edu:

or

scp file2 reynolds@titan.smu.edu:file2

would do the trick. For more information on the 'scp' command, type man scp in the terminal.

Transferring files to and from a UNIX server (graphical)

Fetch

One of the most popular graphical file transfer options in OS X is the program Fetch. This is not a free program.

To use Fetch, fill in the UNIX hostname (e.g. titan.smu.edu), your username on that host (e.g. reynolds), and your password on that host, then click 'Connect'. You will then see a display of your remote directory on the UNIX server. Transfer files by dragging them to and from the Finder.

FileZilla

Xquartz X11 For Mac

A free alternative to Fetch that may be used from OS X, Windows and Linux is is FileZilla. To install FileZilla in OS X:

  • Download the FileZilla client for Mac OS X from here.
  • Open the FileZilla installation file to unpack the application.
  • You may run Filezilla.app from the Desktop, or you can instead move it to your Applications folder.

To use FileZilla, fill in the fields for the host (e.g. titan.smu.edu), your username on that host (e.g. reynolds), your password, and the port (use 22 for SFTP), and hit [return]. You should notice two file browser windows open up, the browser on the left is on your computer, the browser on the right is from the UNIX host (e.g. titan). Transfer files by dragging them from one computer to the other with your mouse.

How To Download Xquartz On Mac From Terminal Linux

Xquartz

Xquartz 2.7.11

D.R. Reynolds, 28 August 2014