简述新电脑开荒

给人开荒赚钱,给己开荒省钱! 临近双十一,手下的笔记本也该更新换代了,就把自己的开荒操作大致记录下来,具体软件使用不是本文重点。有大厂出品的软件,也有一些小而巧的小众软件

  1. 常规操作(获得较新的系统环境) Windows激活,Office激活,系统分区,系统更新,软件卸载,软件更新,驱动更新,漏洞补丁,还有电脑图标,启动项等等,在此没必要再造轮子,就不一一叙述。

  2. 安全防护(获得较习惯的安全环境,以个人习惯为准) Windows 防护:关闭所有功能。 原厂防护:关闭自启,未卸载 电脑管家:安装到C盘。(其他软件到D盘)

  3. 安装 V2ray(获得更好的网络环境,通过某些VPN才能让scoop更好地连接Github 小声哔哔Free ) 由于不可抗力,在此也不能详细叙述,一本github各位好自为之 。 提前配置 conda,git,scoop : 创建文件C:\Users\<USER>\.condarc参考 清华源

    ssl_verify: false
    show_channel_urls: true
    report_errors: false
    auto_activate_base: true
    always_yes: true
    
    channels:
      - defaults
    default_channels:
      - https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main
      - https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/r
      - https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/msys2
    custom_channels:
      conda-forge: https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud
      msys2: https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud
      bioconda: https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud
      menpo: https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud
      pytorch: https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud
      simpleitk: https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud
    
    proxy_servers:
        http: http://127.0.0.1:10808
        https: http://127.0.0.1:10808
    创建文件C:\Users\<USER>\.gitconfig
    [core]
    	autocrlf = false
    [http]
    	sslVerify = false
    	proxy = socks5://127.0.0.1:10808
    [https]
    	sslVerify = false
    	proxy = socks5://127.0.0.1:10808
    修改C:\Windows\System32\drivers\etc\hosts参考 github520

  4. 安装 Scoop (获得更干净的软件环境) 自己去安装这个确实需要一点先验知识,所以还是要记录下。 以管理员权限运行 PowerShell,并执行下面代码。

    $env:SCOOP='D:\Scoop'
    [environment]::setEnvironmentVariable('SCOOP',$env:SCOOP,'User')
    set-executionpolicy remotesigned -scope currentuser
    Set-ItemProperty 'HKLM:\SYSTEM\CurrentControlSet\Control\FileSystem' -Name 'LongPathsEnabled' -Value 1
    Invoke-Expression (New-Object System.Net.WebClient).DownloadString('https://get.scoop.sh')
    # 设置全局(如果需要)
    # $env:SCOOP_GLOBAL='D:\GlobalScoopApps'
    # [environment]::setEnvironmentVariable('SCOOP_GLOBAL',$env:SCOOP_GLOBAL,'Machine')
    
    # 检查 scoop
    scoop checkup
    # scoop update *
    # scoop update scoop
    scoop install git aria2 # 同时自动下载 7zip
    
    # 添加三个 bucket
    scoop bucket rm extras ;; scoop bucket add extras
    scoop bucket add java
    scoop bucket add dorado https://github.com/chawyehsu/dorado 
    
    # scoop 代理
    scoop config rm proxy ;; scoop config proxy 127.0.0.1:10808
    
    # 关于 git 代理
    # git config --global http.proxy http://127.0.0.1:10808
    # git config --global https.proxy http://127.0.0.1:10808
    # git config --global --unset http.proxy
    # git config --global --unset https.proxy
    
    
    # 以上安装完成。以下看个人需求。
    scoop install sudo curl 
    scoop install vscode miniconda3 
    #conda clean --packages
    #conda clean --all
    #conda update --all
    #conda update -n base conda
    
    scoop install motrix # 下载工具
    scoop install mactype-np # 字体优化工具
    scoop install potplayer # 视频播放器
    scoop install quicklook # 快速预览工具
    scoop install snipaste # 截图工具

  5. 安装 Everything + Wox (获得更强大的搜索环境)

  6. 其他 聊天(QQ/Tim/微信/腾讯会议) 输入法(搜狗) 浏览器(Chrome) 视频(QQ影音) PE(BalenaEther) 远程(向日葵,蒲公英) 压缩(bandizip6.x版本无广告) 编程(SourceTree/Fiddler/Navicat) 学术(PDF 阅读器,知云文献翻译,CAJViewer,EasyConnect,SciHub) 网盘(百度网盘、阿里云盘、OneDriver) 还有一点点(Xmind、Notion)