mirror of
https://pagure.io/fedora-kickstarts.git
synced 2025-12-09 08:30:30 +08:00
Compare commits
74 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
ce61f186bb | ||
|
|
5579ccc249 | ||
|
|
d761360668 | ||
|
|
9625f87b66 | ||
|
|
ba05c3ed08 | ||
|
|
93227e4c16 | ||
|
|
8d089260b2 | ||
|
|
9122e0d384 | ||
|
|
07998a94aa | ||
|
|
eda86d50a4 | ||
|
|
8e60e7d480 | ||
|
|
bba9b95b64 | ||
|
|
d78446b58c | ||
|
|
7d61f0ac6e | ||
|
|
2c0b103fef | ||
|
|
c125e408da | ||
|
|
c2e7a402bf | ||
|
|
b2f1a8e9dd | ||
|
|
02905f6946 | ||
|
|
eb8823e1d7 | ||
|
|
265950301c | ||
|
|
85c65cf1c9 | ||
|
|
9288235085 | ||
|
|
a26624ed9b | ||
|
|
50d56638a4 | ||
|
|
f111c49a16 | ||
|
|
75b3a92964 | ||
|
|
c69f0a4e2d | ||
|
|
47b27db344 | ||
|
|
8db08b9dc9 | ||
|
|
1021a05fd1 | ||
|
|
dcebd2c540 | ||
|
|
d22816d5ff | ||
|
|
9b3251521f | ||
|
|
41cdac9e94 | ||
|
|
d6a2350a39 | ||
|
|
aac93c046a | ||
|
|
aeb2bf2034 | ||
|
|
d94cd77007 | ||
|
|
779c417bcd | ||
|
|
c8dc4f13f5 | ||
|
|
8011bf222f | ||
|
|
4ab5d14b10 | ||
|
|
37589abe3d | ||
|
|
59142fcc92 | ||
|
|
e4975f4c09 | ||
|
|
77f0bcbfd2 | ||
|
|
02b55984ec | ||
|
|
a29472b8c8 | ||
|
|
b6b2f1c8b1 | ||
|
|
f110c70651 | ||
|
|
359cf00301 | ||
|
|
84f578fcfc | ||
|
|
9d08686776 | ||
|
|
a60ccfaea5 | ||
|
|
b8706aa425 | ||
|
|
060a19dc48 | ||
|
|
3b11ed5a50 | ||
|
|
1afc133c89 | ||
|
|
9a220d6fa2 | ||
|
|
f0b7758285 | ||
|
|
0458ba8098 | ||
|
|
f573b2905b | ||
|
|
b8dca705d6 | ||
|
|
13a77ad28b | ||
|
|
96b509716f | ||
|
|
7e9439c5f0 | ||
|
|
802966ff92 | ||
|
|
e10a135b4d | ||
|
|
69cd14ecc8 | ||
|
|
3edb2534c5 | ||
|
|
f340f0eddf | ||
|
|
d356510dc3 | ||
|
|
6ac1f99024 |
@@ -23,8 +23,6 @@ services --enabled=ssh,NetworkManager,avahi-daemon,rsyslog,chronyd --disabled=ne
|
|||||||
kernel
|
kernel
|
||||||
kernel-lpae
|
kernel-lpae
|
||||||
|
|
||||||
dracut-config-generic
|
|
||||||
|
|
||||||
chrony
|
chrony
|
||||||
arm-boot-config
|
arm-boot-config
|
||||||
extlinux-bootloader
|
extlinux-bootloader
|
||||||
@@ -50,16 +48,6 @@ uboot-wandboard_quad
|
|||||||
|
|
||||||
%post
|
%post
|
||||||
|
|
||||||
# work around for poor key import UI in PackageKit
|
|
||||||
rm -f /var/lib/rpm/__db*
|
|
||||||
releasever=$(rpm -q --qf '%{version}\n' fedora-release)
|
|
||||||
basearch=armhfp
|
|
||||||
rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-fedora-$releasever-$basearch
|
|
||||||
echo "Packages within this LiveCD"
|
|
||||||
rpm -qa
|
|
||||||
# Note that running rpm recreates the rpm db files which aren't needed or wanted
|
|
||||||
rm -f /var/lib/rpm/__db*
|
|
||||||
|
|
||||||
# Because memory is scarce resource in most arm systems we are differing from the Fedora
|
# Because memory is scarce resource in most arm systems we are differing from the Fedora
|
||||||
# default of having /tmp on tmpfs.
|
# default of having /tmp on tmpfs.
|
||||||
echo "Disabling tmpfs for /tmp."
|
echo "Disabling tmpfs for /tmp."
|
||||||
|
|||||||
@@ -29,7 +29,7 @@ services --enabled=network,sshd,rsyslog,cloud-init,cloud-init-local,cloud-config
|
|||||||
|
|
||||||
zerombr
|
zerombr
|
||||||
clearpart --all
|
clearpart --all
|
||||||
part / --size 1000 --fstype ext4
|
part / --size 2048 --fstype ext4
|
||||||
|
|
||||||
%include fedora-repo.ks
|
%include fedora-repo.ks
|
||||||
|
|
||||||
@@ -197,7 +197,7 @@ truncate -c -s 0 /var/log/yum.log
|
|||||||
|
|
||||||
echo "Import RPM GPG key"
|
echo "Import RPM GPG key"
|
||||||
releasever=$(rpm -q --qf '%{version}\n' fedora-release)
|
releasever=$(rpm -q --qf '%{version}\n' fedora-release)
|
||||||
basearch=$(uname -i)
|
basearch=$(uname -m)
|
||||||
rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-fedora-$releasever-$basearch
|
rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-fedora-$releasever-$basearch
|
||||||
|
|
||||||
echo "Packages within this cloud image:"
|
echo "Packages within this cloud image:"
|
||||||
|
|||||||
@@ -20,4 +20,12 @@ nss-mdns
|
|||||||
# https://lists.fedoraproject.org/pipermail/devel/2013-July/186796.html
|
# https://lists.fedoraproject.org/pipermail/devel/2013-July/186796.html
|
||||||
-rsyslog
|
-rsyslog
|
||||||
|
|
||||||
|
# Remove a few apps that are being presented as featured apps in
|
||||||
|
# gnome-software
|
||||||
|
-transmission-gtk
|
||||||
|
-simple-scan
|
||||||
|
-gnome-photos
|
||||||
|
-gnome-maps
|
||||||
|
-gnome-weather
|
||||||
|
|
||||||
%end
|
%end
|
||||||
|
|||||||
@@ -1,99 +0,0 @@
|
|||||||
# Kickstart file for composing the "Fedora" spin of Fedora (rawhide)
|
|
||||||
# Maintained by the Fedora Release Engineering team:
|
|
||||||
# https://fedoraproject.org/wiki/ReleaseEngineering
|
|
||||||
# mailto:rel-eng@lists.fedoraproject.org
|
|
||||||
|
|
||||||
# Use a part of 'iso' to define how large you want your isos.
|
|
||||||
# Only used when composing to more than one iso.
|
|
||||||
# Default is 695 (megs), CD size.
|
|
||||||
# Listed below is the size of a DVD if you wanted to split higher.
|
|
||||||
#part iso --size=4998
|
|
||||||
|
|
||||||
# Add the repos you wish to use to compose here. At least one of them needs group data.
|
|
||||||
|
|
||||||
# Only uncomment repo commands in one of the two following sections.
|
|
||||||
# Because the install kickstart doesn't use the updates repo and does
|
|
||||||
# use the source repo, we can't just include fedora-repo.ks
|
|
||||||
|
|
||||||
# In the master branch the rawhide repo commands should be uncommented.
|
|
||||||
repo --name=rawhide --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=rawhide&arch=$basearch
|
|
||||||
repo --name=rawhide-source --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=rawhide-source&arch=$basearch
|
|
||||||
|
|
||||||
# In non-master branches the fedora repo commands should be uncommented
|
|
||||||
#repo --name=fedora --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=fedora-$releasever&arch=$basearch
|
|
||||||
#repo --name=fedora-source --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=fedora-source-$releasever&arch=$basearch
|
|
||||||
|
|
||||||
# Package manifest for the compose. Uses repo group metadata to translate groups.
|
|
||||||
# (default groups for the configured repos are added by --default)
|
|
||||||
# @base got renamed to @standard, but @base is still included by default by pungi.
|
|
||||||
%packages --default --nobase
|
|
||||||
|
|
||||||
# pungi is an inclusive depsolver so that multiple packages are brought
|
|
||||||
# in to satisify dependencies and we don't always want that. So we use
|
|
||||||
# an exclusion list to cut out things we don't want
|
|
||||||
|
|
||||||
-kernel*debug*
|
|
||||||
-kernel-kdump*
|
|
||||||
-kernel-tools*
|
|
||||||
-syslog-ng*
|
|
||||||
-astronomy-bookmarks
|
|
||||||
-generic*
|
|
||||||
-GConf2-dbus*
|
|
||||||
-bluez-gnome
|
|
||||||
# Periods cause problems in paterns, so replace with *s
|
|
||||||
-java-1*8*0-openjdk
|
|
||||||
-community-mysql*
|
|
||||||
-jruby*
|
|
||||||
|
|
||||||
# core
|
|
||||||
kernel*
|
|
||||||
dracut-*
|
|
||||||
|
|
||||||
# Desktops
|
|
||||||
|
|
||||||
## common stuff
|
|
||||||
@base-x
|
|
||||||
@guest-desktop-agents
|
|
||||||
@guest-agents
|
|
||||||
@standard
|
|
||||||
@core
|
|
||||||
@dial-up
|
|
||||||
@fonts
|
|
||||||
@input-methods
|
|
||||||
@multimedia
|
|
||||||
@hardware-support
|
|
||||||
@printing
|
|
||||||
@admin-tools
|
|
||||||
@basic-desktop
|
|
||||||
|
|
||||||
|
|
||||||
@virtualization
|
|
||||||
@web-server
|
|
||||||
@mongodb
|
|
||||||
@perl-web
|
|
||||||
@php
|
|
||||||
@python-web
|
|
||||||
@rubyonrails
|
|
||||||
@mysql
|
|
||||||
@sql-server
|
|
||||||
@jbossas
|
|
||||||
|
|
||||||
# Things needed for installation
|
|
||||||
@anaconda-tools
|
|
||||||
|
|
||||||
# Langpacks
|
|
||||||
autocorr-*
|
|
||||||
eclipse-nls-*
|
|
||||||
hunspell-*
|
|
||||||
hyphen-*
|
|
||||||
calligra-l10n-*
|
|
||||||
kde-l10n-*
|
|
||||||
libreoffice-langpack-*
|
|
||||||
man-pages-*
|
|
||||||
mythes-*
|
|
||||||
-gimp-help-*
|
|
||||||
|
|
||||||
# Removals
|
|
||||||
-PackageKit-zif
|
|
||||||
-zif
|
|
||||||
%end
|
|
||||||
@@ -16,12 +16,12 @@
|
|||||||
# use the source repo, we can't just include fedora-repo.ks
|
# use the source repo, we can't just include fedora-repo.ks
|
||||||
|
|
||||||
# In the master branch the rawhide repo commands should be uncommented.
|
# In the master branch the rawhide repo commands should be uncommented.
|
||||||
repo --name=rawhide --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=rawhide&arch=$basearch
|
#repo --name=rawhide --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=rawhide&arch=$basearch
|
||||||
repo --name=rawhide-source --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=rawhide-source&arch=$basearch
|
#repo --name=rawhide-source --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=rawhide-source&arch=$basearch
|
||||||
|
|
||||||
# In non-master branches the fedora repo commands should be uncommented
|
# In non-master branches the fedora repo commands should be uncommented
|
||||||
#repo --name=fedora --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=fedora-$releasever&arch=$basearch
|
repo --name=fedora --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=fedora-$releasever&arch=$basearch
|
||||||
#repo --name=fedora-source --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=fedora-source-$releasever&arch=$basearch
|
repo --name=fedora-source --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=fedora-source-$releasever&arch=$basearch
|
||||||
|
|
||||||
# Package manifest for the compose. Uses repo group metadata to translate groups.
|
# Package manifest for the compose. Uses repo group metadata to translate groups.
|
||||||
# (default groups for the configured repos are added by --default)
|
# (default groups for the configured repos are added by --default)
|
||||||
@@ -1,102 +0,0 @@
|
|||||||
# Kickstart file for composing the "Fedora" spin of Fedora (rawhide)
|
|
||||||
# Maintained by the Fedora Release Engineering team:
|
|
||||||
# https://fedoraproject.org/wiki/ReleaseEngineering
|
|
||||||
# mailto:rel-eng@lists.fedoraproject.org
|
|
||||||
|
|
||||||
# Use a part of 'iso' to define how large you want your isos.
|
|
||||||
# Only used when composing to more than one iso.
|
|
||||||
# Default is 695 (megs), CD size.
|
|
||||||
# Listed below is the size of a DVD if you wanted to split higher.
|
|
||||||
#part iso --size=4998
|
|
||||||
|
|
||||||
# Add the repos you wish to use to compose here. At least one of them needs group data.
|
|
||||||
|
|
||||||
# Only uncomment repo commands in one of the two following sections.
|
|
||||||
# Because the install kickstart doesn't use the updates repo and does
|
|
||||||
# use the source repo, we can't just include fedora-repo.ks
|
|
||||||
|
|
||||||
# In the master branch the rawhide repo commands should be uncommented.
|
|
||||||
repo --name=rawhide --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=rawhide&arch=$basearch
|
|
||||||
repo --name=rawhide-source --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=rawhide-source&arch=$basearch
|
|
||||||
|
|
||||||
# In non-master branches the fedora repo commands should be uncommented
|
|
||||||
#repo --name=fedora --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=fedora-$releasever&arch=$basearch
|
|
||||||
#repo --name=fedora-source --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=fedora-source-$releasever&arch=$basearch
|
|
||||||
|
|
||||||
# Package manifest for the compose. Uses repo group metadata to translate groups.
|
|
||||||
# (default groups for the configured repos are added by --default)
|
|
||||||
# @base got renamed to @standard, but @base is still included by default by pungi.
|
|
||||||
%packages --default --nobase
|
|
||||||
|
|
||||||
# pungi is an inclusive depsolver so that multiple packages are brought
|
|
||||||
# in to satisify dependencies and we don't always want that. So we use
|
|
||||||
# an exclusion list to cut out things we don't want
|
|
||||||
|
|
||||||
-kernel*debug*
|
|
||||||
-kernel-kdump*
|
|
||||||
-kernel-tools*
|
|
||||||
-syslog-ng*
|
|
||||||
-astronomy-bookmarks
|
|
||||||
-generic*
|
|
||||||
-GConf2-dbus*
|
|
||||||
-bluez-gnome
|
|
||||||
# Periods cause problems in paterns, so replace with *s
|
|
||||||
-java-1*8*0-openjdk
|
|
||||||
-community-mysql*
|
|
||||||
-jruby*
|
|
||||||
|
|
||||||
# core
|
|
||||||
kernel*
|
|
||||||
dracut-*
|
|
||||||
|
|
||||||
# Desktops
|
|
||||||
|
|
||||||
## common stuff
|
|
||||||
@base-x
|
|
||||||
@guest-agents
|
|
||||||
@standard
|
|
||||||
@core
|
|
||||||
@input-methods
|
|
||||||
@multimedia
|
|
||||||
@hardware-support
|
|
||||||
@admin-tools
|
|
||||||
@basic-desktop
|
|
||||||
|
|
||||||
# Workstation
|
|
||||||
@eclipse
|
|
||||||
@development-libs
|
|
||||||
@development-tools
|
|
||||||
@c-development
|
|
||||||
@rpm-development-tools
|
|
||||||
@fedora-packager
|
|
||||||
@virtualization
|
|
||||||
@web-server
|
|
||||||
@mongodb
|
|
||||||
@perl-web
|
|
||||||
@php
|
|
||||||
@python-web
|
|
||||||
@rubyonrails
|
|
||||||
@mysql
|
|
||||||
@sql-server
|
|
||||||
@design-suite
|
|
||||||
@jbossas
|
|
||||||
|
|
||||||
# Things needed for installation
|
|
||||||
@anaconda-tools
|
|
||||||
|
|
||||||
# Langpacks
|
|
||||||
autocorr-*
|
|
||||||
eclipse-nls-*
|
|
||||||
hunspell-*
|
|
||||||
hyphen-*
|
|
||||||
calligra-l10n-*
|
|
||||||
kde-l10n-*
|
|
||||||
libreoffice-langpack-*
|
|
||||||
man-pages-*
|
|
||||||
mythes-*
|
|
||||||
-gimp-help-*
|
|
||||||
|
|
||||||
# Removals
|
|
||||||
-PackageKit-zif
|
|
||||||
-zif
|
|
||||||
%end
|
|
||||||
@@ -7,6 +7,10 @@
|
|||||||
### The KDE-Desktop
|
### The KDE-Desktop
|
||||||
|
|
||||||
### fixes
|
### fixes
|
||||||
|
# sddm->kdm, (temporary) so don't have to wait on comps changes
|
||||||
|
-sddm
|
||||||
|
-sddm-kcm
|
||||||
|
kdm
|
||||||
|
|
||||||
# use kde-print-manager instead of system-config-printer
|
# use kde-print-manager instead of system-config-printer
|
||||||
-system-config-printer
|
-system-config-printer
|
||||||
|
|||||||
@@ -281,7 +281,7 @@ systemctl enable tmp.mount
|
|||||||
# work around for poor key import UI in PackageKit
|
# work around for poor key import UI in PackageKit
|
||||||
rm -f /var/lib/rpm/__db*
|
rm -f /var/lib/rpm/__db*
|
||||||
releasever=$(rpm -q --qf '%{version}\n' fedora-release)
|
releasever=$(rpm -q --qf '%{version}\n' fedora-release)
|
||||||
basearch=$(uname -i)
|
basearch=$(uname -m)
|
||||||
rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-fedora-$releasever-$basearch
|
rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-fedora-$releasever-$basearch
|
||||||
echo "Packages within this LiveCD"
|
echo "Packages within this LiveCD"
|
||||||
rpm -qa
|
rpm -qa
|
||||||
@@ -303,7 +303,7 @@ rm -f /core*
|
|||||||
|
|
||||||
|
|
||||||
%post --nochroot
|
%post --nochroot
|
||||||
cp $INSTALL_ROOT/usr/share/doc/*-release/GPL $LIVE_ROOT/GPL
|
cp $INSTALL_ROOT/usr/share/doc/*-release-*/GPL $LIVE_ROOT/GPL
|
||||||
|
|
||||||
# only works on x86, x86_64
|
# only works on x86, x86_64
|
||||||
if [ "$(uname -i)" = "i386" -o "$(uname -i)" = "x86_64" ]; then
|
if [ "$(uname -i)" = "i386" -o "$(uname -i)" = "x86_64" ]; then
|
||||||
|
|||||||
@@ -31,8 +31,8 @@ gimp-gap
|
|||||||
gimp-paint-studio
|
gimp-paint-studio
|
||||||
gimp-high-pass-filter
|
gimp-high-pass-filter
|
||||||
gimp-normalmap
|
gimp-normalmap
|
||||||
|
gimp-paint-studio
|
||||||
gimp-resynthesizer
|
gimp-resynthesizer
|
||||||
gimp-separate+
|
|
||||||
gpick
|
gpick
|
||||||
GREYCstoration-gimp
|
GREYCstoration-gimp
|
||||||
hugin
|
hugin
|
||||||
@@ -59,6 +59,10 @@ filezilla
|
|||||||
audacity
|
audacity
|
||||||
pitivi
|
pitivi
|
||||||
|
|
||||||
|
# system
|
||||||
|
# gtk-recordmydesktop # dropped for space (#887991)
|
||||||
|
# network-manager-applet #part of Gnome Desktop
|
||||||
|
|
||||||
# fonts
|
# fonts
|
||||||
aajohan-comfortaa-fonts
|
aajohan-comfortaa-fonts
|
||||||
adobe-source-sans-pro-fonts
|
adobe-source-sans-pro-fonts
|
||||||
@@ -100,30 +104,30 @@ overpass-fonts
|
|||||||
#Override the favorite desktop application in Dash
|
#Override the favorite desktop application in Dash
|
||||||
cat >> /usr/share/glib-2.0/schemas/org.gnome.shell.gschema.override << FOE
|
cat >> /usr/share/glib-2.0/schemas/org.gnome.shell.gschema.override << FOE
|
||||||
[org.gnome.shell]
|
[org.gnome.shell]
|
||||||
favorite-apps=['firefox.desktop', 'evolution.desktop', 'shotwell.desktop', 'gimp.desktop', 'inkscape.desktop', 'blender.desktop', 'libreoffice-writer.desktop', 'scribus.desktop', 'nautilus.desktop', 'bijiben.desktop', 'anaconda.desktop', 'list-design-tutorials.desktop']
|
favorite-apps=['firefox.desktop', 'evolution.desktop', 'shotwell.desktop', 'gimp.desktop', 'inkscape.desktop', 'blender.desktop', 'libreoffice-writer.desktop', 'scribus.desktop', 'nautilus.desktop', 'bijiben.desktop', 'anaconda.desktop','list-design-tutorials.desktop']
|
||||||
#Enable categories in Gnome Shell
|
#Enable categories in Gnome Shell
|
||||||
app-folder-categories=['Utilities', 'Sundry', 'Office', 'Network', 'Internet', 'Graphics', 'Games', 'Multimedia', 'System', 'Development', 'Accessories', 'System Settings', 'Other']
|
app-folder-categories=['Utilities', 'Sundry', 'Office', 'Network', 'Internet', 'Graphics', 'Games', 'Multimedia', 'System', 'Development', 'Accessories', 'System Settings', 'Other']
|
||||||
FOE
|
FOE
|
||||||
|
|
||||||
# Add link to the Inkscape Course
|
# Add link to the Inkscape Course
|
||||||
cat >> /usr/share/applications/inkscape-course.desktop << FOE
|
#cat >> /usr/share/applications/inkscape-course.desktop << FOE
|
||||||
[Desktop Entry]
|
#[Desktop Entry]
|
||||||
Name=Introduction To Inkscape
|
#Name=Introduction To Inkscape
|
||||||
GenericName=Inkscape Course
|
#GenericName=Inkscape Course
|
||||||
Comment=Materials from Máirín Duffy's Inkscape Class
|
#Comment=Materials from Máirín Duffy's Inkscape Class
|
||||||
Exec=xdg-open http://linuxgrrl.com/learn/Introduction_To_Inkscape
|
#Exec=xdg-open http://linuxgrrl.com/learn/Introduction_To_Inkscape
|
||||||
Type=Application
|
#Type=Application
|
||||||
Icon=fedora-logo-icon
|
#Icon=fedora-logo-icon
|
||||||
Categories=Graphics;Documentation;
|
#Categories=Graphics;Documentation;
|
||||||
FOE
|
#FOE
|
||||||
chmod a+x /usr/share/applications/inkscape-course.desktop
|
#chmod a+x /usr/share/applications/inkscape-course.desktop
|
||||||
|
|
||||||
# Add link to lists of tutorials
|
# Add link to lists of tutorials
|
||||||
cat >> /usr/share/applications/list-design-tutorials.desktop << FOE
|
cat >> /usr/share/applications/list-design-tutorials.desktop << FOE
|
||||||
[Desktop Entry]
|
[Desktop Entry]
|
||||||
Name=List of design tutorials
|
Name=List of Design Tutorials
|
||||||
GenericName=List of Tutorials for Designers
|
GenericName=List of design tutorials
|
||||||
Comment=Reference of Design Related Tutorials
|
Comment=Reference of graphic and web design related tutorials
|
||||||
Exec=xdg-open http://fedoraproject.org/wiki/Design_Suite/Tutorials
|
Exec=xdg-open http://fedoraproject.org/wiki/Design_Suite/Tutorials
|
||||||
Type=Application
|
Type=Application
|
||||||
Icon=applications-graphics
|
Icon=applications-graphics
|
||||||
|
|||||||
@@ -40,11 +40,12 @@ chmod a+x /home/liveuser/.xsession
|
|||||||
chown liveuser:liveuser /home/liveuser/.xsession
|
chown liveuser:liveuser /home/liveuser/.xsession
|
||||||
|
|
||||||
# set up autologin for user liveuser
|
# set up autologin for user liveuser
|
||||||
sed -i 's/^AutoUser=.*/AutoUser=liveuser/' /etc/sddm.conf
|
sed -i 's/#AutoLoginEnable=true/AutoLoginEnable=true/' /etc/kde/kdm/kdmrc
|
||||||
|
sed -i 's/#AutoLoginUser=fred/AutoLoginUser=liveuser/' /etc/kde/kdm/kdmrc
|
||||||
|
|
||||||
# set up user liveuser as default user and preselected user
|
# set up user liveuser as default user and preselected user
|
||||||
sed -i 's/^LastUser=.*/LastUser=liveuser/' /etc/sddm.conf
|
sed -i 's/#PreselectUser=Default/PreselectUser=Default/' /etc/kde/kdm/kdmrc
|
||||||
sed -i 's/^LastSession=.*/LastSession=kde-plasma.desktop/' /etc/sddm.conf
|
sed -i 's/#DefaultUser=johndoe/DefaultUser=liveuser/' /etc/kde/kdm/kdmrc
|
||||||
|
|
||||||
# add liveinst.desktop to favorites menu
|
# add liveinst.desktop to favorites menu
|
||||||
mkdir -p /home/liveuser/.kde/share/config/
|
mkdir -p /home/liveuser/.kde/share/config/
|
||||||
|
|||||||
@@ -11,27 +11,8 @@
|
|||||||
-planner
|
-planner
|
||||||
|
|
||||||
# Drop things for size
|
# Drop things for size
|
||||||
-@3d-printing
|
|
||||||
-brasero
|
|
||||||
-bluez
|
|
||||||
-bluez-cups
|
|
||||||
-@dial-up
|
|
||||||
-dnf
|
|
||||||
-firefox
|
-firefox
|
||||||
-gnome-bluetooth-libs
|
|
||||||
-gnome-icon-theme-symbolic
|
|
||||||
-gnome-software
|
|
||||||
-gnome-user-docs
|
|
||||||
-@guest-desktop-agents
|
|
||||||
-@libreoffice
|
-@libreoffice
|
||||||
-@mate-applications
|
|
||||||
-mate-bluetooth
|
|
||||||
-mate-icon-theme-faenza
|
|
||||||
-transmission-gtk
|
|
||||||
|
|
||||||
# Drop oversized fonts that aren't needed
|
|
||||||
-cjkuni-uming-fonts
|
|
||||||
-wqy-zenhei-fonts
|
|
||||||
|
|
||||||
# A web browser would be nice for a live cd
|
# A web browser would be nice for a live cd
|
||||||
midori
|
midori
|
||||||
@@ -84,8 +65,8 @@ midori
|
|||||||
-ntsysv
|
-ntsysv
|
||||||
|
|
||||||
# Drop some system-config things
|
# Drop some system-config things
|
||||||
|
-system-config-boot
|
||||||
-system-config-language
|
-system-config-language
|
||||||
-system-config-printer
|
|
||||||
-system-config-rootpassword
|
-system-config-rootpassword
|
||||||
-system-config-services
|
-system-config-services
|
||||||
-policycoreutils-gui
|
-policycoreutils-gui
|
||||||
@@ -97,3 +78,4 @@ midori
|
|||||||
rm -f /usr/share/icons/HighContrast/icon-theme.cache
|
rm -f /usr/share/icons/HighContrast/icon-theme.cache
|
||||||
|
|
||||||
%end
|
%end
|
||||||
|
|
||||||
|
|||||||
@@ -24,14 +24,15 @@ part / --size 10240
|
|||||||
%packages
|
%packages
|
||||||
@xfce-desktop
|
@xfce-desktop
|
||||||
@xfce-apps
|
@xfce-apps
|
||||||
|
#@xfce-extra-plugins
|
||||||
|
#@xfce-media
|
||||||
|
#@xfce-office
|
||||||
|
#@firefox
|
||||||
|
|
||||||
# Security tools (not ready at the moment)
|
# Security tools (not ready at the moment)
|
||||||
@security-lab
|
@security-lab
|
||||||
security-menus
|
security-menus
|
||||||
|
|
||||||
# unlock default keyring. FIXME: Should probably be done in comps
|
|
||||||
gnome-keyring-pam
|
|
||||||
|
|
||||||
# save some space
|
# save some space
|
||||||
-autofs
|
-autofs
|
||||||
-acpid
|
-acpid
|
||||||
@@ -40,16 +41,13 @@ gnome-keyring-pam
|
|||||||
-realmd # only seems to be used in GNOME
|
-realmd # only seems to be used in GNOME
|
||||||
-PackageKit* # we switched to yumex, so we don't need this
|
-PackageKit* # we switched to yumex, so we don't need this
|
||||||
-aspell-* # dictionaries are big
|
-aspell-* # dictionaries are big
|
||||||
-gnumeric
|
|
||||||
-foomatic-db-ppds
|
|
||||||
-foomatic
|
|
||||||
-stix-fonts
|
|
||||||
-ibus-typing-booster
|
|
||||||
-xfce4-sensors-plugin
|
|
||||||
-man-pages-*
|
-man-pages-*
|
||||||
|
|
||||||
# drop some system-config things
|
# drop some system-config things
|
||||||
|
-system-config-boot
|
||||||
|
#-system-config-network
|
||||||
-system-config-rootpassword
|
-system-config-rootpassword
|
||||||
|
#-system-config-services
|
||||||
-policycoreutils-gui
|
-policycoreutils-gui
|
||||||
|
|
||||||
# exclude some packages to save some space
|
# exclude some packages to save some space
|
||||||
|
|||||||
@@ -26,8 +26,8 @@ rm -f /var/lib/rpm/__db*
|
|||||||
|
|
||||||
# Get proper release naming in the control panel
|
# Get proper release naming in the control panel
|
||||||
cat >> /boot/olpc_build << EOF
|
cat >> /boot/olpc_build << EOF
|
||||||
Sugar on a Stick 10 (Unknown)
|
Sugar on a Stick 10
|
||||||
Fedora release 20 (Rawhide)
|
Fedora release 20 (Heisenbug)
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
# Add our activities to the favorites
|
# Add our activities to the favorites
|
||||||
|
|||||||
@@ -1,8 +1,6 @@
|
|||||||
%packages
|
%packages
|
||||||
-realmd # only seems to be used in GNOME
|
-realmd # only seems to be used in GNOME
|
||||||
-PackageKit* # we switched to yumex, so we don't need this
|
-PackageKit* # we switched to yumex, so we don't need this
|
||||||
-ConsoleKit # ConsoleKit is deprecated
|
|
||||||
-ConsoleKit-x11 # ConsoleKit is deprecated
|
|
||||||
firefox
|
firefox
|
||||||
@mate
|
@mate
|
||||||
compiz
|
compiz
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
# Exactly one of the following should be uncommented
|
# Exactly one of the following should be uncommented
|
||||||
|
|
||||||
# For the master branch the following should be uncommented
|
# For the master branch the following should be uncommented
|
||||||
%include fedora-repo-rawhide.ks
|
#%include fedora-repo-rawhide.ks
|
||||||
|
|
||||||
# For non-master branches the following should be uncommented
|
# For non-master branches the following should be uncommented
|
||||||
# %include fedora-repo-not-rawhide.ks
|
%include fedora-repo-not-rawhide.ks
|
||||||
|
|||||||
Reference in New Issue
Block a user