https://github.com/riipandi/fedora-budgie-remix
Unofficial Fedora Budgie Remix
https://github.com/riipandi/fedora-budgie-remix
budgie-desktop distribution fedora linux linux-distribution linux-distros
Last synced: about 2 months ago
JSON representation
Unofficial Fedora Budgie Remix
- Host: GitHub
- URL: https://github.com/riipandi/fedora-budgie-remix
- Owner: riipandi
- License: mit
- Archived: true
- Created: 2017-12-06T02:02:58.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-09-25T08:43:57.000Z (over 6 years ago)
- Last Synced: 2025-02-13T14:48:22.078Z (3 months ago)
- Topics: budgie-desktop, distribution, fedora, linux, linux-distribution, linux-distros
- Language: Shell
- Homepage: http://fedora-budgie-remix.sf.net/
- Size: 103 MB
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Kickstart files for Fedora Budgie Remix
These files composes Budgie Remix from Fedora repositories.
To use them effectively, please look at pykickstart and lorax documentation.
## Build Notes
### References
-
-
-
-
-
-
-### Dependencies
```bash
dnf -y install kernel-modules-$(uname -r) mock curl livecd-tools pungi \
{fedora,spin,l10n}-kickstarts pykickstart anaconda lorax virt-install \
libvirt-daemon-config-network lorax virt-install appliance-tools
``````bash
sudo usermod -a -G mock yourname
sudo systemctl enable --now libvirtd
```### Set selinux mode to permissive
```bash
sudo setenforce 0
```### Get Fedora kickstarts
```bash
git clone https://pagure.io/fedora-kickstarts.git fedora-ks -b f28
```### Init Environment: run as general user
```bash
mock -r fedora-28-x86_64 --init
mock -r fedora-28-x86_64 --install lorax-lmc-novirt vim-minimal pykickstart git
```### Running a Compose
```bash
mock -r fedora-28-x86_64 --shell --old-chroot
```### Chroot: Flatten a Kickstart
```bash
cd /usr/src; git clone https://github.com/riipandi/fedora-budgie-remix.git fbr
ksflatten --config fbr/kickstart.d/remix-live-budgie.ks -o remix-budgie.ks --version F28
```### Chroot: Create the Live Image
```bash
rm -fr /var/livebuild
mkdir -p /tmp/livebuildlivemedia-creator \
--ks remix-budgie.ks \
--logfile /tmp/livebuild.log \
--project "Fedora Budgie Remix" \
--volid "Fedora Budgie Remix x64" \
--title "Fedora Budgie Remix" \
--make-iso --iso-only --releasever 28 \
--iso-name fedora-budgie-live.iso \
--no-virt --macboot
```### Compose Results and cleanup
```bash
cp /var/lib/mock/fedora-28-x86_64/root/var/lmc/*.iso $HOME
mock -r fedora-28-x86_64 --clean
```## Old method
```bash
mkdir -p f28 ; cd $_
curl -sLO https://pagure.io/fedora-kickstarts/raw/f28/f/fedora-arm-base.ks
curl -sLO https://pagure.io/fedora-kickstarts/raw/f28/f/fedora-arm-xbase.ks
curl -sLO https://pagure.io/fedora-kickstarts/raw/f28/f/fedora-arm-xfce.ks
curl -sLO https://pagure.io/fedora-kickstarts/raw/f28/f/fedora-live-base.ks
curl -sLO https://pagure.io/fedora-kickstarts/raw/f28/f/fedora-live-minimization.ks
curl -sLO https://pagure.io/fedora-kickstarts/raw/f28/f/fedora-live-xfce.ks
curl -sLO https://pagure.io/fedora-kickstarts/raw/f28/f/fedora-xfce-common.ks
curl -sLO https://pagure.io/fedora-kickstarts/raw/f28/f/fedora-repo-not-rawhide.ks
mv fedora-repo-not-rawhide.ks fedora-repo.ks
```## Disclaimer
Linux is a registered trademark of Linus Torvalds. Fedora and the Infinity
design logo are trademarks of Red Hat, Inc. This project is not affiliated
with Linus Torvalds or Red Hat, Inc.