Difference: ProtocolsComputerSetup (1 vs. 6)

Revision 62024-07-09 - JeffreyBarrick

 
META TOPICPARENT name="ComputationList"

Computer Setup for Bioinformatics and Computational Biology

So, you want to harness the immense power of bioinformatics and computational biology for your science? Here are some things you probably want to think about in terms of your operating system, programs you want to download, and other tips for making things convenient.

NOTE: These instructions are for setting up your local computer (the one you on which you are banging the keyboard and clicking the trackpad/mouse).

Instructions for setting up a Linux/Unix environment (e.g. on TACC or also within computer if it can access a Linux/Unix system) are covered under Computing Environment Setup.

Deleted:
<
<
 

Minimum Setup

In general, you'll need at least these things to get by:

  1. Text Editor – needs to be industrial strength, meaning it should have these features:
    • Show invisible characters (such as tabs)
    • Open and save files with different types of line endings (you'll want these to be Unix)
  2. Terminal – for connecting to and running commands on a Linux/Unix computer (your own or a cluster)
  3. SFTP File Transfer Program – for transferring files back and forth between your computer and a server
    • You can get by without this if you would rather type scp commands in the terminal.

Probably, you should jump to the next section and use one of those recommended programs, but if you really want to be minimal, here are some options.

On Macs, you can use these programs for the requirements:

  1. BBEdit or *Sublime. (Don't use TextEdit or MS Word!)
  2. Terminal (built-in under /Applications/Utilities)
  3. Cyberduck

On Windows, you can use:

  1. Notepad++ (not to be confused with Notepad!)
  2. Windows Terminal
  3. Cyberduck

On Linux, you can use:

  1. gedit
  2. Terminal (built-in)
  3. Cyberduck

Some text editors will let you "edit remote files". (For example File > Open From FTP/SFTP Server... in BBEdit).

This can be useful, as you will have to download, edit, and re-upload these files if you can't do this.

Getting an Authentic Linux Environment on Your Windows Machine

On Mac* and Linux systems, you will be able to run and test code on your own computer, which greatly speeds up and simplified development.

*Warning: The Mac setup is not perfect at running all Linux tools. Occasionally some tools will not compile or run on Macs, but >95% of them work fine.

To join the Linux club on a Windows/PC machine, you can partition your hard drive for dual boot and install Linux alongside your Windows install. However, this has serious drawbacks in terms of splitting your hard drive space and not letting you use programs you are familiar with on Windows when you are booted in Linux. Recently, it has become possible to use the Windows Subsystem for Linux (WSL) to much more easily access a true Linux Environment on Windows. If you plan to install, write, and run any code or pipelines—except maybe pure R scripts—on your machine, you will probably want to install and use WSL.

Using an IDE

A basic text editor is passable for changing config files and opening output files that don't play nice with Excel, but it is usually not very good for writing code.

A true integrated development environment (IDE) typically offers these improvements:

  • Code formatting, syntax checking, and auto-complete
  • Ability to step through your code to debug
  • Integration with version control (e.g., git)

The best IDEs depend a bit on what type of coding and activities you are doing. Here are some useful ones:

  • VSCode (Mac, Windows, and Linux versions)
    • Downside: has a complicated interface and a bit of a learning curve
    • Upside: Great for Python and other text files (including Markdown), has extensions for almost any coding/scripting language
    • Bonus: Everything you need is included in one application. You can connect to servers, edit files remotely, use it as a terminal for running commands, browse files, perform drag-and-drop file transfer, and use it for managing a git repository!
    • If you don't like being tracked by Microsoft, you can use VSCodium
  • JupyterLab (Mac, Windows , and Linux versions)
    • Upside: Nice desktop application for working with Jupyter notebooks (Python)
  • RStudio (Mac, Windows , and Linux versions)
    • Upside: works great for all things R, including R markdown files, Shiny apps, etc.
    • Limitations: can't easily integrate your R code with other parts of a pipeline on its own
  • XCode (Mac)
    • For C++ coding and debugging (only needed if you are working on breseq).

META TOPICMOVED by="JeffreyBarrick" date="1716314894" from="Lab.ProtocolsComputingEnvironmentSetup" to="Lab.ProtocolsComputerSetup"

Revision 52024-05-29 - JeffreyBarrick

 
META TOPICPARENT name="ComputationList"

Computer Setup for Bioinformatics and Computational Biology

So, you want to harness the immense power of bioinformatics and computational biology for your science? Here are some things you probably want to think about in terms of your operating system, programs you want to download, and other tips for making things convenient.

NOTE: These instructions are for setting up your local computer (the one you on which you are banging the keyboard and clicking the trackpad/mouse).

Instructions for setting up a Linux/Unix environment (e.g. on TACC or also within computer if it can access a Linux/Unix system) are covered under Computing Environment Setup.

Minimum Setup

In general, you'll need at least these things to get by:

  1. Text Editor – needs to be industrial strength, meaning it should have these features:
    • Show invisible characters (such as tabs)
    • Open and save files with different types of line endings (you'll want these to be Unix)
  2. Terminal – for connecting to and running commands on a Linux/Unix computer (your own or a cluster)
  3. SFTP File Transfer Program – for transferring files back and forth between your computer and a server
    • You can get by without this if you would rather type scp commands in the terminal.

Probably, you should jump to the next section and use one of those recommended programs, but if you really want to be minimal, here are some options.

On Macs, you can use these programs for the requirements:

  1. BBEdit or *Sublime. (Don't use TextEdit or MS Word!)
  2. Terminal (built-in under /Applications/Utilities)
  3. Cyberduck

On Windows, you can use:

  1. Notepad++ (not to be confused with Notepad!)
  2. Windows Terminal
  3. Cyberduck

On Linux, you can use:

  1. gedit
  2. Terminal (built-in)
  3. Cyberduck

Some text editors will let you "edit remote files". (For example File > Open From FTP/SFTP Server... in BBEdit).

This can be useful, as you will have to download, edit, and re-upload these files if you can't do this.

Getting an Authentic Linux Environment on Your Windows Machine

On Mac* and Linux systems, you will be able to run and test code on your own computer, which greatly speeds up and simplified development.

*Warning: The Mac setup is not perfect at running all Linux tools. Occasionally some tools will not compile or run on Macs, but >95% of them work fine.

To join the Linux club on a Windows/PC machine, you can partition your hard drive for dual boot and install Linux alongside your Windows install. However, this has serious drawbacks in terms of splitting your hard drive space and not letting you use programs you are familiar with on Windows when you are booted in Linux. Recently, it has become possible to use the Windows Subsystem for Linux (WSL) to much more easily access a true Linux Environment on Windows. If you plan to install, write, and run any code or pipelines—except maybe pure R scripts—on your machine, you will probably want to install and use WSL.

Using an IDE

A basic text editor is passable for changing config files and opening output files that don't play nice with Excel, but it is usually not very good for writing code.

A true integrated development environment (IDE) typically offers these improvements:

  • Code formatting, syntax checking, and auto-complete
  • Ability to step through your code to debug
  • Integration with version control (e.g., git)

The best IDEs depend a bit on what type of coding and activities you are doing. Here are some useful ones:

Changed:
<
<
  • VSCode (Mac, Windows, and Linux versions)
>
>
  • VSCode (Mac, Windows, and Linux versions)
 
    • Downside: has a complicated interface and a bit of a learning curve
    • Upside: Great for Python and other text files (including Markdown), has extensions for almost any coding/scripting language
    • Bonus: Everything you need is included in one application. You can connect to servers, edit files remotely, use it as a terminal for running commands, browse files, perform drag-and-drop file transfer, and use it for managing a git repository!
    • If you don't like being tracked by Microsoft, you can use VSCodium
Changed:
<
<
>
>
 
    • Upside: Nice desktop application for working with Jupyter notebooks (Python)
  • RStudio (Mac, Windows , and Linux versions)
    • Upside: works great for all things R, including R markdown files, Shiny apps, etc.
    • Limitations: can't easily integrate your R code with other parts of a pipeline on its own
  • XCode (Mac)
    • For C++ coding and debugging (only needed if you are working on breseq).

META TOPICMOVED by="JeffreyBarrick" date="1716314894" from="Lab.ProtocolsComputingEnvironmentSetup" to="Lab.ProtocolsComputerSetup"

Revision 42024-05-21 - JeffreyBarrick

 
META TOPICPARENT name="ComputationList"
Changed:
<
<

Computing Environment Setup

>
>

Computer Setup for Bioinformatics and Computational Biology

 

So, you want to harness the immense power of bioinformatics and computational biology for your science? Here are some things you probably want to think about in terms of your operating system, programs you want to download, and other tips for making things convenient.

Changed:
<
<
These instructions are for setting up your laptop. Instructions for setting up a Linux/Unix environment (e.g. on TACC or on your computer if you are on a Linux/Unix platform) will be covered elsewhere.
>
>
NOTE: These instructions are for setting up your local computer (the one you on which you are banging the keyboard and clicking the trackpad/mouse).
 
Added:
>
>
Instructions for setting up a Linux/Unix environment (e.g. on TACC or also within computer if it can access a Linux/Unix system) are covered under Computing Environment Setup.
 

Minimum Setup

In general, you'll need at least these things to get by:

  1. Text Editor – needs to be industrial strength, meaning it should have these features:
    • Show invisible characters (such as tabs)
    • Open and save files with different types of line endings (you'll want these to be Unix)
  2. Terminal – for connecting to and running commands on a Linux/Unix computer (your own or a cluster)
  3. SFTP File Transfer Program – for transferring files back and forth between your computer and a server
Added:
>
>
    • You can get by without this if you would rather type scp commands in the terminal.
  Probably, you should jump to the next section and use one of those recommended programs, but if you really want to be minimal, here are some options.

On Macs, you can use these programs for the requirements:

Changed:
<
<
  1. BBEdit (free for base features)
  2. Terminal (built-in)
  3. Cyberduck (or you can use Terminal if you like typing scp commands)
>
>
  1. BBEdit or *Sublime. (Don't use TextEdit or MS Word!)
  2. Terminal (built-in under /Applications/Utilities)
  3. Cyberduck
 
Changed:
<
<
On Windows, you can use
>
>
On Windows, you can use:
 
  1. Notepad++ (not to be confused with Notepad!)
  2. Windows Terminal
  3. Cyberduck
Changed:
<
<

Comfortable Setup

>
>
On Linux, you can use:
Added:
>
>
  1. gedit
  2. Terminal (built-in)
  3. Cyberduck
 
Changed:
<
<

Getting an Authentic Linux Environment on Your Machine

>
>
Some text editors will let you "edit remote files". (For example File > Open From FTP/SFTP Server... in BBEdit).
 
Added:
>
>
This can be useful, as you will have to download, edit, and re-upload these files if you can't do this.

Getting an Authentic Linux Environment on Your Windows Machine

 On Mac* and Linux systems, you will be able to run and test code on your own computer, which greatly speeds up and simplified development.

*Warning: The Mac setup is not perfect at running all Linux tools. Occasionally some tools will not compile or run on Macs, but >95% of them work fine.

To join the Linux club on a Windows/PC machine, you can partition your hard drive for dual boot and install Linux alongside your Windows install. However, this has serious drawbacks in terms of splitting your hard drive space and not letting you use programs you are familiar with on Windows when you are booted in Linux. Recently, it has become possible to use the Windows Subsystem for Linux (WSL) to much more easily access a true Linux Environment on Windows. If you plan to install, write, and run any code or pipelines—except maybe pure R scripts—on your machine, you will probably want to install and use WSL.

Changed:
<
<

Using an IDE

>
>

Using an IDE

  A basic text editor is passable for changing config files and opening output files that don't play nice with Excel, but it is usually not very good for writing code.

A true integrated development environment (IDE) typically offers these improvements:

  • Code formatting, syntax checking, and auto-complete
  • Ability to step through your code to debug
  • Integration with version control (e.g., git)

The best IDEs depend a bit on what type of coding and activities you are doing. Here are some useful ones:

Changed:
<
<
  • VSCode (Mac and Windows versions)
>
>
  • VSCode (Mac, Windows, and Linux versions)
 
    • Downside: has a complicated interface and a bit of a learning curve
    • Upside: Great for Python and other text files (including Markdown), has extensions for almost any coding/scripting language
    • Bonus: Everything you need is included in one application. You can connect to servers, edit files remotely, use it as a terminal for running commands, browse files, perform drag-and-drop file transfer, and use it for managing a git repository!
    • If you don't like being tracked by Microsoft, you can use VSCodium
Changed:
<
<
  • RStudio (Mac and Windows versions)
>
>
Added:
>
>
    • Upside: Nice desktop application for working with Jupyter notebooks (Python)
  • RStudio (Mac, Windows , and Linux versions)
 
    • Upside: works great for all things R, including R markdown files, Shiny apps, etc.
    • Limitations: can't easily integrate your R code with other parts of a pipeline on its own
  • XCode (Mac)
    • For C++ coding and debugging (only needed if you are working on breseq).
Changed:
<
<

Luxurious Setup

>
>
META TOPICMOVED by="JeffreyBarrick" date="1716314894" from="Lab.ProtocolsComputingEnvironmentSetup" to="Lab.ProtocolsComputerSetup"
Deleted:
<
<
There are some advanced setup tricks that can save you a lot of time documented on other pages.

These include:

 

Revision 32024-05-21 - CameronRoots

 
META TOPICPARENT name="ComputationList"

Computing Environment Setup

So, you want to harness the immense power of bioinformatics and computational biology for your science? Here are some things you probably want to think about in terms of your operating system, programs you want to download, and other tips for making things convenient.

These instructions are for setting up your laptop. Instructions for setting up a Linux/Unix environment (e.g. on TACC or on your computer if you are on a Linux/Unix platform) will be covered elsewhere.

Minimum Setup

In general, you'll need at least these things to get by:

  1. Text Editor – needs to be industrial strength, meaning it should have these features:
    • Show invisible characters (such as tabs)
    • Open and save files with different types of line endings (you'll want these to be Unix)
  2. Terminal – for connecting to and running commands on a Linux/Unix computer (your own or a cluster)
  3. SFTP File Transfer Program – for transferring files back and forth between your computer and a server

Probably, you should jump to the next section and use one of those recommended programs, but if you really want to be minimal, here are some options.

On Macs, you can use these programs for the requirements:

  1. BBEdit (free for base features)
  2. Terminal (built-in)
  3. Cyberduck (or you can use Terminal if you like typing scp commands)

On Windows, you can use

Changed:
<
<
  1. Probably VSCode (see below) Not Notepad!
  2. Putty
>
>
  1. Notepad++ (not to be confused with Notepad!)
  2. Windows Terminal
 
  1. Cyberduck

Comfortable Setup

Getting an Authentic Linux Environment on Your Machine

On Mac* and Linux systems, you will be able to run and test code on your own computer, which greatly speeds up and simplified development.

*Warning: The Mac setup is not perfect at running all Linux tools. Occasionally some tools will not compile or run on Macs, but >95% of them work fine.

To join the Linux club on a Windows/PC machine, you can partition your hard drive for dual boot and install Linux alongside your Windows install. However, this has serious drawbacks in terms of splitting your hard drive space and not letting you use programs you are familiar with on Windows when you are booted in Linux. Recently, it has become possible to use the Windows Subsystem for Linux (WSL) to much more easily access a true Linux Environment on Windows. If you plan to install, write, and run any code or pipelines—except maybe pure R scripts—on your machine, you will probably want to install and use WSL.

Using an IDE

A basic text editor is passable for changing config files and opening output files that don't play nice with Excel, but it is usually not very good for writing code.

A true integrated development environment (IDE) typically offers these improvements:

  • Code formatting, syntax checking, and auto-complete
  • Ability to step through your code to debug
  • Integration with version control (e.g., git)

The best IDEs depend a bit on what type of coding and activities you are doing. Here are some useful ones:

  • VSCode (Mac and Windows versions)
    • Downside: has a complicated interface and a bit of a learning curve
    • Upside: Great for Python and other text files (including Markdown), has extensions for almost any coding/scripting language
    • Bonus: Everything you need is included in one application. You can connect to servers, edit files remotely, use it as a terminal for running commands, browse files, perform drag-and-drop file transfer, and use it for managing a git repository!
    • If you don't like being tracked by Microsoft, you can use VSCodium
  • RStudio (Mac and Windows versions)
    • Upside: works great for all things R, including R markdown files, Shiny apps, etc.
    • Limitations: can't easily integrate your R code with other parts of a pipeline on its own
  • XCode (Mac)
    • For C++ coding and debugging (only needed if you are working on breseq).

Luxurious Setup

There are some advanced setup tricks that can save you a lot of time documented on other pages.

These include:

Revision 22024-05-21 - JeffreyBarrick

 
META TOPICPARENT name="ComputationList"

Computing Environment Setup

Changed:
<
<
So, you want to harness the immense power of bioinformatics and computational biology for your science?
>
>
So, you want to harness the immense power of bioinformatics and computational biology for your science? Here are some things you probably want to think about in terms of your operating system, programs you want to download, and other tips for making things convenient.
 
Changed:
<
<
Here are some things you probably want to think about in terms of your operating system, programs you want to download, and other tips for making things convenient.
>
>
These instructions are for setting up your laptop. Instructions for setting up a Linux/Unix environment (e.g. on TACC or on your computer if you are on a Linux/Unix platform) will be covered elsewhere.
 

Minimum Setup

Changed:
<
<
In general, you'll need at least these things to get by in computation:
  1. Text Editor – industrial strength, meaning it should have these features:
>
>
In general, you'll need at least these things to get by:
  1. Text Editor – needs to be industrial strength, meaning it should have these features:
 
    • Show invisible characters (such as tabs)
    • Open and save files with different types of line endings (you'll want these to be Unix)
Changed:
<
<
  1. Terminal – for connecting to a Linux/Unix computer (your own or a cluster)
  2. SFTP File Transfer Program – for transferring files back and forth to the computer
>
>
  1. Terminal – for connecting to and running commands on a Linux/Unix computer (your own or a cluster)
  2. SFTP File Transfer Program – for transferring files back and forth between your computer and a server
 
Added:
>
>
Probably, you should jump to the next section and use one of those recommended programs, but if you really want to be minimal, here are some options.
 On Macs, you can use these programs for the requirements:
Changed:
<
<
  1. BBEdit (free for base features)
  2. Terminal (built-in)
  3. Cyberduck (or you can use Terminal if you like typing scp commands)
>
>
  1. BBEdit (free for base features)
  2. Terminal (built-in)
  3. Cyberduck (or you can use Terminal if you like typing scp commands)
  On Windows, you can use
Changed:
<
<
  1. ???? Not Notepad!
  2. Putty
  3. Cyberduck
>
>
  1. Probably VSCode (see below) Not Notepad!
  2. Putty
  3. Cyberduck
 
Deleted:
<
<
On Linux:

But don't stop reading here... your life can be improved greatly by considering a few add-ons or alternatives/

 

Comfortable Setup

Getting an Authentic Linux Environment on Your Machine

On Mac* and Linux systems, you will be able to run and test code on your own computer, which greatly speeds up and simplified development.

Changed:
<
<
*The Mac setup is not perfect at running all Linux tools. Occasionally some tools will not compile or run on Macs, but >95% of them work fine.
>
>
*Warning: The Mac setup is not perfect at running all Linux tools. Occasionally some tools will not compile or run on Macs, but >95% of them work fine.
 
Changed:
<
<
To join the club on a Windows/PC machine, you can partition your hard drive and install Linux alongside your Windows install and boot one or the other. However, this has serious drawbacks in terms of splitting your hard drive space and not letting you use programs you are familiar with on Windows. Recently, it has become possible to use the Windows Subsystem for Linux (WSL) to much more easily access a true Linux Environment. If you plan to write and run any code except maybe pure R scripts on your machine run computational pipelines and bioinformatics tools, you will want to install and use WSL.
>
>
To join the Linux club on a Windows/PC machine, you can partition your hard drive for dual boot and install Linux alongside your Windows install. However, this has serious drawbacks in terms of splitting your hard drive space and not letting you use programs you are familiar with on Windows when you are booted in Linux. Recently, it has become possible to use the Windows Subsystem for Linux (WSL) to much more easily access a true Linux Environment on Windows. If you plan to install, write, and run any code or pipelines—except maybe pure R scripts—on your machine, you will probably want to install and use WSL.
 

Using an IDE

A basic text editor is passable for changing config files and opening output files that don't play nice with Excel, but it is usually not very good for writing code.

A true integrated development environment (IDE) typically offers these improvements:

Changed:
<
<
  • Code formatting, syntax checking, and completion
  • Ability to step through your code for debugging
>
>
  • Code formatting, syntax checking, and auto-complete
  • Ability to step through your code to debug
 
  • Integration with version control (e.g., git)
Changed:
<
<
The best IDEs depend a bit on what type of coding and activities you are doing:
  • VSCode (Mac and Windows versions)
    • Great for Python and other text files (including Markdown), has extensions for almost anything
    • As a bonus, you can connect to servers, edit files remotely, use it as a terminal for running commands, and browse files and perform drag-and-drop file transfer!
  • RStudio
    • Works great for all things R, including R markdown files, Shiny apps, etc.
  • XCode (Mac)
    • Meant for C++ coding.
>
>
The best IDEs depend a bit on what type of coding and activities you are doing. Here are some useful ones:
  • VSCode (Mac and Windows versions)
    • Downside: has a complicated interface and a bit of a learning curve
    • Upside: Great for Python and other text files (including Markdown), has extensions for almost any coding/scripting language
    • Bonus: Everything you need is included in one application. You can connect to servers, edit files remotely, use it as a terminal for running commands, browse files, perform drag-and-drop file transfer, and use it for managing a git repository!
    • If you don't like being tracked by Microsoft, you can use VSCodium
  • RStudio (Mac and Windows versions)
    • Upside: works great for all things R, including R markdown files, Shiny apps, etc.
Added:
>
>
    • Limitations: can't easily integrate your R code with other parts of a pipeline on its own
  • XCode (Mac)
    • For C++ coding and debugging (only needed if you are working on breseq).
 
Changed:
<
<

Deluxe Setup

>
>

Luxurious Setup

  There are some advanced setup tricks that can save you a lot of time documented on other pages.

These include:

Changed:
<
<
  • Setting up SSH keys
  • Copying files with lftp to/from UT Box
>
>
 

Revision 12024-05-21 - JeffreyBarrick

 
META TOPICPARENT name="ComputationList"

Computing Environment Setup

So, you want to harness the immense power of bioinformatics and computational biology for your science?

Here are some things you probably want to think about in terms of your operating system, programs you want to download, and other tips for making things convenient.

Minimum Setup

In general, you'll need at least these things to get by in computation:

  1. Text Editor – industrial strength, meaning it should have these features:
    • Show invisible characters (such as tabs)
    • Open and save files with different types of line endings (you'll want these to be Unix)
  2. Terminal – for connecting to a Linux/Unix computer (your own or a cluster)
  3. SFTP File Transfer Program – for transferring files back and forth to the computer

On Macs, you can use these programs for the requirements:

  1. BBEdit (free for base features)
  2. Terminal (built-in)
  3. Cyberduck (or you can use Terminal if you like typing scp commands)

On Windows, you can use

  1. ???? Not Notepad!
  2. Putty
  3. Cyberduck

On Linux:

But don't stop reading here... your life can be improved greatly by considering a few add-ons or alternatives/

Comfortable Setup

Getting an Authentic Linux Environment on Your Machine

On Mac* and Linux systems, you will be able to run and test code on your own computer, which greatly speeds up and simplified development.

*The Mac setup is not perfect at running all Linux tools. Occasionally some tools will not compile or run on Macs, but >95% of them work fine.

To join the club on a Windows/PC machine, you can partition your hard drive and install Linux alongside your Windows install and boot one or the other. However, this has serious drawbacks in terms of splitting your hard drive space and not letting you use programs you are familiar with on Windows. Recently, it has become possible to use the Windows Subsystem for Linux (WSL) to much more easily access a true Linux Environment. If you plan to write and run any code except maybe pure R scripts on your machine run computational pipelines and bioinformatics tools, you will want to install and use WSL.

Using an IDE

A basic text editor is passable for changing config files and opening output files that don't play nice with Excel, but it is usually not very good for writing code.

A true integrated development environment (IDE) typically offers these improvements:

  • Code formatting, syntax checking, and completion
  • Ability to step through your code for debugging
  • Integration with version control (e.g., git)

The best IDEs depend a bit on what type of coding and activities you are doing:

  • VSCode (Mac and Windows versions)
    • Great for Python and other text files (including Markdown), has extensions for almost anything
    • As a bonus, you can connect to servers, edit files remotely, use it as a terminal for running commands, and browse files and perform drag-and-drop file transfer!
  • RStudio
    • Works great for all things R, including R markdown files, Shiny apps, etc.
  • XCode (Mac)
    • Meant for C++ coding.

Deluxe Setup

There are some advanced setup tricks that can save you a lot of time documented on other pages.

These include:

  • Setting up SSH keys
  • Copying files with lftp to/from UT Box
 
This site is powered by the TWiki collaboration platform Powered by PerlCopyright ©2025 Barrick Lab contributing authors. Ideas, requests, problems? Send feedback