forked from proxyee-down-org/proxyee-down
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1.任务列表UI调整为列表模式 2.任务列表支持批量暂停、继续、删除 3.修复暂停时删除下载的文件导致下载进度超过100%的BUG 4.修复部分情况获取是否含有root权限导致程序无法正常启动的BUG
- Loading branch information
Showing
21 changed files
with
61 additions
and
136 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
### linux安装证书 | ||
本教程以chrome浏览器为例,firefox的可以参考[火狐浏览器安装证书](https://github.com/monkeyWie/proxyee-down/blob/master/.guide/common/ca/firefox/read.md) | ||
1. 右击软件托盘,点证书目录会跳转到对应目录 | ||
2. 打开chrome,进入设置->高级->管理证书,选择授权中心然后点击导入,然后选择第一步证书目录中的ca.crt文件。在弹出的信任证书框中把三个复选框都勾上,点击确定即可。 | ||
![](https://github.com/monkeyWie/proxyee-down/raw/master/.guide/common/ca/linux/imgs/2-1.png) | ||
|
||
|
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,60 +1,30 @@ | ||
## 下载 | ||
进入[下载页面](https://github.com/monkeyWie/proxyee-down#下载),选择proxyee-down-x.xx-jar.zip文件进行下载。 | ||
## 安装环境 | ||
- 进入[JRE下载页面](http://www.oracle.com/technetwork/java/javase/downloads/jre8-downloads-2133155.html),下载对应的JRE | ||
![1](https://github.com/monkeyWie/proxyee-down/raw/master/.guide/linux/imgs/1.png) | ||
|
||
- 以root用户登录将下载的jre-8u161-linux-x64.tar.gz文件放到/temp目录下,使用如下命令解压: | ||
```tar zxvf jre-8u161-linux-x64.tar.gz``` | ||
|
||
- 将解压后的jre1.8.0_161复制到/opt下,命令如下: | ||
``` | ||
root@test:~# mkdir /temp | ||
root@test:~# cd /temp | ||
root@test:/temp# tar zxvf jre-8u161-linux-x64.tar.gz | ||
root@test:/temp# cd /opt | ||
root@test:/opt# mv /temp/jre1.8.0_161/ . | ||
``` | ||
|
||
- 在/bin目录下创建java软链接 | ||
``` | ||
root@test:/opt# cd /bin | ||
root@test:/bin# ln -s /opt/jre1.8.0_161/bin/java java | ||
- 将下载的jre-8u161-linux-x64.tar.gz文件解压: | ||
``` | ||
- 验证软件的正确性 | ||
![5](https://github.com/monkeyWie/proxyee-down/raw/master/.guide/linux/imgs/5.png) | ||
|
||
- 配置Java环境 | ||
sudo tar zxvf jre-8u161-linux-x64.tar.gz | ||
``` | ||
root@test:/bin# gedit /etc/profile | ||
export JAVA_HOME=/opt/jre1.8.0_161 | ||
export JRE_HOME=$JAVA_HOME/jre | ||
export CLASSPATH=.:$CLASSPATH:$JAVA_HOME/lib:$JRE_HOME/lib #这句容易出错 | ||
export PATH=$PATH:$JAVA_HOME/bin:$JRE_HOME/bin | ||
root@test:/bin# source /etc/profile | ||
root@test:/bin# echo $JAVA_HOME | ||
/opt/jre1.8.0_161 | ||
``` | ||
|
||
## 解压并运行 | ||
|
||
将下载好的proxyee-down-x.xx-jar.zip解压至任意目录。运行以下两条命令: | ||
将下载好的proxyee-down-x.xx-jar.zip解压至任意目录。使用刚刚解压出的jre运行 | ||
(xxx为刚刚解压出来的jre绝对路径) | ||
``` | ||
ulimit -c unlimited | ||
java -jar proxyee-down.jar | ||
xxx/bin/java -jar -Dfile.encoding=GBK -Xms256m -Xmx512m ./proxyee-down.jar | ||
``` | ||
![10](https://github.com/monkeyWie/proxyee-down/raw/master/.guide/linux/imgs/10.png) | ||
|
||
## 证书安装 | ||
访问`127.0.0.1:9999`下载证书,选择第一条`Trust this CA to identify websites`,然后OK | ||
![11](https://github.com/monkeyWie/proxyee-down/raw/master/.guide/linux/imgs/11.png) | ||
[查看](https://github.com/monkeyWie/proxyee-down/blob/master/.guide/common/ca/read.md) | ||
|
||
## SwitchyOmega插件安装与设置 | ||
|
||
[查看](https://github.com/monkeyWie/proxyee-down/blob/master/.guide/common/switchy/read.md) | ||
|
||
## 开启飞速下载 | ||
打开浏览器,选择要下载的资源进行下载就会弹出下载页面了。 | ||
## 完成 | ||
打开**网页浏览器**,选择要下载的资源进行下载就会弹出下载页面了。 | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
app.version=2.44 | ||
app.version=2.5 | ||
spring.profiles.active=prd | ||
view.server.port = 8999 | ||
tomcat.server.port = 26339 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters