摘要: 文章出处 :http://www.nat123.com/Pages_74_1145.jsp 路由器的UPNP功能有什么作用?是设置开启好还是关闭了好?UPnP是英语Universal Plug and Play的首字母缩写,一般翻译成通用即插即用。路由器通用即插即用UPnP功能用于局域网络计算机和智 阅读全文
posted @ 2023-06-29 21:20 csip 阅读(3217) 评论(0) 推荐(0) 编辑
摘要: VB6毕竟是很老的产品了,它的代码编辑器垂直滚动条并不能随鼠标的滚轮而滚动,这个问题会让我们在编写代码的时候觉得很不方便,不过还是有一种方法可以解决这个问题的。 先下载一个微软发布的“VB6IDEMouseWheelAddin.dll”文件(此文件已经上传到百度网盘,网址:http://pan.ba 阅读全文
posted @ 2023-06-29 21:18 csip 阅读(153) 评论(0) 推荐(0) 编辑
摘要: 1.是否安装 which vsftpd 2.查看ftp服务 service vsftp status Active: inactive(dead)=关闭;active(running)=运行 3.启动ftp systemctl start vsftpd 4.重启ftp systemctl resta 阅读全文
posted @ 2023-06-07 03:07 csip 阅读(88) 评论(0) 推荐(0) 编辑
摘要: 运算符说明举例 + 加法 `expr $a + $b` 结果为 30。 - 减法 `expr $a - $b` 结果为 -10。 * 乘法 `expr $a \* $b` 结果为 200。 / 除法 `expr $b / $a` 结果为 2。 % 取余 `expr $b % $a` 结果为 0。 = 阅读全文
posted @ 2023-04-29 02:53 csip 阅读(49) 评论(0) 推荐(0) 编辑
摘要: 一、基础 脚本开头 像 #!/bin/sh,它同样也可以改为 #!/bin/bash。 #! 是一个约定的标记,它告诉系统这个脚本需要什么解释器来执行,即使用哪一种 Shell 运行shell (chmod +x file 加上执行权限,否则会提示无执行权限) 一定要写成 ./test.sh,而不是 阅读全文
posted @ 2023-04-29 02:47 csip 阅读(25) 评论(0) 推荐(0) 编辑
摘要: Chown 修改所属用户和组 chmod [-R] xyz 文件或目录 修改用户的权限 r=4,w=2,x=1 (rwx=4+2+1=7) ls -l d 是 目录 - 是文件 l 是链接文档(link file) b 是可随机存储装置 c 是串行端口设备文件 r读 w写 x执行 d rwx r-x 阅读全文
posted @ 2023-04-21 13:51 csip 阅读(20) 评论(0) 推荐(0) 编辑
摘要: 创建表 Create table 表名 (列1 char(6)) not null primary key,列2 varchar(50),列2,smallint) 修改表 Alter table 表名 add 列1 char(10) not null 创建索引 Create unique clust 阅读全文
posted @ 2023-04-21 12:54 csip 阅读(10) 评论(0) 推荐(0) 编辑
摘要: 1.安装所需环境(依赖包) yum -y install gcc zlib zlib-devel pcre-devel openssl openssl-devel //一键安装 详解: 分开安装命令: yum install gcc-c++ //安装gcc yum install -y pcre p 阅读全文
posted @ 2023-04-10 11:44 csip 阅读(100) 评论(0) 推荐(0) 编辑
摘要: 1 阅读全文
posted @ 2022-09-19 15:38 csip 阅读(27) 评论(0) 推荐(0) 编辑
摘要: bootcamp上右键---显示包内容---Contents---Info.plist把这个文件拷贝到桌面(直接编辑是锁定的)。用文本编辑器打开,修改一个字段 PreUSBBootSupportedModels ,把前面的Pre去掉。保存,并覆盖掉bootcamp内的文件。打开终端。输入 sudo 阅读全文
posted @ 2020-07-11 20:33 csip 阅读(1168) 评论(0) 推荐(0) 编辑