安装python 3.x: 1.sudo apt-get install python3 安装完成后 2.sudo apt-get install ipython3 它所相对应的python版本为python3,是下面这个样子的 ...
分类:
编程语言 时间:
2020-06-01 20:23:27
阅读次数:
81
问题:安装oracle-java8-installer按照如下指南失败: How To Install Java with Apt-Get on Ubuntu 16.04[https://www.digitalocean.com/community/tutorials/how-to-install- ...
分类:
数据库 时间:
2020-06-01 12:04:50
阅读次数:
103
01 准备环境 环境:ubuntu 16.04 环境(物理 or 虚拟) 确认 CPU 是否支持虚拟化: # egrep -o '(vmx|svm)' /proc/cpuinfo # vmx 如果不支持,开启 KVM 嵌套虚拟化之后再重启。 1.1 安装 KVM 环境 sudo apt-get in ...
分类:
系统相关 时间:
2020-05-31 22:07:40
阅读次数:
123
linux防火墙的相关命令 一、iptables防火墙(需要安装防火墙sudo apt-get install firewalld命令查看插件) 1、基本操作 # 查看防火墙状态 service iptables status # 停止防火墙 service iptables stop # 启动防火 ...
分类:
系统相关 时间:
2020-05-31 13:08:40
阅读次数:
56
#3 python 访问mysql##3.1 准备pymysql库 pip3 install PyMySQL 或者 pip install pymysql 或者 sudo pip3 install PyMySQL 如果没有pip3命令,请执行sudo apt-get install -y pytho ...
分类:
数据库 时间:
2020-05-31 00:59:14
阅读次数:
66
安装 yum install -y iperf # centos apt-get install iperf # ubuntu 基本用法 # 服务端 iperf -s # 客户端 5s iperf -c ip -t 5 如果想要测试多个网卡跑满,需要开启多个 iperf client 端 数据流方向 ...
分类:
其他好文 时间:
2020-05-30 01:24:07
阅读次数:
336
在其它电脑搭建编译该sdk工程的环境,由于所在电脑的linux系统为新装系统(版本:Ubuntu 20.04 LTS),下面记录了编译过程中遇到的问题,以及解决过程供以后参考 问题1:error "Please port gnulib freadahead.c to your platform! L ...
分类:
其他好文 时间:
2020-05-29 23:01:03
阅读次数:
95
首先使用命令查找宿主机的DNS server,命令:nmcli dev show | grep 'IP4.DNS'或者nmcli dev show | grep DNS 然后create一个文件,使用命令:vim /etc/docker/daemon.json编辑信息: { "dns": ["202 ...
分类:
其他好文 时间:
2020-05-29 09:58:39
阅读次数:
245
ubuntu换源 目的:ubuntu默认的源是国外的,使用apt-get的时候很慢,换成国内的源可以在安装软件时快很多很多。我用的是ubuntu16.04。 相关文件: /etc/apt/sources.list 步骤: (1).先备份这个文件(以防以后需要) sudo cp /etc/apt/so ...
分类:
系统相关 时间:
2020-05-29 09:54:05
阅读次数:
101
sudo apt-get remove docker docker-engine docker.io sudo apt-get update sudo apt-get install apt-transport-https ca-certificates curl gnupg-agent softw ...
分类:
系统相关 时间:
2020-05-28 23:17:59
阅读次数:
85