Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion archinstall/lib/installer.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
from .storage import storage

# Any package that the Installer() is responsible for (optional and the default ones)
__packages__ = ['base', 'base-devel', 'linux-firmware', 'linux', 'linux-lts', 'linux-zen', 'linux-hardened']
__packages__ = ['base', 'sudo', 'linux-firmware', 'linux', 'linux-lts', 'linux-zen', 'linux-hardened']

# Additional packages that are installed if the user is running the Live ISO with accessibility tools enabled
__accessibility_packages__ = ['brltty', 'espeakup', 'alsa-utils']
Expand Down
3 changes: 2 additions & 1 deletion archinstall/lib/interactions/general_conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,8 @@ def ask_additional_packages_to_install(
package_groups = PackageGroup.from_available_packages(packages)

# Additional packages (with some light weight error handling for invalid package names)
header = tr('Only packages such as base, base-devel, linux, linux-firmware, efibootmgr and optional profile packages are installed.') + '\n'
header = tr('Only packages such as base, sudo, linux, linux-firmware, efibootmgr and optional profile packages are installed.') + '\n'
header += tr('Note: base-devel is no longer installed by default. Add it here if you need build tools.') + '\n'
header += tr('Select any packages from the below list that should be installed additionally') + '\n'

# there are over 15k packages so this needs to be quick
Expand Down
3 changes: 3 additions & 0 deletions archinstall/locales/base.pot
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,9 @@ msgid ""
"and optional profile packages are installed."
msgstr ""

msgid "Note: base-devel is no longer installed by default. Add it here if you need build tools."
msgstr ""

msgid ""
"If you desire a web browser, such as firefox or chromium, you may specify it "
"in the following prompt."
Expand Down
5 changes: 4 additions & 1 deletion archinstall/locales/en/LC_MESSAGES/base.po
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,10 @@ msgstr ""
msgid "Choose an audio server"
msgstr ""

msgid "Only packages such as base, base-devel, linux, linux-firmware, efibootmgr and optional profile packages are installed."
msgid "Only packages such as base, sudo, linux, linux-firmware, efibootmgr and optional profile packages are installed."
msgstr ""

msgid "Note: base-devel is no longer installed by default. Add it here if you need build tools."
msgstr ""

msgid "If you desire a web browser, such as firefox or chromium, you may specify it in the following prompt."
Expand Down