Secure Initial Server Setup with Ubuntu
This is how I set up and secure a new instance of Ubuntu Server.
My name is David Chalifoux.
I'm a developer who loves the web.
You can learn more about my work below.
My professional work.
My personal projects.
Get in touch.
My latest writings.
This is how I set up and secure a new instance of Ubuntu Server.
Update: This is now a feature on Steam! Check out their documentation for Local Network Game Transfers. I was recently in a situation where I wanted to download Baldur’s Gate 3 (a 100+GB game) on Steam, but my gaming machine was limited to a less-than-ideal wireless connection getting about 8MB/s. However, I did have my home server running Ubuntu connected directly to the router which got around 80MB/s. After finding this helpful article, I was able to download the game on the server with the 1
Sometimes it is useful to clear a repository’s commit history. For example, you might not want your code history from your prototyping phase to be visible on GitHub. Based on this StackOverflow post, here is what I think is the best way to do this: 1. Create a new branch git checkout --orphan latest_branch 2. Add all files git add -A 3. Commit all files git commit -am "commit message" 4. Delete your main branch git branch -D main 5. Rename your branch to main git branch -m main