Skip to content

Commit f4a461b

Browse files
committedMar 13, 2025
Update os-release from official mint iso
-#13 -https://imgur.com/a/Y7QyXfq
1 parent 2b36193 commit f4a461b

File tree

7 files changed

+37
-1
lines changed

7 files changed

+37
-1
lines changed
 

‎Makefile

+6-1
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,16 @@ rootfs: base.tar
4242
sudo cp wsl.conf rootfs/etc/wsl.conf
4343
sudo cp bash_profile rootfs/root/.bash_profile
4444
sudo cp wslg-init.service rootfs/usr/lib/systemd/system/wslg-init.service
45+
sudo cp info rootfs/etc/linuxmint/info
46+
sudo cp issue rootfs/etc/issue
47+
sudo cp issue.net rootfs/etc/issue.net
48+
sudo cp lsb-release rootfs/etc/lsb-release
49+
sudo cp os-release rootfs/usr/lib/os-release
4550
sudo chmod +x rootfs
4651

4752
base.tar:
4853
@echo -e '\e[1;31mExporting base.tar using docker...\e[m'
49-
docker run --net=host --name mintwsl linuxmintd/mint22.1-amd64 /bin/bash -c "echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections; apt-get install apt-utils -y -q; apt-get update; apt-get full-upgrade -y -q; apt-get install -y -q apt-transport-https apt-utils aria2 bash-completion build-essential ca-certificates curl dialog figlet htop iputils-ping lolcat software-properties-common tree; apt-get autoremove -y; apt-get clean;"
54+
docker run --net=host --name mintwsl linuxmintd/mint22.1-amd64 /bin/bash -c "mkdir -p /etc/linuxmint; echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections; apt-get install apt-utils -y -q; apt-get update; apt-get full-upgrade -y -q; apt-get install -y -q apt-transport-https apt-utils aria2 bash-completion build-essential ca-certificates curl dialog figlet htop iputils-ping lolcat software-properties-common tree; apt-get autoremove -y; apt-get clean;"
5055
docker export --output=base.tar mintwsl
5156
docker rm -f mintwsl
5257

‎bash_profile

+2
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,8 @@ if [ "$disksize" -le 274877906944 ]; then
113113
done
114114
fi
115115

116+
rm /etc/os-release
117+
ln -s /usr/lib/os-release /etc/os-release
116118
sudo systemctl daemon-reload
117119
sudo systemctl enable wslg-init.service >/dev/null 2>&1
118120

‎info

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
RELEASE=22.1
2+
CODENAME=Xia
3+
EDITION="Cinnamon"
4+
DESCRIPTION="Linux Mint 22.1 Xia"
5+
DESKTOP=Gnome
6+
TOOLKIT=GTK
7+
NEW_FEATURES_URL=https://www.linuxmint.com/rel_xia_whatsnew.php
8+
RELEASE_NOTES_URL=https://www.linuxmint.com/rel_xia.php
9+
USER_GUIDE_URL=https://www.linuxmint.com/documentation.php
10+
GRUB_TITLE=Linux Mint 22.1 Cinnamon

‎issue

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Linux Mint 22.1 Xia \n \l
2+

‎issue.net

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Linux Mint 22.1 Xia

‎lsb-release

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
DISTRIB_ID=LinuxMint
2+
DISTRIB_RELEASE=22.1
3+
DISTRIB_CODENAME=Xia
4+
DISTRIB_DESCRIPTION="Linux Mint 22.1 Xia"

‎os-release

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
NAME="Linux Mint"
2+
VERSION="22.1 (Xia)"
3+
ID=linuxmint
4+
ID_LIKE="ubuntu debian"
5+
PRETTY_NAME="Linux Mint 22.1"
6+
VERSION_ID="22.1"
7+
HOME_URL="https://www.linuxmint.com/"
8+
SUPPORT_URL="https://forums.linuxmint.com/"
9+
BUG_REPORT_URL="http://linuxmint-troubleshooting-guide.readthedocs.io/en/latest/"
10+
PRIVACY_POLICY_URL="https://www.linuxmint.com/"
11+
VERSION_CODENAME=xia
12+
UBUNTU_CODENAME=noble

0 commit comments

Comments
 (0)
Please sign in to comment.