fix markdown layout

This commit is contained in:
CongTianKong
2023-06-30 15:53:56 +08:00
parent 7ae060cbc5
commit da79628931
2 changed files with 19 additions and 19 deletions

View File

@@ -4,8 +4,8 @@ Solve the common compatible problem of glibc on GNU/Linux, by lightweight contai
#### Introdution
When running applications, which are not include in system repository, there's sometimes a problem like this, which prevent application to run:
/lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.xx' not found (required by /path/to/xxx
When running applications, which are not include in system repository, there's sometimes a problem like this, which prevent application to run:
``/lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.xx' not found (required by /path/to/xxx``
That's because the application build with higher glibc then running. Someone choose to manually upgrade glibc, but because of the importance of glibc in GNU/Linux, this method usually make the whole OS distroyed. There's some safer but more complex solution, however, the utility here is much easier using and installing, without troubles to damage your operating system.
#### License
@@ -22,23 +22,23 @@ There's no license restriction with scripts such as ablrun. All the library file
#### Usage
Install additional-base-lib debian package first
sudo apt install "path/to/package_name.deb"
Install additional-base-lib debian package first
`sudo apt install "path/to/package_name.deb"`
Then you can run command, that contains glibc problem, led by ablrun and a space:
ablrun [command [arguments ...]]
Then you can run command, that contains glibc problem, led by ablrun and a space:
`ablrun [command [arguments ...]]`
Uninstall
sudo apt remove additional-base-lib
Uninstall
`sudo apt remove additional-base-lib`
#### Resources
Original release page (in Chinese):
Original release page (in Chinese):__
https://bbs.deepin.org/post/256555
Common solution for many library problem (in Chinese):
Common solution for many library problem (in Chinese):__
https://bbs.deepin.org/post/256081
A help for someone like to port this script to other GNU/Linux platform (in Chinese):
A help for someone like to port this script to other GNU/Linux platform (in Chinese):__
https://bbs.deepin.org/post/258721