网站首页 站内搜索

搜索结果

查询Tags标签: non,共有 108条记录
  • profile和bashrc的区别

    概念 交互式的:这种shell中的命令是由用户输入的(比如从键盘输入),运行的结果显示到终端。例如我们在终端输入的vi xxx、mv /a/a.txt /b等都属于交互式的。非交互式的:这种shell是读取存放在文件(shell脚本等)中的命令,并且执行它们。通常我们写的shell脚本都是非交互式…

    2021/10/18 23:09:48 人评论 次浏览
  • profile和bashrc的区别

    概念 交互式的:这种shell中的命令是由用户输入的(比如从键盘输入),运行的结果显示到终端。例如我们在终端输入的vi xxx、mv /a/a.txt /b等都属于交互式的。非交互式的:这种shell是读取存放在文件(shell脚本等)中的命令,并且执行它们。通常我们写的shell脚本都是非交互式…

    2021/10/18 23:09:48 人评论 次浏览
  • VMware中安装Linux-kali.2021(详细图文教程)

    目录一,VMware配置。二,kali图形界面安装配置。三,设置root账号。 四,更换源。 五,更新系统程序。一,VMware配置。 因为要装kali,所以要用到Debian。 这里的处理器配置要根据自己的电脑硬件决定。查找电脑处理器信息: 控制面板——设备管理器——处理器 这里也是看…

    2021/10/3 7:10:36 人评论 次浏览
  • VMware中安装Linux-kali.2021(详细图文教程)

    目录一,VMware配置。二,kali图形界面安装配置。三,设置root账号。 四,更换源。 五,更新系统程序。一,VMware配置。 因为要装kali,所以要用到Debian。 这里的处理器配置要根据自己的电脑硬件决定。查找电脑处理器信息: 控制面板——设备管理器——处理器 这里也是看…

    2021/10/3 7:10:36 人评论 次浏览
  • linux在使用apt-get update出现错误

    如果出现错误faile to fetch镜相源,可以尝试以下操作: 1.备份sources.list: sudo mv /etc/apt/sources.list /etc/apt/sources.list.bak 2.新建sources.list: sudo vim /etc/apt/sources.list 复制下面的源到sources.list: 修改成163源: deb Index of /debian/ stre…

    2021/10/1 7:42:36 人评论 次浏览
  • linux在使用apt-get update出现错误

    如果出现错误faile to fetch镜相源,可以尝试以下操作: 1.备份sources.list: sudo mv /etc/apt/sources.list /etc/apt/sources.list.bak 2.新建sources.list: sudo vim /etc/apt/sources.list 复制下面的源到sources.list: 修改成163源: deb Index of /debian/ stre…

    2021/10/1 7:42:36 人评论 次浏览
  • 解决git提示 GnuTLS recv error (-110): The TLS connection was non-properly terminated 问题

    在终端中按以下步骤输入:sudo apt-get install build-essential fakeroot dpkg-dev -y sudo apt-get build-dep git -y sudo apt-get install libcurl4-openssl-dev -y cd ~ mkdir source-git cd source-git/ apt-get source git cd git-2.*.*/ sed -i -- s/libcurl4-gnu…

    2021/9/28 17:12:43 人评论 次浏览
  • 解决git提示 GnuTLS recv error (-110): The TLS connection was non-properly terminated 问题

    在终端中按以下步骤输入:sudo apt-get install build-essential fakeroot dpkg-dev -y sudo apt-get build-dep git -y sudo apt-get install libcurl4-openssl-dev -y cd ~ mkdir source-git cd source-git/ apt-get source git cd git-2.*.*/ sed -i -- s/libcurl4-gnu…

    2021/9/28 17:12:43 人评论 次浏览
  • 2021kali_linux换国内源记录

    背景 因为国外源太慢了,所以需要把kali源换成国内的 方法 对kali的软件源配置文件进行相应的更改即可完成换源。用vim打开/etc/apt/sources.list: vim /etc/apt/sources.list把原有的配置注释掉,然后换成我们想换的国内源。 :wq保存并退出 用国内源进行软件更新: apt-…

    2021/9/22 7:14:10 人评论 次浏览
  • 2021kali_linux换国内源记录

    背景 因为国外源太慢了,所以需要把kali源换成国内的 方法 对kali的软件源配置文件进行相应的更改即可完成换源。用vim打开/etc/apt/sources.list: vim /etc/apt/sources.list把原有的配置注释掉,然后换成我们想换的国内源。 :wq保存并退出 用国内源进行软件更新: apt-…

    2021/9/22 7:14:10 人评论 次浏览
  • C++ 解决:错误 1 error MSB8031: Building an MFC project for a non-Unicode character set is deprecated

    MFC 生成解决方案时报错:错误 1 error MSB8031: Building an MFC project for a non-Unicode character set is deprecated. You must change the project property to Unicode or download an additional library. See http://go.microsoft.com/fwlink/p/?LinkId=28682…

    2021/9/10 17:06:54 人评论 次浏览
  • C++ 解决:错误 1 error MSB8031: Building an MFC project for a non-Unicode character set is deprecated

    MFC 生成解决方案时报错:错误 1 error MSB8031: Building an MFC project for a non-Unicode character set is deprecated. You must change the project property to Unicode or download an additional library. See http://go.microsoft.com/fwlink/p/?LinkId=28682…

    2021/9/10 17:06:54 人评论 次浏览
  • Effective C++ 笔记 —— Item 24: Declare non-member functions when type conversions should apply to all

    You might start your Rational class this way:class Rational { public:Rational(int numerator = 0, // ctor is deliberately not explicit;int denominator = 1); // allows implicit int-to-Rational conversionsint numerator() const; // accessors for numerato…

    2021/9/7 20:08:10 人评论 次浏览
  • Effective C++ 笔记 —— Item 24: Declare non-member functions when type conversions should apply to all

    You might start your Rational class this way:class Rational { public:Rational(int numerator = 0, // ctor is deliberately not explicit;int denominator = 1); // allows implicit int-to-Rational conversionsint numerator() const; // accessors for numerato…

    2021/9/7 20:08:10 人评论 次浏览
  • kali linux 使用小记

    2021 1.安装在虚拟机中 2.安装vmware tools,记得要使用root账户 2.添加、更新Kali仓库(Repository) 3.安装中文输入法基本信息 kali linux 发行版基于debian系,使用xfce桌面环境、软件包管理程序为apt(超级牛力)、源 # 源只要添加一个能用的就OK deb http://http.ka…

    2021/9/6 7:08:22 人评论 次浏览
扫一扫关注最新编程教程