## Tutorial
### Step 1: Create your first blog post
1. Create a new file called `my-fourth-post.md` in the `./src/blog` directory
Your file explorer should now look like this:
```{8}
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
| Step B.) Creating a branch (and switching to the new branch in one line (Step 2) | |
| ********** | |
| a.) git checkout -b [name of new branch] | |
| eg. git checkout -b 2012Tryme | |
| git fetch origin [remote-branch]:[new-local-branch] (Pulling a new branch from a remote repository) | |
| b.) follow step 1 | |
| c.) git push origin 2012Tryme | |
| ** will add new branch to the repository on git hub | |
| ********************** | |
| Step A.) Scheduling the addition of all files to the next commit (Step 1) |
Find the proper driver at the NVidia website.
Note: Make sure to select "Linux 64-bit" as your OS
Hit the "Search" button.
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
| #/bin/bash | |
| ## taking.kr ([email protected]) | |
| ## 2019-06-11 | |
| ########################################### | |
| read -p "hostname (ex taking.kr): " uhost | |
| read -p "new username: " uname | |
| read -p "$uname's Password: " upasswd | |
| encrypt_pass=$(perl -e 'print crypt($ARGV[0], "password")' $upasswd) | |
| ############ nameserver setting ############### |
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
| Note : Proxmox 6.1 | |
| VI : /etc/apt/sources.list | |
| # security updates | |
| deb http://security.debian.org jessie/updates main contrib | |
| # PVE pve-no-subscription repository provided by proxmox.com, | |
| # NOT recommended for production use | |
| deb http://download.proxmox.com/debian jessie pve-no-subscription |
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
| #!/bin/bash | |
| # Ask for the project name | |
| echo "Enter your new project name:" | |
| read projectname | |
| # Create directory and navigate into it |
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
| #!/bin/bash | |
| # Removes old revisions of snaps | |
| # CLOSE ALL SNAPS BEFORE RUNNING THIS | |
| set -eu | |
| LANG=en_US.UTF-8 snap list --all | awk '/disabled/{print $1, $3}' | | |
| while read snapname revision; do | |
| snap remove "$snapname" --revision="$revision" | |
| done |

