Difference between revisions of "HPRC:Access:MacOSX"
(→Remote Display of Programs with Graphical Interfaces) |
(→Remote Logins) |
||
Line 3: | Line 3: | ||
Use the Terminal program, which is under Applications->Utilities. | Use the Terminal program, which is under Applications->Utilities. | ||
− | On your Mac click the Finder [[Image:finder.png]] icon to start finder: | + | On your Mac click the Finder [[Image:finder.png]] (FIXME) icon to start finder: |
− | # Select Applications [[Image:app-icon.jpg]] | + | # Select Applications [[Image:app-icon.jpg]] (FIXME) |
# Double click the Utilities folder | # Double click the Utilities folder | ||
− | # Double click the Terminal utility [[Image:term-icon.jpg]] | + | # Double click the Terminal utility [[Image:term-icon.jpg]] (FIXME) |
# A Terminal window will now appear similar to the one below. | # A Terminal window will now appear similar to the one below. | ||
Revision as of 09:10, 23 September 2014
Remote Logins
Use the Terminal program, which is under Applications->Utilities.
On your Mac click the Finder (FIXME) icon to start finder:
- Select Applications
(FIXME)
- Double click the Utilities folder
- Double click the Terminal utility
(FIXME)
- A Terminal window will now appear similar to the one below.
File Transfers
Fugu is a graphical front-end to the command line Secure File Transfer application (SFTP). SFTP is similar to FTP, but unlike FTP, the entire session is encrypted, meaning no passwords are sent in cleartext form, and is thus much less vulnerable to third-party interception. It allows you to take advantage of SFTP's security without having to sacrifice the ease of use found in a GUI. Fugu also includes support for SCP files transfers, and the ability to create secure tunnels via SSH.
Remote Display of Programs with Graphical Interfaces
The recommended X-Windows emulator for Mac OS X is Apple X11, which is available free from Apple. After completing the installation, start the
- After X11 is installed on your system, start Apple X11.
- A xterm window should appear on your screen.
Login to a UNIX machine (example:
eos.tamu.edu
).
ssh -X yourusername@eos.tamu.edu
The -X
option tells SSH to allow programs to forward and display their graphical interfaces. This is known as X11 forwarding.
To verify that X11 forwarding is working, type the following command:
xterm
If a new xterm terminal window for the remote system pops up, then X11 forwarding is working correctly.