|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# The reference version of this script is maintained in:
|
|
|
|
# ./kali-installer/simple-cdd/profiles/kali.postinst
|
|
|
|
# ./kali-live/kali-config/common/includes.installer/kali-finish-install
|
|
|
|
#
|
|
|
|
# It is used in multiple places to finish configuring the target system
|
|
|
|
# and build.sh copies it where required (in the simple-cdd configuration
|
|
|
|
# and in the live-build configuration).
|
|
|
|
|
|
|
|
configure_sources_list() {
|
|
|
|
if grep -q '^deb ' /etc/apt/sources.list; then
|
|
|
|
echo "INFO: sources.list is configured, everything is fine"
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo "INFO: sources.list is empty, setting up a default one for Kali"
|
|
|
|
|
|
|
|
cat >/etc/apt/sources.list <<END
|
|
|
|
# See https://www.kali.org/docs/general-use/kali-linux-sources-list-repositories/
|
|
|
|
deb http://http.kali.org/kali kali-rolling main contrib non-free non-free-firmware
|
|
|
|
|
|
|
|
# Additional line for source packages
|
|
|
|
# deb-src http://http.kali.org/kali kali-rolling main contrib non-free non-free-firmware
|
|
|
|
END
|
|
|
|
apt-get update
|
|
|
|
}
|
|
|
|
|
|
|
|
get_user_list() {
|
|
|
|
for user in $(cd /home && ls); do
|
|
|
|
if ! getent passwd "$user" >/dev/null; then
|
|
|
|
echo "WARNING: user '$user' is invalid but /home/$user exists" >&2
|
|
|
|
continue
|
|
|
|
fi
|
|
|
|
echo "$user"
|
|
|
|
done
|
|
|
|
echo "root"
|
|
|
|
}
|
|
|
|
|
|
|
|
configure_zsh() {
|
|
|
|
if grep -q 'nozsh' /proc/cmdline; then
|
|
|
|
echo "INFO: user opted out of zsh by default"
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
if [ ! -x /usr/bin/zsh ]; then
|
|
|
|
echo "INFO: /usr/bin/zsh is not available"
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
for user in $(get_user_list); do
|
|
|
|
echo "INFO: changing default shell of user '$user' to zsh"
|
|
|
|
chsh --shell /usr/bin/zsh $user
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
configure_usergroups() {
|
|
|
|
# Ensure those groups exist
|
|
|
|
addgroup --system kaboxer || true
|
|
|
|
addgroup --system wireshark || true
|
|
|
|
|
|
|
|
# adm - read access to log files
|
|
|
|
# dialout - for serial access
|
|
|
|
# kaboxer - for kaboxer
|
|
|
|
# vboxsf - shared folders for virtualbox guest
|
|
|
|
# wireshark - capture sessions in wireshark
|
|
|
|
kali_groups="adm dialout kaboxer vboxsf wireshark"
|
|
|
|
|
|
|
|
for user in $(get_user_list | grep -xv root); do
|
|
|
|
echo "INFO: adding user '$user' to groups '$kali_groups'"
|
|
|
|
for grp in $kali_groups; do
|
|
|
|
getent group $grp >/dev/null || continue
|
|
|
|
usermod -a -G $grp $user
|
|
|
|
done
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
Configure default terminal according to the kali desktop package installed
This is necessary in case more than one terminal is installed, and they
both have the same alternative priority.
For example, while installing all packages at once, sometimes apt will
resolve a dependency "x-terminal-emulator" to one of the many packages
that provide it, for example "zutty". And then it will also install the
terminal listed in the "kali-desktop-${desktop}" metapackage that is
selected, eg. "qterminal" for "kali-desktop-xfce".
Both zutty and qterminal have a alternative priority of 40 at the
moment, so if zutty gets unpacked first, it will have precendence and be
the default terminal.
It's a long-standing issue. By the past, We tried to make sure that the
default desktop terminal is installed first, by listing it early in the
dependencies of the "kali-desktop-{desktop}" metapackage, and it kind of
works with the debian-installer, but it was hard to make it work (we had
to do some changes in tasksel), and it's still brittle as it relies on
apt's dependency solving, which is apt's internal sauce and might change
(hint, apt will get a new solver soon, cf [1]).
As it turns out, it doesn't work for the live iso, somehow we still get
zutty taking precedence over qterminal, I didn't check why, it probably
has to do with how live-build constructs the apt command-line in order
to install everything.
In any case: I think our approach so far didn't work, so with this
commit, we take another approach: we set the default terminal from the
finish-install script, for both the installer iso and the live iso. That
should solve the issue for good.
[1]: https://blog.jak-linux.org/2024/05/14/solver3/
8 months ago
|
|
|
pkg_installed() {
|
|
|
|
dpkg -s "$1" 2>/dev/null | grep -q "ok installed"
|
|
|
|
}
|
|
|
|
|
|
|
|
configure_terminal() {
|
|
|
|
while read -r desktop terminal; do
|
|
|
|
pkg_installed kali-desktop-$desktop || continue
|
|
|
|
echo "INFO: setting x-terminal-emulator alternative to '$terminal'"
|
|
|
|
update-alternatives --verbose --set x-terminal-emulator /usr/bin/$terminal || true
|
|
|
|
break
|
Configure default terminal according to the kali desktop package installed
This is necessary in case more than one terminal is installed, and they
both have the same alternative priority.
For example, while installing all packages at once, sometimes apt will
resolve a dependency "x-terminal-emulator" to one of the many packages
that provide it, for example "zutty". And then it will also install the
terminal listed in the "kali-desktop-${desktop}" metapackage that is
selected, eg. "qterminal" for "kali-desktop-xfce".
Both zutty and qterminal have a alternative priority of 40 at the
moment, so if zutty gets unpacked first, it will have precendence and be
the default terminal.
It's a long-standing issue. By the past, We tried to make sure that the
default desktop terminal is installed first, by listing it early in the
dependencies of the "kali-desktop-{desktop}" metapackage, and it kind of
works with the debian-installer, but it was hard to make it work (we had
to do some changes in tasksel), and it's still brittle as it relies on
apt's dependency solving, which is apt's internal sauce and might change
(hint, apt will get a new solver soon, cf [1]).
As it turns out, it doesn't work for the live iso, somehow we still get
zutty taking precedence over qterminal, I didn't check why, it probably
has to do with how live-build constructs the apt command-line in order
to install everything.
In any case: I think our approach so far didn't work, so with this
commit, we take another approach: we set the default terminal from the
finish-install script, for both the installer iso and the live iso. That
should solve the issue for good.
[1]: https://blog.jak-linux.org/2024/05/14/solver3/
8 months ago
|
|
|
done <<END
|
|
|
|
e17 terminology
|
|
|
|
gnome gnome-terminal.wrapper
|
|
|
|
i3 kitty
|
|
|
|
kde konsole
|
|
|
|
lxde lxterminal
|
|
|
|
mate mate-terminal.wrapper
|
|
|
|
xfce qterminal
|
|
|
|
END
|
|
|
|
}
|
|
|
|
|
|
|
|
configure_sources_list
|
|
|
|
configure_zsh
|
|
|
|
configure_usergroups
|
Configure default terminal according to the kali desktop package installed
This is necessary in case more than one terminal is installed, and they
both have the same alternative priority.
For example, while installing all packages at once, sometimes apt will
resolve a dependency "x-terminal-emulator" to one of the many packages
that provide it, for example "zutty". And then it will also install the
terminal listed in the "kali-desktop-${desktop}" metapackage that is
selected, eg. "qterminal" for "kali-desktop-xfce".
Both zutty and qterminal have a alternative priority of 40 at the
moment, so if zutty gets unpacked first, it will have precendence and be
the default terminal.
It's a long-standing issue. By the past, We tried to make sure that the
default desktop terminal is installed first, by listing it early in the
dependencies of the "kali-desktop-{desktop}" metapackage, and it kind of
works with the debian-installer, but it was hard to make it work (we had
to do some changes in tasksel), and it's still brittle as it relies on
apt's dependency solving, which is apt's internal sauce and might change
(hint, apt will get a new solver soon, cf [1]).
As it turns out, it doesn't work for the live iso, somehow we still get
zutty taking precedence over qterminal, I didn't check why, it probably
has to do with how live-build constructs the apt command-line in order
to install everything.
In any case: I think our approach so far didn't work, so with this
commit, we take another approach: we set the default terminal from the
finish-install script, for both the installer iso and the live iso. That
should solve the issue for good.
[1]: https://blog.jak-linux.org/2024/05/14/solver3/
8 months ago
|
|
|
configure_terminal
|