-
Notifications
You must be signed in to change notification settings - Fork 2.2k
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
Upgrade /install script to use gcc 10 and libgcc 10 #2241
Comments
Presumably you're seeing this error when running the
It should be safe to simply install |
I'm guessing you're using Kali or Debian. The following patch to the diff --git a/install b/install
index 3b52fdc1..c28b6a69 100755
--- a/install
+++ b/install
@@ -106,7 +106,7 @@ install_linux () {
info "Installing ${Distro} prerequisite packages..."
if [ "${Distro}" = "Debian" ] || [ "${Distro}" = "Kali" ]; then
sudo apt-get update
- sudo apt-get install curl git build-essential openssl libreadline6-dev zlib1g zlib1g-dev libssl-dev libyaml-dev libsqlite3-0 libsqlite3-dev sqlite3 libxml2-dev libxslt1-dev autoconf libc6-dev libncurses5-dev automake libtool bison nodejs libcurl4-openssl-dev gcc-9-base libgcc-9-dev
+ sudo apt-get install curl git build-essential openssl libreadline6-dev zlib1g zlib1g-dev libssl-dev libyaml-dev libsqlite3-0 libsqlite3-dev sqlite3 libxml2-dev libxslt1-dev autoconf libc6-dev libncurses5-dev automake libtool bison nodejs libcurl4-openssl-dev gcc-10-base libgcc-10-dev
if command_exists rvm || command_exists rbenv version; then
info "Ruby package Manager exists - Ruby install skipped"
else |
So do I just run that as is or do I need to insert it into the actual code? |
It is a patch. The patch simply replaces You can manually replace every instance of You can automatically replace every instance of Or, if you're using BeEF from the git repository you can apply the patch manually by pasting the above diff into a file (ie, |
Excellent, thanks, friend. I'll give it a bash when I get home. |
Worked like a charm, thanks buddy. |
Good find.
|
I am confirming this is even needed. I added it 2 years ago, but might be moot today. |
I've tried everything I can think of, I've done apt-get update && upgrade, I've tried apt cache search, nothing, I've uninstalled and reinstalled, I have no idea.
Please help me
The text was updated successfully, but these errors were encountered: