参考链接:https://blog.csdn.net/m15511023218/article/details/87920263 参考的主要代码: auto eth0iface eth0 inet staticaddress 192.168.3.90gateway 192.168.3.1netmas ...
分类:
其他好文 时间:
2020-06-25 23:04:52
阅读次数:
52
一、下载tomcat源码 https://github.com/apache/tomcat/tree/8.5.x 二、建立pom 1 <?xml version="1.0" encoding="UTF-8"?> 2 <project xmlns="http://maven.apache.org/PO ...
分类:
其他好文 时间:
2020-06-25 19:55:28
阅读次数:
77
Example 1 源码: <?php $UploadDir = '/var/www/files/'; if (!(isset($_GET['file']))) die(); $file = $_GET['file']; $path = $UploadDir . $file; if (!is_fil ...
分类:
Web程序 时间:
2020-06-25 17:18:00
阅读次数:
61
第一种:在项目目录写一个CMakeLists.txt cmake_minimum_required (VERSION 3.8) project ("rtsp") 该命令会查找指定目录下的所有源文件,然后将结果存进指定变量名。 #aux_source_directory(<dir> <variable ...
分类:
其他好文 时间:
2020-06-25 10:10:46
阅读次数:
50
#盘符切换 D: C:#查看当前目录下的所有文件 dir#切换目录 cd change directory #切换盘cd /d D:切换到D盘 #cd..返回上一级# 清理屏幕 CLS# 退出终端 exit#查看电脑IP ipconfig#打开程序 #计算器 calc 画图 mapaint 记事本 ...
分类:
其他好文 时间:
2020-06-24 23:58:14
阅读次数:
126
基础镜像是Ubuntu。run里面加个 apt install -y sudo 问题原因,基础镜像比较干净或者讲比较裸。 ...
分类:
其他好文 时间:
2020-06-24 14:12:06
阅读次数:
46
How to show git log history for a sub directory of a git repo? git log a b c ...
分类:
其他好文 时间:
2020-06-23 15:57:52
阅读次数:
44
出现问题: impdp 导入时报错sql: impdp xxx/xxx@127.0.0.170/orcl directory=DPDATA dumpfile=20200623data.DMP full=y ; Connected to: Oracle Database 12c Enterprise ...
分类:
数据库 时间:
2020-06-23 15:31:17
阅读次数:
75
2、Linux目录操作命令 切换目录操作:cd change directory 更改目录、路径 建立目录:mkdir make directory 创建一个空目录 删除目录:rmdir remove directory 删除一个空目录 删除:rm remove 删除文件或目录(空目录和非空目录都可 ...
分类:
系统相关 时间:
2020-06-22 17:28:40
阅读次数:
87
磁盘 磁盘为系统提供了最基本的持久化存储。 文件系统 文件系统则在磁盘的基础上,提供了一个用来管理文件的树状结构 组织方式不同,就会形成不同的文件系统。 为了方便管理,Linux 文件系统为每个文件都分配两个数据结构,索引节点(index node)和目录项(directory entry)。它们主 ...
分类:
系统相关 时间:
2020-06-21 21:41:31
阅读次数:
72