on GitHub
Tony Su
KPLUG
December 12, 2019
Free for public use, cost for private use
Today, owned by Microsoft
Utilizes Git as its versioning file system
Primarily used by Developers
Original concept innovatively combines code repository with social media access
Will serve static websites for free!
Following is openSUSE, but use whatever package manager for your own distro
zypper in git mlocate tree lxterminall httrack
git config --global user.email "you@example.com"
git config --global user.name "Github Username"
git clone [repository URL]
git checkout --orphan gh-pages
Page 2
git rm -rf .
git push --set-upstream origin gh-pages
Page 3
git clone [repo url]
git update
git checkout gh-pages
git add .
git commit -am "A comment"
git push
Unless you configured SSH or multi-factor authentication, you will be prompted for your Password (and maybe your Username if the global setting didn't take)
git push origin gh-pages
http://kplug-sd.github.io/website/
Currently, for the KPLUG "website" repository, the URL is
Page 2
wget --recursive --level=5 --convert-links --page-requisites --domains=kernel-panic.org
--no-parent http://www.kernel-panic.org
Scraping can also mean extracting content from a web page. Today we are simply doing web duplication, but also in a way that translates links so that the website can be read without a webserver.