环境: VM VirtualBox6.1; Ubuntu 20.04 P.S. 网上有很多方法可以实现主机和虚拟机文件共享和传输,这里自我感觉共享文件夹比较方便,配置共享文件夹简单。 1.打开虚拟机中的设置,如图中 1所示 2. 在设置窗口中选择共享文件夹,如图中 2所示 3.选择添加,如图中 3所 ...
板子端:ifconfig usb0 192.168.224.101route add default gw 192.168.224.100 #设置默认网关ubuntu端 #eth1为对应板子的网卡 eth0为本地上网的网卡sudo sysctl -w net.ipv4.ip_forward=1sud ...
分类:
移动开发 时间:
2020-07-01 09:16:34
阅读次数:
83
问题展示 修改更新源为国内高速源 vim /etc/apt/sources.list 删除旧的更新源,换成国内的更新源,如下 deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial main restricted universe multiv ...
分类:
其他好文 时间:
2020-07-01 00:18:12
阅读次数:
93
文章目录 安装openssl工具 自签名证书 从pfx中导出公钥/私钥/证书 pkcs12转pkcs8 安装openssl工具 centos yum install openssl ubuntu apt-get install openssl windows从网上下载已经编译好的opensslhtt ...
分类:
其他好文 时间:
2020-07-01 00:08:46
阅读次数:
291
Ubuntu安装,卸载软件命令 1.使用apt命令 sudo apt update #同步源 sudo apt list --upgradeable #列出可升级的安装包 sudo apt upgrade #升级软件 sudo apt full-upgrade 升级软件包并卸载当前软件包,作为系统升 ...
分类:
系统相关 时间:
2020-06-30 22:49:00
阅读次数:
81
解决Ubuntu与win10时间不同步 1.安装ntpdate sudo apt installl ntpdate 2.同步windows时间 sudo ntpdate time.windows.com 3.把时间更新到硬件 sudo hwclock --localtime --systohc 4. ...
本文将详细介绍在Ubuntu16.04上对OpenJDK8进行编译。 ...
分类:
系统相关 时间:
2020-06-30 20:48:39
阅读次数:
72
在Linux环境下搭建一个JDK+Tomcat+Jenkins,用来构建python自动化脚本。 ...
分类:
系统相关 时间:
2020-06-30 17:29:24
阅读次数:
62
1.首先从github上clone最新的bitcoin源代码 git clone https://github.com/bitcoin/bitcoin.git 2.进入clone下来的代码目录,查看当前版本(这里我切换到了v0.20.0版本) cd ./bitcoin git tag -l git ...
分类:
系统相关 时间:
2020-06-30 12:58:32
阅读次数:
110
答: 在Dockerfile中添加以下语句来配置apt-get 从当前的系统中复制/etc/apt/sources.list以及/etc/apt/apt.conf到Dockerfile所处的目录中 $ cp /etc/apt/sources.list ./ $ cp /etc/apt.conf ./ ...
分类:
系统相关 时间:
2020-06-30 12:47:49
阅读次数:
121