Created
February 5, 2017 20:32
-
-
Save jasonwbarnett/5365e8ba6424dbb658891b732b122fa8 to your computer and use it in GitHub Desktop.
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 | |
sudo -s | |
apt-get clean | |
apt-get update | |
apt-get install openssh-server -y | |
passwd kubuntu | |
# enter password: AllVideo123! -- it will ask you to enter it twice. | |
ifconfig | |
########################################################################## | |
# List available devices | |
ls /dev/sd* | |
mkdir /media/ssd | |
mount /dev/sda2 /media/ssd |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment