随手记一下自己的惯用环境配置
回家就装上了KUbuntu,结果krunner经常崩溃,又格盘装回了Windows。正好有机会重新配置下自己的环境,在这里随手记录下自己的配置。
- 安装系统,只分一个默认分区。先用系统自带的更新工具更新所有补丁和驱动,然后去官网下载显示器和键盘的驱动。进行系统激活后安装杀毒软件。
- Shadowsocks-CSharp作为socks代理,qt5版本作为http(s)代理。obfs做混淆客户端。
- Proxifier对部分应用程序应用代理,Chrome安装后同步所有内容;Dropbox做一些配置文件和密码库的同步,Keepass作为密码存储工具。Dropbox将Everything、IDM和Proxifier的配置同步到本地,安装Everything,恢复IDM。
- 安装Python2和Python3,并把Python3加入PATH中。安装7-zip、Notepad++、VS、JRE和Git,恢复并重置相关配置。
- 安装Office,配置好自定义模板和Outlook账户;安装VMWare、SecureCRT、WinDbg。
- 恢复Freemind、Aria2、Lingoes、Sublime、WinHex等软件。恢复开机启动脚本。
- 统一配置并恢复所有软件的配置。
要点:
- 尽量多的使用绿色软件,或者重装之前下载好最新版本的安装包,防止浪费时间
- 将软件配置等到Dropbox中,以便恢复
- 个人文档用OneDrive、Google Drive进行转移
- Shrink掉部分文件
Aria的配置:
daemon=true
enable-rpc=true
rpc-allow-origin-all=true
rpc-listen-all=false
rpc-listen-port=<PORT>
rpc-secret=<RPC>
max-concurrent-downloads=5
continue=true
max-connection-per-server=8
min-split-size=10M
split=10
input-file=aria2.session
save-session=aria2.session
save-session-interval=60
dir=C:\Users\<Username>\Downloads
兼记两个tips。
一个是处理PowerShell的ExecPolicy的。建立boot.cmd,写入:
type Bootup.ps1 | PowerShell.exe -noprofile -
启动项里启动boot.cmd即可
另外一个是处理Linux下Dropbox问题的:
- 上https://www.dropbox.com/zh_CN/install?os=lnx 下载包,并安装。先不运行
- 按照如下修改/usr/bin/dropbox 地址换成可以访问的机器 记得备份
57,58c57,60
< DOWNLOAD_LOCATION_FMT = "https://www.dropbox.com/download?plat=%s"
< SIGNATURE_LOCATION_FMT = "https://www.dropbox.com/download?plat=%s&signature=1"
---
> DOWNLOAD_LOCATION_FMT = "http://<HERE FILL IN THE BACKUP ADDRESS>/x86_64"
> SIGNATURE_LOCATION_FMT = "http://<HERE FILL IN THE BACKUP ADDRESS>/x86_64_sig"
> #DOWNLOAD_LOCATION_FMT = "https://www.dropbox.com/download?plat=%s"
> #SIGNATURE_LOCATION_FMT = "https://www.dropbox.com/download?plat=%s&signature=1"
244c246
< return download_file_chunk(DOWNLOAD_LOCATION_FMT % plat(), self.local_file)
---
> return download_file_chunk(DOWNLOAD_LOCATION_FMT, self.local_file)
249c251
< for _ in download_file_chunk(SIGNATURE_LOCATION_FMT % plat(), signature):
---
> for _ in download_file_chunk(SIGNATURE_LOCATION_FMT, signature):
- 运行 dropbox start -i 或Alt+Space呼出控制板后启动dropbox,原样安装即可
- 如果有必要就还原
也可以直接proxychains dropbox start -i 不过有时候不好用