dr-w-site/wiki/pages/getting-started.md

76 lines
2.1 KiB
Markdown
Raw Normal View History

2018-06-04 02:18:02 +00:00
---
author: ~ben
2018-06-04 06:18:28 +00:00
published: true
2018-06-04 02:18:02 +00:00
title: getting-started
category:
- main
---
2018-06-04 06:18:28 +00:00
## getting started
2018-06-04 02:18:02 +00:00
Welcome
New to the command line and all this webby cowfoolery? You're in luck! Here's a basic HELLO WORLD tutorial.
```
_______________________________________
/ WELCOME TO TILDE.TEAM A PLACE FOR WEB \
\ PAGES /
---------------------------------------
\ ^__^
\ (oo)\_______
(__)\ )\/\
||----w |
|| ||
```
## Logging in
### PC (windows)
* On a PC, you'll need to get an ssh client. [PuTTY](http://www.putty.org/) is a good one.
- host: tilde.team
* another option is to use [WSL (windows subsystem for linux)](https://docs.microsoft.com/en-us/windows/wsl/install-win10)
* or [git bash](https://git-scm.com) included with a standard git install
### Linux
* Open a terminal. Try ctrl + alt + t.
* `ssh your_username@tilde.team`
* Enter your password.
### Mac
* Browse to Applications/Utilities/Terminal and launch Terminal (or press cmd+space, start typing Terminal, and press return)
* `ssh your_username@tilde.team`
* Enter your password.
## Finding your index.html file
2018-06-04 02:18:02 +00:00
There are some basic command line commands you'll want to Google and learn, but for this tutorial you only need a few:
* `ls` = list files and folders in current directory
* `cd` = change directories
* `nano` = a command line text editor
2018-06-04 06:18:28 +00:00
Type: `ls` to see where you are. You should see a directory called "public_html"
2018-06-04 06:18:28 +00:00
Type: `cd public_html` to move into that folder. (cd stands for change directory.)
2018-06-04 06:18:28 +00:00
Type: `ls` to see where you are. You should see your index.html file
2018-06-04 02:18:02 +00:00
Editing your index.html file
2018-06-04 06:18:28 +00:00
Type: `nano index.html` to open your index.html file and begin editing
2018-06-04 02:18:02 +00:00
Edit your file, willy nilly
2018-06-04 06:18:28 +00:00
When done editing, use `ctrl + x` to close the file
2018-06-04 02:18:02 +00:00
You'll be asked if you want to save; say y and to return to the command line
2018-06-04 02:18:02 +00:00
Refresh your tilde page in your browser to see your new website
2018-06-04 02:18:02 +00:00
Note: If at any time you feel you made a mistake in editing, you can exit and n to not save.
2018-06-04 06:18:28 +00:00
see the [advanced ssh key guide](/wiki/view.php?page=advanced-ssh) for more information and cool tips :)