Windows 运行命令全集
摘要:winver 检查Windows版本wmimgmt.msc 打开windows管理体系结构wupdmgr windows更新程序winver 检查Windows版本wmimgmt.msc 打开windows管理体系结构wupdmgr windows更新程序wscript windows脚本宿主设置w
阅读全文
Windows 网管常用的网络命令
摘要:如果你玩过路由器的话,就知道路由器里面那些很好玩的命令缩写。 例如,"sh int" 的意思是 "show interface"。 现在 Windows 2000 也有了类似界面的工具,叫做 netsh。 我们在 Windows 2000 的 cmd shell 下,输入 netsh 提示符, 输入
阅读全文
DOS 符号整理
摘要:@\\隐藏命令的回显。 ~\\在for中表示使用增强的变量扩展;在set中表示使用扩展环境变量指定位置的字符串;在set/a中表示按位取反。 %\\使用两个%包含一个字符串表示引用环境变量。比如一个%time%可以扩展到当前的系统时间;单个%紧跟0-9的一个数字表示引用命令行参数;用于for中表示引
阅读全文
IIS 服务命令
摘要:iisreset /reboot 重启win2k计算机(但有提示系统将重启信息出现) iisreset /start或stop 启动(停止)所有Internet服务 iisreset /restart 停止然后重新启动所有Internet服务 iisreset /status 显示所有Interne
阅读全文
DOS 常用命令详解
摘要:dir 列文件名deltree 删除目录树cls 清屏cd 改变当前目录 copy 拷贝文件diskcopy 复制磁盘del 删除文件format 格式化磁盘 edit 文本编辑mem 查看内存状况md 建立子目录move 移动文件、改目录名 more 分屏显示 more c:\1.txttype
阅读全文
DOS 命令
摘要:net use \\ip\ipc$ " " /user:" " 建立IPC空链接 net use \\ip\ipc$ "密码" /user:"用户名" 建立IPC非空链接 net use h: \\ip\c$ "密码" /user:"用户名" 直接登陆后映射对方C:到本地为H: net use h:
阅读全文
Wndows 中使用 VS2019 创建 Ubuntu C++ 项目
摘要:1、安装 VS 组件 “使用 C++ 的 linux 开发” 2、配置 Ubuntu 服务器上的环境 # 安装依赖软件 sudo apt-get install openssh-server g++ gdb gdbserver # 启动 ssh 服务 sudo service ssh start 3
阅读全文
vue Failed to compile - by node-sass
摘要:页面错误提示 Failed to compile../src/assets/css/element-variables.scss (./node_modules/_css-loader@3.6.0@css-loader/dist/cjs.js??ref--8-oneOf-3-1!./node_mod
阅读全文
ubuntu 安装 ssh 服务并使用 root 登录
摘要:1、安装 ssh 服务 sudo apt-get install openssh-server -y 2、设置 roo t密码,ubuntu 默认 root 密码是随机的,需要重置一下 sudo passwd root 3、允许 root 用户登录,编辑 sshd_config sudo vim /
阅读全文
java 项目启动异常 Command line is too long. Shorten command line for xxxApplication or also for Spring Boot default configuration.
摘要:java spring 项目启动时报错:Command line is too long. Shorten command line for xxxApplication or also for Spring Boot default configuration. 这是命令行长度造成的错误,可以通过
阅读全文