Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/conjikidow/ubuntu-environment
Ubuntu environment setup support
https://github.com/conjikidow/ubuntu-environment
environment ubuntu
Last synced: 15 days ago
JSON representation
Ubuntu environment setup support
- Host: GitHub
- URL: https://github.com/conjikidow/ubuntu-environment
- Owner: conjikidow
- License: mit
- Created: 2023-05-16T11:31:38.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-09-13T21:03:27.000Z (about 2 months ago)
- Last Synced: 2024-09-15T12:12:33.708Z (about 2 months ago)
- Topics: environment, ubuntu
- Language: Shell
- Homepage:
- Size: 86.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ubuntu-environment
This repository contains scripts and configuration files for setting up an Ubuntu environment.The latest supported version is Ubuntu 22.04 LTS.
## Before Running This Script
### Install Zsh and GitSet Zsh as the default shell and install Git.
```bash
$ sudo apt update
$ sudo apt install -y zsh git
$ chsh -s $(which zsh)
```To activate Zsh, you need to log out and log back in to the shell.
### Generate and register SSH keys to communicate with GitHub
Generate public/private ed25519 key pairs.
```zsh
$ mkdir ${HOME}/.ssh && cd ${HOME}/.ssh
$ ssh-keygen -t ed25519 -C "[email protected]" -f github_ed25519
```Copy the generated public key to the clipboard and register it on [GitHub](https://github.com/settings/keys).
```zsh
$ sudo apt install -y xclip
$ xclip -sel clip < ${HOME}/.ssh/github_ed25519.pub
```### Download Slack Installer
Download the Slack app installer from its [official site](https://slack.com/downloads/linux) to the Downloads directory if you want the app.
Note that you need to download the .deb version.## Just Run
Clone this repository and run `setup.sh` using your current Zsh.
```zsh
$ git clone --recursive [email protected]:conjikidow/ubuntu-environment.git ${HOME}/.environment
$ cd ${HOME}/.environment
$ source ./setup.sh
```