We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 923716d commit 3814ddaCopy full SHA for 3814dda
scripts/install/ubuntu.sh
@@ -220,6 +220,13 @@ if [ "${VERSION_ID}" == "22.04" ];then
220
pip3 install -U --force-reinstall --no-binary :all: gevent
221
fi
222
223
+# find /usr/lib -name "*libaio*" 2>/dev/null
224
+if [ ! -f /usr/lib/libaio.so.1 ];then
225
+ if [ -f /usr/lib/x86_64-linux-gnu/libaio.so.1t64 ];then
226
+ ln -s /usr/lib/x86_64-linux-gnu/libaio.so.1t64 /usr/lib/libaio.so.1
227
+ fi
228
+fi
229
+
230
cd /www/server/mdserver-web/scripts && bash lib.sh
231
chmod 755 /www/server/mdserver-web/data
232
0 commit comments