-
-
Notifications
You must be signed in to change notification settings - Fork 197
Fix broken expansion boxes #346
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 1 commit
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -330,16 +330,9 @@ using a transfer program, it needs to be installed on your local machine, not yo | |
|
|
||
| ## Transferring Data Between your Local Machine and the Cloud | ||
|
|
||
| If you're using Windows with PuTTY instead of Git Bash, please select the alternative option here: | ||
| <select id="id_platform" name="platformlist" onchange="change_content_by_platform('id_platform');return false;"> | ||
| ::::::::::::::: solution | ||
|
|
||
| <option value="unix" id="id_unix" selected> Linux, Mac OS, Git Bash </option> | ||
| <option value="win" id="id_win"> PuTTY </option> | ||
| </select> | ||
|
|
||
| <div id="div_unix" style="display:block" markdown="1"> | ||
|
|
||
| ### Uploading Data to your Virtual Machine with scp | ||
| ### Uploading Data to your Virtual Machine with scp on Linux, Mac OS and Windows with Git Bash | ||
|
|
||
| `scp` stands for 'secure copy protocol', and is a widely used UNIX tool for moving files | ||
| between computers. The simplest way to use `scp` is to run it in your local terminal, | ||
|
|
@@ -387,12 +380,12 @@ $ scp dcuser@ip.address:/home/dcuser/shell_data/untrimmed_fastq/scripted_bad_rea | |
| ``` | ||
|
|
||
| Remember that in both instances, the command is run from your local machine, we've just flipped the order of the to and from parts of the command. | ||
| ::::::::::::::::::::::::: | ||
|
|
||
| </div> | ||
|
|
||
| <div id="div_win" style="display:block" markdown="1"> | ||
| ::::::::::::::: solution | ||
|
|
||
| ### Uploading Data to your Virtual Machine with PSCP | ||
| ### Uploading Data to your Virtual Machine with PSCP on Windows with Putty | ||
|
|
||
| If you're using a Windows PC without Git Bash, we recommend you use the *PSCP* program. | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. you are |
||
| This program is from the same suite of tools as the PuTTY program we have been using to connect. | ||
|
|
@@ -425,8 +418,7 @@ C:\User\your-pc-username\Downloads> pscp.exe dcuser@ec2-54-88-126-85.compute-1.a | |
|
|
||
| C:\User\your-pc-username\Downloads | ||
| ``` | ||
|
|
||
| </div> | ||
| ::::::::::::::::::::::::: | ||
|
|
||
| :::::::::::::::::::::::::::::::::::::::: keypoints | ||
|
|
||
|
|
||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we have