Files
electron-ssr-backup/issue.md
qingshuisiyuan bd7450bf09 add
2019-08-05 18:03:18 +08:00

34 lines
1.5 KiB
Markdown
Executable File
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# 收集已知问题和解决方案
### 如何查看软件错误信息:
终端输入electron-ssr运行再此之前请手动退出已经打开的ssr软件或者其他代理软件、工具包括浏览器的代理插件等
注意提交issues的时候请把报错信息中的个人信息ip密码等删除。
日志位置Linux/////////////----等我换个硬盘启动deepin看
注意提交日志的时候请把报错信息中的个人信息ip密码等删除。
建议两个一起提交。
### Archlinux or Manjaro 无法运行的问题解决
Manjaro/Archlinux 运行程序时无法运行在终端运行 electron-ssr 发现缺少 lib-gconf.so 这个库文件只需要安装 gconf 即可解决
- `sudo pacman -S gconf`
### [error] 2019-08-03 16:26:47 INFO util.py:85 loading libcrypto from libcrypto.so.1.0.0
- `sudo apt-get install libssl-dev`
- `sudo apt-get install libsodium-devel`
以上两条命令是为了解决软件报错提示缺少libcrypto.so这个库但实际能否解决并未能验证
### Manjaro无法代理其他linux可以参考
一、PAC模式不可用
安装proxychains可从软件仓库安装或github
``` bash
sudo vi /etc/proxychains.conf
```
将socks4 127.0.0.1 9095改为
```bash
socks5 127.0.0.1 1080
```
重启服务
二、全局模式不可用
系统设置-网络-系统代理设置http、https代理为127.0.0.1:12333socks代理设置为127.0.0.1:1080<br>
以上端口要与electron-ssr的设置一致