mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-02-19 19:27:31 -08:00
34 lines
860 B
Markdown
34 lines
860 B
Markdown
|
# Provision Fedora
|
||
|
> \*Tips Fedora\*
|
||
|
|
||
|
Jumpstart scripts to install Fedora with packages and configs I use.
|
||
|
|
||
|
## Usage
|
||
|
|
||
|
Install Fedora Workstation with BTRFS and partition:
|
||
|
|
||
|
```
|
||
|
1. 512Mb EFI partition at /boot/EFI
|
||
|
2. BTRFS volume "root" at / that fills rest of drive
|
||
|
3. BTFS subvolume "home" at /home
|
||
|
```
|
||
|
|
||
|
Run the following commands:
|
||
|
|
||
|
```bash
|
||
|
sudo dnf install vim git -y
|
||
|
git clone --recurse-submodules https://github.com/starr-dusT/dotfiles ~/.local/share/chezmoi
|
||
|
```
|
||
|
|
||
|
Copy `.chezmoidata.yaml.example` to `.chezmoidata.yaml` and edit with desired settings then run the following commands:
|
||
|
|
||
|
```bash
|
||
|
~/.local/share/chezmoi/provision/fedora/jumpstart.sh
|
||
|
```
|
||
|
|
||
|
Perform additional setup found in [additional-setup](additional-setup.md)
|
||
|
|
||
|
## Update Setup
|
||
|
|
||
|
`linux-update --fedora` command updates the system with ansible. Run `linux-update -h` for information on usage.
|