-
Notifications
You must be signed in to change notification settings - Fork 5k
Closed
Labels
💊 bugSomething isn't workingSomething isn't working
Description
Gogs version
gogs/gogs:latest
Git version
- Server: Linux VM-0-8-ubuntu 5.4.0-153-generic Repository folder path #170-Ubuntu SMP Fri Jun 16 13:43:31 UTC 2023 x86_64 x86_64 x86_64 GNU/Linux
- Client:
Operating system
Ubuntu 20.04.6 LTS
Database
sqlite3
Describe the bug
wget https://github.com/gogs/gogs/releases/download/v0.13.3/gogs_0.13.3_linux_amd64.tar.gz
tar -zxvf gogs_0.13.3_linux_amd64.tar.gz
cd gogs && ./gogs web
but error happens.
./gogs: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.33' not found (required by ./gogs)
./gogs: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.32' not found (required by ./gogs)
./gogs: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34' not found (required by ./gogs)
i try to solution
wget https://ftp.gnu.org/gnu/glibc/glibc-2.35.tar.gz
tar -xzf glibc-2.35.tar.gz
cd glibc-2.35
mkdir build && cd build
../configure --prefix=/opt/glibc-2.35
make -j$(nproc)
sudo make install
# 临时运行程序
LD_LIBRARY_PATH=/opt/glibc-2.35/lib ./gogs web
but i got error
Segmentation fault
To reproduce
up
Expected behavior
work !
Additional context
No response
Code of Conduct
- I agree to follow this project's Code of Conduct
Metadata
Metadata
Assignees
Labels
💊 bugSomething isn't workingSomething isn't working