Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ubuntu 24.04 apt_list compatibility issues #277

Closed
ZiaChiu opened this issue Oct 2, 2024 · 0 comments
Closed

ubuntu 24.04 apt_list compatibility issues #277

ZiaChiu opened this issue Oct 2, 2024 · 0 comments

Comments

@ZiaChiu
Copy link

ZiaChiu commented Oct 2, 2024

On Ubuntu 24.04, you will give error when you are install libncurses5,libncurses5-dev and libaio1.

because libncurses5 will not be supported (it has been changed to libncurses6 and libncurses-dev); libaio1 has been replaced by libaio1t64.

solution(Testing):

In lamp/mysql.sh(65 line),

from

...
#Install Database common
common_install() {
    local apt_list=(libncurses5 libncurses5-dev cmake m4 bison libaio1 libaio-dev numactl)
         ...
}

change to

...
common_install() {
     local apt_list=(libncurses6 libncurses-dev cmake m4 bison libaio1t64 libaio-dev numactl)
         ...
}
teddysun added a commit that referenced this issue Oct 2, 2024
Fixed issue #277

Signed-off-by: Teddysun <[email protected]>
@teddysun teddysun closed this as completed Oct 7, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants