Caramel wrote: Thu Jan 04, 2024 2:50 pm
EasyUpdate look in http://distro.ibibilo.org/easyos/amd64/ ... stone/2024 to see what the last EasyOs is. But there hasn't been a release yet in 2024.
To fix this, you can edit /usr/local/easy_version/easy-update.
Change the line (line 63 in EasyOS 5.6.5, probably the same in 5.6.3)
to
Code: Select all
#YEAR="$(date +%Y)" #20220512
YEAR=2023
After the update you can undo the change.
Thanks! Does it mean I don't have to do the above if there will be a new release in 2024? I can just wait for it and then do the auto-update?
Another question:
Does any1 know if the latest EasyOS release includes GLIBC update to 2.36? Cannot play my favourite game since they updated it few days ago and this is my crash error:
Code: Select all
# ./medivia
./medivia: /usr/lib/libc.so.6: version `GLIBC_2.36' not found (required by ./medivia)
After this bug has been spotted, they've added:
Dear players
Due to certain upgrades the Linux version of the game client does now require glibc version of 2.36 to run properly.
Forum users advise to either update linux distro, or do the following steps:
1) Download the files:
Go to http://ftp.gnu.org/gnu/glibc/ and download glibc-2.36.tar.gz or wget it (http://ftp.gnu.org/gnu/glibc/glibc-2.36.tar.gz)
2) Unpack:
tar zxvf glibc-2.36.tar.gz
3) Create temporary build directory:
cd glibc-2.36
mkdir build
cd build
4) run configure script from there:
../configure --prefix=/opt/glibc-2.36
5) Make, & install:
make -j4
sudo make install
6) You can now start medivia as follows:
LD_PRELOAD='/opt/glibc-2.36/lib/libm.so.6' ./medivia
I recommend creating a "start.sh" script with this command and then run that everytime.
I'm hoping the distro update solves it, so I don't have to do the above steps... 