Compare commits
41 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 7f33d2fff7 | |||
| b93199bb05 | |||
| 6b0942d2d5 | |||
| de2d84e13a | |||
| 8fca595000 | |||
| ceb863717f | |||
| f489876185 | |||
| 1e47004eef | |||
|
|
4afbfab976 | ||
| 866a866d5b | |||
| 2bdfe5c177 | |||
| 6b27103c18 | |||
| 00c2772152 | |||
| a8463e9152 | |||
| 0f293864b6 | |||
| 6c853b2bec | |||
| 8ce2c31380 | |||
|
|
f57e80c61a | ||
|
|
8140e49602 | ||
| bc1d029e64 | |||
| 4d51bd9dc4 | |||
| 5e41a8f9e7 | |||
| 2949a3df3f | |||
| c1030dd35b | |||
| 8d95934a7d | |||
| 0f4ae31462 | |||
| c04007eccd | |||
| 98575a442c | |||
| ddabb804d0 | |||
| caadd5d785 | |||
| f89f92533f | |||
| a1593ea635 | |||
| d06eaed9e3 | |||
| 00a12285d9 | |||
|
|
c26bf5aa06 | ||
|
|
fb8752e0ba | ||
| e2769c15d2 | |||
|
|
1e88351964 | ||
| 6322718144 | |||
| 60ef6a9893 | |||
| 722efa9726 |
@@ -1,8 +1,8 @@
|
|||||||
Package: cn.flamescion.bookworm-compatibility-mode
|
Package: cn.flamescion.bookworm-compatibility-mode
|
||||||
Version: 12.3.4
|
Version: 12.4.7
|
||||||
Section: misc
|
Section: misc
|
||||||
Priority: optional
|
Priority: optional
|
||||||
Depends: bubblewrap,flatpak,zenity
|
Depends: bubblewrap,flatpak,zenity,policykit-1,gcc
|
||||||
Maintainer: shenmo <shenmo@spark-app.store>
|
Maintainer: shenmo <shenmo@spark-app.store>
|
||||||
Architecture: arm64
|
Architecture: amd64
|
||||||
Description: bwrap wrapper for install and running debs inside a bookworm container
|
Description: bwrap wrapper for install and running debs inside a bookworm container
|
||||||
|
|||||||
@@ -1,8 +1,4 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
export PACKAGE_NAME="$DPKG_MAINTSCRIPT_PACKAGE"
|
export PACKAGE_NAME="$DPKG_MAINTSCRIPT_PACKAGE"
|
||||||
/opt/apps/$PACKAGE_NAME/files/bin/bookworm-init
|
/opt/apps/$PACKAGE_NAME/files/bin/bookworm-init
|
||||||
if [ "$PACKAGE_NAME" = "cn.flamescion.bookworm-compatibility-mode" ];then
|
|
||||||
ln -sf /opt/apps/cn.flamescion.bookworm-compatibility-mode/files/bin/bookworm-run /usr/bin/bookworm-run
|
|
||||||
ln -sf /opt/apps/cn.flamescion.bookworm-compatibility-mode/files/bin/ace-uninstall-helper /usr/bin/ace-uninstall-helper
|
|
||||||
ln -sf /opt/apps/cn.flamescion.bookworm-compatibility-mode/files/bin/ace-uninstall-helper-gui /usr/bin/ace-uninstall-helper-gui
|
|
||||||
fi
|
|
||||||
|
|||||||
@@ -1,11 +1,7 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
PACKAGE_NAME="$DPKG_MAINTSCRIPT_PACKAGE"
|
PACKAGE_NAME="$DPKG_MAINTSCRIPT_PACKAGE"
|
||||||
if [ "$1" = "remove" ] || [ "$1" = "purge" ];then
|
if [ "$1" = "remove" ] || [ "$1" = "purge" ];then
|
||||||
if [ "$PACKAGE_NAME" = "cn.flamescion.bookworm-compatibility-mode" ];then
|
|
||||||
unlink /usr/bin/bookworm-run
|
|
||||||
unlink /usr/bin/ace-uninstall-helper
|
|
||||||
unlink /usr/bin/ace-uninstall-helper-gui
|
|
||||||
fi
|
|
||||||
echo "清理卸载残留"
|
echo "清理卸载残留"
|
||||||
|
|
||||||
rm -rf /opt/apps/$PACKAGE_NAME
|
rm -rf /opt/apps/$PACKAGE_NAME
|
||||||
|
|||||||
17
src/etc/X11/Xsession.d/20ACE-Bookworm
Executable file
@@ -0,0 +1,17 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# Ensure base distro defaults xdg path are set if nothing filed up some
|
||||||
|
# defaults yet.
|
||||||
|
if [ -z "$XDG_DATA_DIRS" ]; then
|
||||||
|
export XDG_DATA_DIRS="/usr/local/share:/usr/share"
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Desktop files (used by desktop environments within both X11 and Wayland) are
|
||||||
|
# looked for in XDG_DATA_DIRS; make sure it includes the relevant directory for ACE
|
||||||
|
ACE_path="/opt/apps/cn.flamescion.bookworm-compatibility-mode/files/bookworm-env/usr/share/"
|
||||||
|
if [ -n "${XDG_DATA_DIRS##*${ACE_path}}" ] && [ -n "${XDG_DATA_DIRS##*${ACE_path}:*}" ]; then
|
||||||
|
export XDG_DATA_DIRS="${ACE_path}:${XDG_DATA_DIRS}"
|
||||||
|
fi
|
||||||
|
|
||||||
16
src/etc/profile.d/ACE-Bookworm.sh
Executable file
@@ -0,0 +1,16 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# Ensure base distro defaults xdg path are set if nothing filed up some
|
||||||
|
# defaults yet.
|
||||||
|
if [ -z "$XDG_DATA_DIRS" ]; then
|
||||||
|
export XDG_DATA_DIRS="/usr/local/share:/usr/share"
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Desktop files (used by desktop environments within both X11 and Wayland) are
|
||||||
|
# looked for in XDG_DATA_DIRS; make sure it includes the relevant directory for ACE
|
||||||
|
ACE_path="/opt/apps/cn.flamescion.bookworm-compatibility-mode/files/bookworm-env/usr/share/"
|
||||||
|
if [ -n "${XDG_DATA_DIRS##*${ACE_path}}" ] && [ -n "${XDG_DATA_DIRS##*${ACE_path}:*}" ]; then
|
||||||
|
export XDG_DATA_DIRS="${ACE_path}:${XDG_DATA_DIRS}"
|
||||||
|
fi
|
||||||
|
|
||||||
@@ -1,4 +0,0 @@
|
|||||||
export XDG_DATA_DIRS
|
|
||||||
APP_ROOT="/opt/apps/cn.flamescion.bookworm-compatibility-mode/files/bookworm-env/usr/share"
|
|
||||||
XDG_DATA_DIRS="${APP_ROOT}:/usr/local/share:/usr/share"
|
|
||||||
export APP_ROOT
|
|
||||||
@@ -42,7 +42,7 @@ if [ -f "$DPKG_INFO_PATH/$PKGNAME_GUESS.list" ]; then
|
|||||||
elif ls "$DPKG_INFO_PATH/${PKGNAME_GUESS}:*.list" 1> /dev/null 2>&1; then
|
elif ls "$DPKG_INFO_PATH/${PKGNAME_GUESS}:*.list" 1> /dev/null 2>&1; then
|
||||||
DPKG_LIST_FILE=$(ls "$DPKG_INFO_PATH/${PKGNAME_GUESS}:*.list" | head -n 1)
|
DPKG_LIST_FILE=$(ls "$DPKG_INFO_PATH/${PKGNAME_GUESS}:*.list" | head -n 1)
|
||||||
else
|
else
|
||||||
echo "No dpkg list file found for $PKGNAME_GUESS.desktop,try to scan to search for the package"
|
echo "Warn:No dpkg list file found for $PKGNAME_GUESS.desktop,try to scan to search for the package"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# 验证文件并执行操作
|
# 验证文件并执行操作
|
||||||
@@ -53,20 +53,21 @@ if [ -f "$DPKG_LIST_FILE" ]; then
|
|||||||
ret=$?
|
ret=$?
|
||||||
if [ "$ret" = "0" ];then
|
if [ "$ret" = "0" ];then
|
||||||
echo "Operation succeeded."
|
echo "Operation succeeded."
|
||||||
|
exit
|
||||||
else
|
else
|
||||||
echo "Operation failed."
|
echo "Operation failed."
|
||||||
exit $ret
|
exit $ret
|
||||||
fi
|
fi
|
||||||
|
|
||||||
else
|
else
|
||||||
echo "Error: Path not found in the dpkg list file."
|
echo "Warn: Path not found in the dpkg list file,try to scan to search for the package"
|
||||||
exit 1
|
|
||||||
fi
|
fi
|
||||||
else
|
fi
|
||||||
# 遍历所有list文件
|
# 遍历所有list文件 As fallback
|
||||||
for file in "$DPKG_INFO_PATH"/*.list; do
|
for file in "$DPKG_INFO_PATH"/*.list; do
|
||||||
if grep -q "$IN_CONTAINER_PATH" "$file"; then
|
if grep -q "$IN_CONTAINER_PATH" "$file"; then
|
||||||
PKGNAME_GUESS=$(basename "$file" .list | cut -d':' -f1)
|
PKGNAME_GUESS=$(basename "$file" .list | cut -d':' -f1)
|
||||||
|
echo "Get pkgname $PKGNAME_GUESS, uninstalling..."
|
||||||
bookworm-run apt autopurge $PKGNAME_GUESS -y
|
bookworm-run apt autopurge $PKGNAME_GUESS -y
|
||||||
ret=$?
|
ret=$?
|
||||||
if [ "$ret" = "0" ];then
|
if [ "$ret" = "0" ];then
|
||||||
@@ -81,5 +82,5 @@ else
|
|||||||
done
|
done
|
||||||
echo "Error: No matching package found."
|
echo "Error: No matching package found."
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
if [ "$UID" != "0" ];then
|
if [ "$UID" != "0" ];then
|
||||||
pkexec env DISPLAY=$DISPLAY XAUTHORITY=$XAUTHORITY $0
|
pkexec $0
|
||||||
exit
|
exit
|
||||||
fi
|
fi
|
||||||
# 定义应用列表文件路径
|
# 定义应用列表文件路径
|
||||||
@@ -23,7 +23,13 @@ for file in "$ACE_dir"/usr/share/applications/*.desktop; do
|
|||||||
else
|
else
|
||||||
name=$name_i18n
|
name=$name_i18n
|
||||||
fi
|
fi
|
||||||
comment=$(grep -m 1 '^Comment=' "$file" | cut -d '=' -f 2)
|
comment_orig=$(grep -m 1 '^Comment=' "$file" | cut -d '=' -f 2)
|
||||||
|
comment_i18n=$(grep -m 1 "^Comment\[${LANGUAGE}\]\=" "$file" | cut -d '=' -f 2)
|
||||||
|
if [ -z "$comment_i18n" ] ;then
|
||||||
|
comment=$comment_orig
|
||||||
|
else
|
||||||
|
comment=$comment_i18n
|
||||||
|
fi
|
||||||
# 如果没有简介,则显示"N/A"
|
# 如果没有简介,则显示"N/A"
|
||||||
[[ -z "$comment" ]] && comment="N/A"
|
[[ -z "$comment" ]] && comment="N/A"
|
||||||
# 添加到应用列表数组
|
# 添加到应用列表数组
|
||||||
|
|||||||
@@ -36,9 +36,10 @@ bwrap --dev-bind $chrootEnvPath/ / \
|
|||||||
--setenv LC_ALL "$LC_ALL" \
|
--setenv LC_ALL "$LC_ALL" \
|
||||||
--setenv PULSE_SERVER /run/user/$uid/pulse/native \
|
--setenv PULSE_SERVER /run/user/$uid/pulse/native \
|
||||||
--setenv PATH /flamescion-container-tools/bin-override:$PATH \
|
--setenv PATH /flamescion-container-tools/bin-override:$PATH \
|
||||||
|
--setenv IS_ACE_ENV "1" \
|
||||||
--dev-bind $chrootEnvPath/ / \
|
--dev-bind $chrootEnvPath/ / \
|
||||||
--dev-bind /media /media \
|
--dev-bind-try /media /media \
|
||||||
--dev-bind /tmp /tmp \
|
--dev-bind-try /tmp /tmp \
|
||||||
--dev /dev \
|
--dev /dev \
|
||||||
--dev-bind-try /dev/dri /dev/dri \
|
--dev-bind-try /dev/dri /dev/dri \
|
||||||
--proc /proc \
|
--proc /proc \
|
||||||
@@ -49,10 +50,10 @@ bwrap --dev-bind $chrootEnvPath/ / \
|
|||||||
--bind-try /usr/share/themes /usr/local/share/themes \
|
--bind-try /usr/share/themes /usr/local/share/themes \
|
||||||
--bind-try /usr/share/icons /usr/local/share/icons \
|
--bind-try /usr/share/icons /usr/local/share/icons \
|
||||||
--bind-try /usr/share/fonts /usr/local/share/fonts \
|
--bind-try /usr/share/fonts /usr/local/share/fonts \
|
||||||
--hostname bookworm-compatibility-mode \
|
--hostname Amber-CE-Bookworm \
|
||||||
--unshare-uts \
|
--unshare-uts \
|
||||||
--dev-bind /etc/resolv.conf /etc/resolv.conf \
|
--dev-bind-try /etc/resolv.conf /etc/resolv.conf \
|
||||||
--dev-bind /home /home \
|
--dev-bind-try /home /home \
|
||||||
$@
|
$@
|
||||||
|
|
||||||
|
|
||||||
@@ -177,14 +178,138 @@ printf "%s:%s" "${container_user_name}" "${temporary_password}" | chpasswd -e
|
|||||||
printf "%s:" "root" | chpasswd -e
|
printf "%s:" "root" | chpasswd -e
|
||||||
printf "%s:" "${container_user_name}" | chpasswd -e
|
printf "%s:" "${container_user_name}" | chpasswd -e
|
||||||
|
|
||||||
|
mkdir -p /usr/share/fonts
|
||||||
|
mkdir -p /usr/share/icons
|
||||||
|
mkdir -p /usr/share/themes
|
||||||
|
|
||||||
## init host-spawn
|
## init host-spawn
|
||||||
unlink /flamescion-container-tools/bin-override/host-spawn
|
unlink /flamescion-container-tools/bin-override/host-spawn
|
||||||
ln -sfv /flamescion-container-tools/bin-override/host-spawn-`arch` /flamescion-container-tools/bin-override/host-spawn
|
ln -sfv /flamescion-container-tools/bin-override/host-spawn-$(uname -m) /flamescion-container-tools/bin-override/host-spawn
|
||||||
|
|
||||||
## install host-integration
|
## install host-integration
|
||||||
|
|
||||||
apt install --reinstall /flamescion-container-tools/ace-host-integration.deb
|
apt install --reinstall /flamescion-container-tools/ace-host-integration.deb
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### Do NVIDIA Integration
|
||||||
|
|
||||||
|
echo "ACE: NVIDIA Integration"
|
||||||
|
|
||||||
|
ensureTargetDir() {
|
||||||
|
targetFile=$1
|
||||||
|
t=$(dirname "$targetFile")
|
||||||
|
mkdir -p "$t"
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
lib32_dir="/usr/lib/"
|
||||||
|
lib64_dir="/usr/lib/"
|
||||||
|
if [ -e "/usr/lib/x86_64-linux-gnu" ]; then
|
||||||
|
lib64_dir="/usr/lib/x86_64-linux-gnu/"
|
||||||
|
elif [ -e "/usr/lib64" ]; then
|
||||||
|
lib64_dir="/usr/lib64/"
|
||||||
|
fi
|
||||||
|
if [ -e "/usr/lib/i386-linux-gnu" ]; then
|
||||||
|
lib32_dir="/usr/lib/i386-linux-gnu/"
|
||||||
|
elif [ -e "/usr/lib32" ]; then
|
||||||
|
lib32_dir="/usr/lib32/"
|
||||||
|
fi
|
||||||
|
|
||||||
|
# First we find all non-lib files we need, this includes
|
||||||
|
# - binaries
|
||||||
|
# - confs
|
||||||
|
# - egl files
|
||||||
|
# - icd files
|
||||||
|
# Excluding here the libs, we will threat them later specifically
|
||||||
|
NVIDIA_FILES="$(find /host/etc/ /host/usr/ \
|
||||||
|
-path "/host/usr/lib/i386-linux-gnu/*" -prune -o \
|
||||||
|
-path "/host/usr/lib/x86_64-linux-gnu/*" -prune -o \
|
||||||
|
-path "/host/usr/lib32/*" -prune -o \
|
||||||
|
-path "/host/usr/lib64/*" -prune -o \
|
||||||
|
-iname "*nvidia*" -not -type d -print 2> /dev/null || :)"
|
||||||
|
for nvidia_file in ${NVIDIA_FILES}; do
|
||||||
|
dest_file="$(printf "%s" "${nvidia_file}" | sed 's|/host||g')"
|
||||||
|
ensureTargetDir ${dest_file}
|
||||||
|
cp -r "${nvidia_file}" "${dest_file}"
|
||||||
|
done
|
||||||
|
|
||||||
|
# Then we find all directories with nvidia in the name and just mount them
|
||||||
|
NVIDIA_DIRS="$(find /host/etc /host/usr -iname "*nvidia*" -type d 2> /dev/null || :)"
|
||||||
|
for nvidia_dir in ${NVIDIA_DIRS}; do
|
||||||
|
# /usr/lib64 is common in Arch or RPM based distros, while /usr/lib/x86_64-linux-gnu is
|
||||||
|
# common on Debian derivatives, so we need to adapt between the two nomenclatures.
|
||||||
|
if printf "%s" "${nvidia_dir}" | grep -Eq "lib32|lib64|x86_64-linux-gnu|i386-linux-gnu"; then
|
||||||
|
|
||||||
|
# Remove origin so we plug our own
|
||||||
|
dest_dir="$(printf "%s" "${nvidia_dir}" |
|
||||||
|
sed "s|/host/usr/lib/x86_64-linux-gnu/|${lib64_dir}|g" |
|
||||||
|
sed "s|/host/usr/lib/i386-linux-gnu/|${lib32_dir}|g" |
|
||||||
|
sed "s|/host/usr/lib64/|${lib64_dir}|g" |
|
||||||
|
sed "s|/host/usr/lib32/|${lib32_dir}|g")"
|
||||||
|
else
|
||||||
|
dest_dir="$(printf "%s" "${nvidia_dir}" | sed 's|/host||g')"
|
||||||
|
fi
|
||||||
|
ensureTargetDir ${dest_file}
|
||||||
|
cp -r "${nvidia_dir}" "${dest_file}"
|
||||||
|
done
|
||||||
|
|
||||||
|
# Then we find all the ".so" libraries, there are searched separately
|
||||||
|
# because we need to extract the relative path to mount them in the
|
||||||
|
# correct path based on the guest's setup
|
||||||
|
#
|
||||||
|
# /usr/lib64 is common in Arch or RPM based distros, while /usr/lib/x86_64-linux-gnu is
|
||||||
|
# common on Debian derivatives, so we need to adapt between the two nomenclatures.
|
||||||
|
NVIDIA_LIBS="$(find \
|
||||||
|
/host/usr/lib/i386-linux-gnu/ \
|
||||||
|
/host/usr/lib/x86_64-linux-gnu/ \
|
||||||
|
/host/usr/lib32/ \
|
||||||
|
/host/usr/lib64/ \
|
||||||
|
-iname "*nvidia*.so*" \
|
||||||
|
-o -iname "libcuda*.so*" \
|
||||||
|
-o -iname "libnvcuvid*.so*" \
|
||||||
|
-o -iname "libnvoptix*.so*" 2> /dev/null || :)"
|
||||||
|
for nvidia_lib in ${NVIDIA_LIBS}; do
|
||||||
|
dest_file="$(printf "%s" "${nvidia_lib}" |
|
||||||
|
sed "s|/host/usr/lib/x86_64-linux-gnu/|${lib64_dir}|g" |
|
||||||
|
sed "s|/host/usr/lib/i386-linux-gnu/|${lib32_dir}|g" |
|
||||||
|
sed "s|/host/usr/lib64/|${lib64_dir}|g" |
|
||||||
|
sed "s|/host/usr/lib32/|${lib32_dir}|g")"
|
||||||
|
|
||||||
|
# If file exists, just continue
|
||||||
|
# this may happen for directories like /usr/lib/nvidia/xorg/foo.so
|
||||||
|
# where the directory is already bind mounted (ro) and we don't need
|
||||||
|
# to mount further files in it.
|
||||||
|
if [ -e "${dest_file}" ]; then
|
||||||
|
continue
|
||||||
|
fi
|
||||||
|
|
||||||
|
type="file"
|
||||||
|
if [ -L "${nvidia_lib}" ]; then
|
||||||
|
type="link"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ "${type}" = "link" ]; then
|
||||||
|
mkdir -p "$(dirname "${dest_file}")"
|
||||||
|
cp -d "${nvidia_lib}" "${dest_file}"
|
||||||
|
continue
|
||||||
|
fi
|
||||||
|
ensureTargetDir ${dest_file}
|
||||||
|
cp -r "${nvidia_lib}" "${dest_file}"
|
||||||
|
|
||||||
|
done
|
||||||
|
|
||||||
|
# Refresh ldconfig cache, also detect if there are empty files remaining
|
||||||
|
# and clean them.
|
||||||
|
# This could happen when upgrading drivers and changing versions.
|
||||||
|
empty_libs="$(ldconfig 2>&1 | grep -Eo "File.*is empty" | cut -d' ' -f2)"
|
||||||
|
if [ -n "${empty_libs}" ]; then
|
||||||
|
# shellcheck disable=SC2086
|
||||||
|
find ${empty_libs} -delete 2> /dev/null || :
|
||||||
|
find /usr/ /etc/ -empty -iname "*nvidia*" -delete 2> /dev/null || :
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
EOFFFFFF
|
EOFFFFFF
|
||||||
|
|
||||||
#####init
|
#####init
|
||||||
@@ -208,9 +333,10 @@ sudo -u $(who | awk '{print $1}' | head -n 1) bwrap --dev-bind $chrootEnvPath/ /
|
|||||||
--setenv LC_ALL "$LC_ALL" \
|
--setenv LC_ALL "$LC_ALL" \
|
||||||
--setenv PULSE_SERVER /run/user/$uid/pulse/native \
|
--setenv PULSE_SERVER /run/user/$uid/pulse/native \
|
||||||
--setenv PATH /flamescion-container-tools/bin-override:$PATH \
|
--setenv PATH /flamescion-container-tools/bin-override:$PATH \
|
||||||
|
--setenv IS_ACE_ENV "1" \
|
||||||
--dev-bind $chrootEnvPath/ / \
|
--dev-bind $chrootEnvPath/ / \
|
||||||
--dev-bind /media /media \
|
--dev-bind-try /media /media \
|
||||||
--dev-bind /tmp /tmp \
|
--dev-bind-try /tmp /tmp \
|
||||||
--dev /dev \
|
--dev /dev \
|
||||||
--dev-bind-try /dev/dri /dev/dri \
|
--dev-bind-try /dev/dri /dev/dri \
|
||||||
--proc /proc \
|
--proc /proc \
|
||||||
@@ -218,13 +344,13 @@ sudo -u $(who | awk '{print $1}' | head -n 1) bwrap --dev-bind $chrootEnvPath/ /
|
|||||||
--dev-bind /run /run \
|
--dev-bind /run /run \
|
||||||
--dev-bind-try /run/user/$uid/pulse /run/user/$uid/pulse \
|
--dev-bind-try /run/user/$uid/pulse /run/user/$uid/pulse \
|
||||||
--dev-bind / /host \
|
--dev-bind / /host \
|
||||||
--ro-bind /usr/share/themes /usr/local/share/themes \
|
--bind-try /usr/share/themes /usr/local/share/themes \
|
||||||
--ro-bind /usr/share/icons /usr/local/share/icons \
|
--bind-try /usr/share/icons /usr/local/share/icons \
|
||||||
--ro-bind /usr/share/fonts /usr/local/share/fonts \
|
--bind-try /usr/share/fonts /usr/local/share/fonts \
|
||||||
--hostname bookworm-compatibility-mode \
|
--hostname Amber-CE-Bookworm \
|
||||||
--unshare-uts \
|
--unshare-uts \
|
||||||
--dev-bind /etc/resolv.conf /etc/resolv.conf \
|
--dev-bind-try /etc/resolv.conf /etc/resolv.conf \
|
||||||
--dev-bind /home /home \
|
--dev-bind-try /home /home \
|
||||||
locale-gen
|
locale-gen
|
||||||
|
|
||||||
chown -R root $chrootEnvPath
|
chown -R root $chrootEnvPath
|
||||||
|
|||||||
@@ -54,24 +54,25 @@ bwrap --dev-bind / / \
|
|||||||
--setenv LC_ALL "$LC_ALL" \
|
--setenv LC_ALL "$LC_ALL" \
|
||||||
--setenv PULSE_SERVER /run/user/$uid/pulse/native \
|
--setenv PULSE_SERVER /run/user/$uid/pulse/native \
|
||||||
--setenv PATH /flamescion-container-tools/bin-override:$PATH \
|
--setenv PATH /flamescion-container-tools/bin-override:$PATH \
|
||||||
|
--setenv IS_ACE_ENV "1" \
|
||||||
--dev-bind $chrootEnvPath/ / \
|
--dev-bind $chrootEnvPath/ / \
|
||||||
--dev-bind /media /media \
|
--dev-bind-try /media /media \
|
||||||
--dev-bind /tmp /tmp \
|
--dev-bind-try /tmp /tmp \
|
||||||
--dev /dev \
|
--dev /dev \
|
||||||
--dev-bind /dev/dri /dev/dri \
|
--dev-bind-try /dev/dri /dev/dri \
|
||||||
--proc /proc \
|
--proc /proc \
|
||||||
--dev-bind /sys /sys \
|
--dev-bind /sys /sys \
|
||||||
--dev-bind /run /run \
|
--dev-bind /run /run \
|
||||||
--dev-bind-try /run/user/$uid/pulse /run/user/$uid/pulse \
|
--dev-bind-try /run/user/$uid/pulse /run/user/$uid/pulse \
|
||||||
--dev-bind / /host \
|
--dev-bind / /host \
|
||||||
--ro-bind /usr/share/themes /usr/local/share/themes \
|
--ro-bind-try /usr/share/themes /usr/local/share/themes \
|
||||||
--ro-bind /usr/share/icons /usr/share/icons \
|
--ro-bind-try /usr/share/icons /usr/local/share/icons \
|
||||||
--ro-bind /usr/share/fonts /usr/local/share/fonts \
|
--ro-bind-try /usr/share/fonts /usr/local/share/fonts \
|
||||||
--hostname bookworm-compatibility-mode \
|
--hostname Amber-CE-Bookworm \
|
||||||
--unshare-uts \
|
--unshare-uts \
|
||||||
--dev-bind /etc/resolv.conf /etc/resolv.conf \
|
--dev-bind-try /etc/resolv.conf /etc/resolv.conf \
|
||||||
--cap-add CAP_SYS_ADMIN \
|
--cap-add CAP_SYS_ADMIN \
|
||||||
--dev-bind /home /home \
|
--dev-bind-try /home /home \
|
||||||
bash -c "${container_command}"
|
bash -c "${container_command}"
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -53,24 +53,25 @@ bwrap --dev-bind / / \
|
|||||||
--setenv LC_ALL "$LC_ALL" \
|
--setenv LC_ALL "$LC_ALL" \
|
||||||
--setenv PULSE_SERVER /run/user/$uid/pulse/native \
|
--setenv PULSE_SERVER /run/user/$uid/pulse/native \
|
||||||
--setenv PATH /flamescion-container-tools/bin-override:$PATH \
|
--setenv PATH /flamescion-container-tools/bin-override:$PATH \
|
||||||
|
--setenv IS_ACE_ENV "1" \
|
||||||
--dev-bind $chrootEnvPath/ / \
|
--dev-bind $chrootEnvPath/ / \
|
||||||
--dev-bind /media /media \
|
--dev-bind-try /media /media \
|
||||||
--dev-bind /tmp /tmp \
|
--dev-bind-try /tmp /tmp \
|
||||||
--dev /dev \
|
--dev /dev \
|
||||||
--dev-bind /dev/dri /dev/dri \
|
--dev-bind-try /dev/dri /dev/dri \
|
||||||
--proc /proc \
|
--proc /proc \
|
||||||
--dev-bind /sys /sys \
|
--dev-bind /sys /sys \
|
||||||
--dev-bind /run /run \
|
--dev-bind /run /run \
|
||||||
--dev-bind-try /run/user/$uid/pulse /run/user/$uid/pulse \
|
--dev-bind-try /run/user/$uid/pulse /run/user/$uid/pulse \
|
||||||
--dev-bind / /host \
|
--dev-bind / /host \
|
||||||
--ro-bind /usr/share/themes /usr/local/share/themes \
|
--bind-try /usr/share/themes /usr/local/share/themes \
|
||||||
--ro-bind /usr/share/icons /usr/local/share/icons \
|
--bind-try /usr/share/icons /usr/local/share/icons \
|
||||||
--ro-bind /usr/share/fonts /usr/local/share/fonts \
|
--bind-try /usr/share/fonts /usr/local/share/fonts \
|
||||||
--hostname bookworm-compatibility-mode \
|
--hostname Amber-CE-Bookworm \
|
||||||
--unshare-uts \
|
--unshare-uts \
|
||||||
--dev-bind /etc/resolv.conf /etc/resolv.conf \
|
--dev-bind-try /etc/resolv.conf /etc/resolv.conf \
|
||||||
--cap-add CAP_SYS_ADMIN \
|
--cap-add CAP_SYS_ADMIN \
|
||||||
--dev-bind /home /home \
|
--dev-bind-try /home /home \
|
||||||
bash -c "${container_command}"
|
bash -c "${container_command}"
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -23,7 +23,7 @@ exit 1
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
cd "`dirname $0`"
|
cd "`dirname $0`"
|
||||||
sudo debootstrap --include=apt-utils,bc,curl,dialog,diffutils,findutils,gnupg2,less,libnss-myhostname,libvte-common,lsof,ncurses-base,passwd,pinentry-curses,procps,sudo,time,util-linux,wget,libegl1-mesa,libgl1-mesa-glx,libvulkan1,mesa-vulkan-drivers,locales,libglib2.0-bin --arch=${ARCH} bookworm ./bookworm-env https://mirrors.ustc.edu.cn/debian/
|
sudo debootstrap --include=apt-utils,bash-completion,bc,curl,dialog,diffutils,findutils,gnupg2,less,libnss-myhostname,libvte-common,lsof,ncurses-base,passwd,pinentry-curses,procps,sudo,time,util-linux,wget,libegl1-mesa,libgl1-mesa-glx,libvulkan1,mesa-vulkan-drivers,locales,libglib2.0-bin --arch=${ARCH} bookworm ./bookworm-env https://mirrors.ustc.edu.cn/debian/
|
||||||
|
|
||||||
|
|
||||||
sudo rm -rf bookworm-env/var/cache/apt/archives/*.deb
|
sudo rm -rf bookworm-env/var/cache/apt/archives/*.deb
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
Package: ace-host-integration
|
Package: ace-host-integration
|
||||||
Version: 1.2
|
Version: 1.2.1
|
||||||
Section: misc
|
Section: misc
|
||||||
Priority: optional
|
Priority: optional
|
||||||
Depends: bash
|
Depends: bash
|
||||||
|
|||||||
@@ -1,28 +1,6 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
ACE_dir="/opt/apps/cn.flamescion.bookworm-compatibility-mode/files/bookworm-env"
|
ACE_dir="/opt/apps/cn.flamescion.bookworm-compatibility-mode/files/bookworm-env"
|
||||||
function linkDir() {
|
|
||||||
ensureTargetDir() {
|
|
||||||
targetFile=$1
|
|
||||||
t=$(dirname "$targetFile")
|
|
||||||
mkdir -p "$t"
|
|
||||||
}
|
|
||||||
|
|
||||||
source=$1
|
|
||||||
target=$2
|
|
||||||
sourceDir=$(dirname "$source")
|
|
||||||
targetDir=$(dirname "$target")
|
|
||||||
find "$source" -type f | while read sourceFile; do
|
|
||||||
targetFile="$targetDir/${sourceFile#$sourceDir/}"
|
|
||||||
if [ -L "$targetFile" ] && [ "$(readlink "$targetFile")" = "$sourceFile" ]; then
|
|
||||||
continue
|
|
||||||
else
|
|
||||||
rm -f "$targetFile"
|
|
||||||
fi
|
|
||||||
|
|
||||||
ensureTargetDir "$targetFile"
|
|
||||||
ln -s "$sourceFile" "$targetFile"
|
|
||||||
done
|
|
||||||
}
|
|
||||||
|
|
||||||
function do_integrate(){
|
function do_integrate(){
|
||||||
local file=$1
|
local file=$1
|
||||||
@@ -44,6 +22,7 @@ local file=$1
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
fi
|
fi
|
||||||
|
chmod +x $file
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -51,9 +30,7 @@ local file=$1
|
|||||||
for app_dir in $(ls /opt/apps/); do
|
for app_dir in $(ls /opt/apps/); do
|
||||||
for file in /opt/apps/$app_dir/entries/applications/*.desktop;do
|
for file in /opt/apps/$app_dir/entries/applications/*.desktop;do
|
||||||
do_integrate $file
|
do_integrate $file
|
||||||
DESKTOP_FILE_NAME=$(basename $file)
|
|
||||||
ln -sf "../../../opt/apps/$app_dir/entries/applications/$DESKTOP_FILE_NAME" "/usr/share/applications/"
|
|
||||||
linkDir "../../../opt/apps/$app_dir/entries/icons" "/usr/share/icons/"
|
|
||||||
|
|
||||||
done
|
done
|
||||||
done
|
done
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
if [ "$UID" = "0" ];then
|
if [ "$UID" = "0" ];then
|
||||||
pkexec $@
|
$@
|
||||||
else
|
else
|
||||||
host-spawn pkexec bookworm-run $@
|
host-spawn pkexec bookworm-run $@
|
||||||
fi
|
fi
|
||||||
|
|||||||
1
src/usr/bin/ace-uninstall-helper
Symbolic link
@@ -0,0 +1 @@
|
|||||||
|
../../opt/apps/cn.flamescion.bookworm-compatibility-mode/files/bin/ace-uninstall-helper
|
||||||
1
src/usr/bin/ace-uninstall-helper-gui
Symbolic link
@@ -0,0 +1 @@
|
|||||||
|
../../opt/apps/cn.flamescion.bookworm-compatibility-mode/files/bin/ace-uninstall-helper-gui
|
||||||
1
src/usr/bin/bookworm-init
Symbolic link
@@ -0,0 +1 @@
|
|||||||
|
../../opt/apps/cn.flamescion.bookworm-compatibility-mode/files/bin/bookworm-init
|
||||||
1
src/usr/bin/bookworm-run
Symbolic link
@@ -0,0 +1 @@
|
|||||||
|
../../opt/apps/cn.flamescion.bookworm-compatibility-mode/files/bin/bookworm-run
|
||||||
17
src/usr/lib/systemd/user-environment-generators/60-ACE-Bookworm
Executable file
@@ -0,0 +1,17 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# Ensure base distro defaults xdg path are set if nothing filed up some
|
||||||
|
# defaults yet.
|
||||||
|
if [ -z "$XDG_DATA_DIRS" ]; then
|
||||||
|
export XDG_DATA_DIRS="/usr/local/share:/usr/share"
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Desktop files (used by desktop environments within both X11 and Wayland) are
|
||||||
|
# looked for in XDG_DATA_DIRS; make sure it includes the relevant directory for ACE
|
||||||
|
ACE_path="/opt/apps/cn.flamescion.bookworm-compatibility-mode/files/bookworm-env/usr/share/"
|
||||||
|
if [ -n "${XDG_DATA_DIRS##*${ACE_path}}" ] && [ -n "${XDG_DATA_DIRS##*${ACE_path}:*}" ]; then
|
||||||
|
export XDG_DATA_DIRS="${ACE_path}:${XDG_DATA_DIRS}"
|
||||||
|
fi
|
||||||
|
|
||||||
@@ -4,8 +4,8 @@ Name=ACE Software Uninstaller
|
|||||||
Name[zh_CN]=ACE软件卸载器
|
Name[zh_CN]=ACE软件卸载器
|
||||||
Comment=用于卸载ACE容器的应用
|
Comment=用于卸载ACE容器的应用
|
||||||
Type=Application
|
Type=Application
|
||||||
Exec=/home/shenmo-ikun/Desktop/bookworm-compatibility-mode/src/opt/apps/cn.flamescion.bookworm-compatibility-mode/files/bin/ace-uninstall-helper-gui
|
Exec=/opt/apps/cn.flamescion.bookworm-compatibility-mode/files/bin/ace-uninstall-helper-gui
|
||||||
Icon=ACE-uninstaller
|
Icon=ACE-uninstaller
|
||||||
Categories=AudioVideo
|
Categories=System
|
||||||
|
|
||||||
# Generated from the DesktopGenerater component of the z-Tools toolkit
|
# Generated from the DesktopGenerater component of the z-Tools toolkit
|
||||||
@@ -8,3 +8,4 @@ Keywords=BCM,ACE,ace,mode
|
|||||||
StartupNotify=true
|
StartupNotify=true
|
||||||
Type=Application
|
Type=Application
|
||||||
Terminal=true
|
Terminal=true
|
||||||
|
Categories=System
|
||||||
|
Before Width: | Height: | Size: 196 KiB After Width: | Height: | Size: 196 KiB |
|
Before Width: | Height: | Size: 134 KiB After Width: | Height: | Size: 134 KiB |
|
Before Width: | Height: | Size: 118 KiB After Width: | Height: | Size: 118 KiB |
|
Before Width: | Height: | Size: 118 KiB After Width: | Height: | Size: 118 KiB |
|
Before Width: | Height: | Size: 134 KiB After Width: | Height: | Size: 134 KiB |
@@ -0,0 +1,19 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE policyconfig PUBLIC "-//freedesktop//DTD PolicyKit Policy Configuration 1.0//EN"
|
||||||
|
"http://www.freedesktop.org/standards/PolicyKit/1/policyconfig.dtd">
|
||||||
|
<policyconfig>
|
||||||
|
<vendor>cn.flamescion.ace-uninstaller</vendor>
|
||||||
|
<icon_name>x-package-repository</icon_name>
|
||||||
|
<action id="cn.flamescion.ace-uninstaller">
|
||||||
|
<description>运行cn.flamescion.ace-uninstaller需要权限</description>
|
||||||
|
<message>要使用cn.flamescion.ace-uninstaller需要权限</message>
|
||||||
|
<defaults>
|
||||||
|
<allow_any>yes</allow_any>
|
||||||
|
<allow_inactive>yes</allow_inactive>
|
||||||
|
<allow_active>yes</allow_active>
|
||||||
|
</defaults>
|
||||||
|
<annotate key="org.freedesktop.policykit.exec.path">/opt/apps/cn.flamescion.bookworm-compatibility-mode/files/bin/ace-uninstall-helper-gui</annotate>
|
||||||
|
<annotate key="org.freedesktop.policykit.exec.allow_gui">true</annotate>
|
||||||
|
</action>
|
||||||
|
</policyconfig>
|
||||||
|
|
||||||
@@ -8,3 +8,5 @@ rm -rf /var/cache/apt/
|
|||||||
rm -rf /var/lib/aptss/lists/*
|
rm -rf /var/lib/aptss/lists/*
|
||||||
rm -rf /usr/share/doc
|
rm -rf /usr/share/doc
|
||||||
|
|
||||||
|
#apt install ace-integration in init
|
||||||
|
#tools只保留gio hostspawn和xdg-open
|
||||||