zoukankan      html  css  js  c++  java
  • debian(kali Linux) 安装net Core

    debian(kali Linux) 安装net Core

     

    curl -sSL https://raw.githubusercontent.com/dotnet/cli/rel/1.0.0-preview1/scripts/obtain/dotnet-install.sh | bash /dev/stdin --version 1.0.0-preview1-002702 --install-dir ~/dotnet

     

    出现错误:

    dotnet_install: Error: Unable to locate libunwind. Install libunwind to continue

     

    sudo apt-get install libunwind-dev

     如果你没有安装过gettext组件,一样会报类似的错误,我们可以通过下面的方法来安装。

    sudo apt-get install gettext

    运行官方给出的下载安装命令:

    链接:

    sudo ln -s ~/dotnet/dotnet /usr/local/bin

    安装完成,可以输入命令,测试下是否安装成功。

     

  • 相关阅读:
    SQL注入原理
    攻防世界-wp
    BUUCTF-warmup
    springboot邮箱验证功能部署到服务器后报25 timeout的解决方式
    关于MySQL建立库表时大写自动转换为小写的解决方案
    springboot格式化timestamp时间
    mysql高级查询
    pip更新一直time out 的解决方法
    关于springboot使用mybatis查询出现空指针,以及debug出现All Elements all Null的解决方法
    抽象工厂模式
  • 原文地址:https://www.cnblogs.com/xuanhun/p/5521012.html
Copyright © 2011-2022 走看看