加载中
让powershell走代理

$env:HTTP_PROXY = "http://example.com:port" $env:HTTPS_PROXY = "https://example.com:port" $env:NO_PROXY = "localhost,127.0.0.1,::1"......

重置 WSL Ubuntu 用户密码

PS C:\WINDOWS\system32> wsl.exe -d Ubuntu --user root # passwd abc

下载任意版本谷歌浏览器离线安装包的方法

点击这个网页 https://vikyd.github.io/download-chromium-history-version/#/ 截图示例是搜索Win_64系统,版本86的谷歌浏览器,找到86最大子版本号,点击position:处进入对应版本下载页面 ...

eclipse mvn springboot工程经验

clean install前不要加 mvn,因为用的是 mvn 插件,没有mvn系统命令 不要勾选,否则导入的mvn工程springboot相关库就是不给下载,导致run as 的 spring boot app启动出错,显示 java.lang.Cl...

WSL Ubuntu linux 如何解决git clone失败问题

在windows 10的wsl bubutu中执行git clone,遇到如下错误提示 Cloning into ''... error: chmod on /mnt/c/Users/Efsta/Code//.git/config.lock failed: Operation not permitted fatal: co...

ng2-pdf-viewer不连接互联网离线offline状态显示pdf

使用ng2-pdf-viewer显示pdf文件,发行不连接互联网的时,pdf显示不出来,观察网络,发现electron链接https://cdnjs.cloudflare.com/ajax/libs/pdf.js/2.5.207/pdf.worker.min.js ,去互联网下...

IDEA新建项目时,没有Spring Initializr选项

最近开始使用IDEA作为开发工具,然后也是打算开始学习使用spring boot。 看着博客来进行操作上手spring boot,很多都是说 创建一个新项目(Create New Project) 选择 Spring Initializr。然而...

如何查看服务端口号进程,并关闭服务

lsof -i:3000 kill -9 [PID]

2020/05/19 11:13
258
git reset 使用及回滚

目录 一、git reset 参数 1. --soft 2. --mixed 3. --hard 二、 如何回滚文件 1. 修改完,还未执行git add 2.使用git add 提交到暂存区,还未commit之前 3.已经git commit,还未git push 4....

Ubuntu 19.04安装mysql-workbench

这个帖子,顺便把ubuntu 19.04中运行obfuscated-openssh,缺少 libssl1.0.0 库文件的问题也解决了 https://askubuntu.com/questions/1135823/install-mysql-workbench-in-ubuntu-19-04 so t...

Ubuntu新安装mysql root密码问题

使用 sudo apt install mysql-server 安装的mysql root密码你不知道吧,看如下资料: https://stackoverflow.com/questions/42421585/default-password-of-mysql-in-ubuntu-server-16-04/49...

linux服务器中运行图形界面程序,Xvfb -- 虚拟X server

首先安装Xvfb sudo apt-get install Xvfb 打开终端,执行 Xvfb :99 -ac 2>/dev/null & export DISPLAY=:99 然后执行 >>firefox 发现命令行输出了启动的信息,但是浏览器界面就没有出现了.说明...

Ubuntu18.04服务安装

1.Nginx https://www.digitalocean.com/community/tutorials/how-to-install-nginx-on-ubuntu-18-04-quickstart sudo systemctl restart nginx 2.mongodb https://www.howtoforge.com/tutori...

Javascript window.open使用POST传递值

https://stackoverflow.com/questions/5684303/javascript-window-open-pass-values-using-post 对于它的价值,这里是以前提供的代码封装在一个函数中。 openWindowWithPost("http://www.exa...

Hadoop资料

教程 https://www.cnblogs.com/shijiaoyun/p/5778025.html

Docker有关资料

教程 http://www.runoob.com/docker/docker-tutorial.html 安装 curl -fsSL https://get.docker.com -o get-docker.sh sh get-docker.sh 安装完成,按照提示,把linux用户假如docker组 If y...

Ubuntu 18.04缺少libgconf-2.so.4

sudo apt -y install libgconf2-4

2018/10/11 09:55
6.3W
Ubuntu linux压缩文件,7z和rar

使用7z sudo apt install p7zip-full 支持格式 sudo apt install unrar

Qt离线版本列表选择下载页面

https://download.qt.io/archive/qt/

2018/09/30 09:26
459

没有更多内容

加载失败,请刷新页面

返回顶部
顶部