bios-uefi

uefi-bios-gpt-mbr 知识整理

如何知道自己现有的启动方式 :

cmd下面输入 msinfo32 这个命令会显示系统概览,里面有legency 或者UEFI

如何知道自己的磁盘分区是mbr还是gpt:

cmd 下面输入 diskpart ,然后在弹出的diskpart 命令界面输入 list disk 看最后面的gtp下面是否有*号,如果没有就是mbr分区。

Read More

1. 安装 termux,termux主页

https://termux.com/
https://f-droid.org/ #貌似打不开,先搜索f-droid 的 apk文件安装后然后打开搜索安装termux。
安装好termux后打开termux在termux里面运行如下命令

1
2
3
4
5
6
#安装golang
apt install golang
#安装 git
apt install git
#安装 vim
apt install vim

Read More

家用小路由器静态路由

家用小路由静态路由设置失败

家里串联了多级路由,一级路由是netcore-nr285p,发射ap ubnt-nano-station-m2, ap-clinet -斐讯 一个停产的网桥,这三个设备都可以这样设置静态路由,而且上级,访问下级路由管理界面都成功

Read More

anaconda-vscode-pycharm

3 anaconda 配置

anaconda 安装的时候没有选择添加到环境变量,所以windows自带的cmd无法运行python命令,需要添加如下的3个变量,如果第三个没有添加,pip的时候会报ssl 模块无法找到的如下错误。

1
2
3
4
5
pip运行报错
pip is configured with locations that require TLS/SSL, however the ssl module in Python is not available.
Collecting virtualenv
Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError("Can't connect to HTTPS URL because the SSL module is not available.")': /simple/virtualenv/
Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError("Can't connect to HTTPS URL because the SSL module is not available.")': /simple/virtualenv/

Read More

atom-windows 默认快捷键

Atom用了PlatformIO IDE Terminal 后,总是用鼠标来切换,感觉有点割裂,久了手痛,当然主要是没钱….. 于是搜索了一下,参考这个网址:https://yanyinhong.github.io/2017/07/23/Atom-keyboard-shortcuts/

技巧就是用万能的

1
Ctrl + Shift + P	打开Atom的命令面板(Command Palette)

比如,我不知道怎么从文本编辑器切换到PlatformIO IDE Terminal ,于是就 Ctrl + Shift + P 在搜索框里面输入 platfrom 于是结果出来了:

Read More