前提
新配了个电脑
配置 如下
- Intel Corei7 12700F 盒装
- 华硕 TUF B660M-PLUS WIFI 重炮手 DDR4
- 利民 PA120SE argb
- 影驰3060ti 金属大师OC[FG]
- 技嘉P750GM电源
- 金士顿 FURY 16Gx2 3200
- 金士顿 KC3000 1T PCIE4.0
- 金河田机箱 黑色
零件买回来组装了一下,先是装了win10,更新了显卡驱动,用娱乐大师跑分了一下,
然后就直接装上了kali
esc cap
键位互换
因为个人比较喜欢用vim
第一件事指定是先进行键位互换
进入目录
/home/xiaosheng
目前少说也翻了有一百多篇文章,,全都千篇一律的告诉用/.zshrc
|| .bashrc
|| bash_profile
“~” 指当前账号的根目录
“.” 表示bashrc是隐藏文件,可以用 ls -a 或 ls -la命令看到
这里采用开机自启动项的方式,
进入目录
用vim
编辑,添加
*不推荐: *这里可以在~/.zshrc
中添加,但是不推荐,网上有很多都叫这么做,但是,等你用就知道了,当你每次开启一个新的终端的时候,终端都会弹出一句讨厌的话,
不推荐
提前剧透一下,idea,vscode vim
键映射
vscode
idea键位映射
开发环境配置
准备阶段
0.0 设置root
密码
0.1.先进行换源
这里是源地址,阿里云镜像
编辑/etc/apt/sources.list
用vim
编辑,注释掉本来的源,
我这里用 了好几个源,可以多粘贴几个
其实可以不用注释掉kali本来的源
,在kali·
2020以后,他会根据安装系统地域自动选择比较快的源。
进行更新
0.2.安装中文输入法
我这里选择的是搜狗输入法
下载链接点击这里
安装教程点击这里
安装完搜狗输入法之后,
我是使用的
kali2022.3
最新版,2022.2
也使用过
开机之后就会惊奇的发现搜狗输入法没反应,点击右上角的键盘图标才会有反应,但要输入的时候又没有反应了,而且无法切换输入法,也无法激活输入法, (而且输入法默认配置的是搜狗啊,但就是用不了)卸载重装也不好使
0.2.2搜狗输入法解决办法
这是一个比较奇怪的问题,暂时没法解释
然后
在输入,就会发现全是乱码,按网上解决办法,没有用
鱼目混珠的解决办法,——》无用
然后卸载
就好了
至于为什么会这样,我也不清楚
0.2.1 卸载输入法
卸载deb
包
0.3 更改屏幕关闭时间
右上角选择 电源管理器
自动锁定会话选择 从不
0.4 安装vscode
在当前文件夹打开vscode
0.5安装截屏工具
推荐
启动命令
0.6 linux剪贴板管理工具
这里是官网,点击访问
安装步骤
使用的话直接输入copyq
开机启动
1.显卡驱动安装
1.0 拓展
在进入启动项选择界面按E进入编辑模式
倒数第三行的quiet splash
修改为quiet nouveau.modset=0 splash
1.1准备
确定安装的GPU,并检查其使用的内核模块:
安装nvidia-detect
来检测显卡
安装cuda
期间会弹出对话框
点击ok
就行
强制重启
检测是否安装成功
2.java
安装
卸载自带openjdk
下载地址← 点击下载
下载jdk-8u341-linux-x64.tar.gz
2.1准备
2.2环境变量配置
编辑/etc/profile
至于classpath
就不用配置了,那是java1.5
之前的
注意这里path前面有$, 是markdown的问题,导致没有显示
2.3 通知系统java
的位置
2.4设置默认JDK
2.5更新profile
2.6zshrc
配置
注意这里path前面有$, 是markdown的问题,导致没有显示
2.7更新zshrc
3.go
安装
3.1下载go
3.2设置profile
GOPATH
不用设置
GOPATH
是Golang 1.5
版本之前一个重要的环境变量配置,是存放 Golang
项目代码的文件路径。
这里代码块显示有问题,请看截图
3.3 设置zshrc
这里代码块显示有问题,请看截图
3.4 更新profile
3.5验证
当换一个终端,go version
有输出的时候就成功了
3.6小问题
之前在source /etc/profile
的时候是没有问题的,在添加完go
的环境之后就这样了
如果有大佬知道的话,还请多多指教
4.clash
安装
github搜索clash for windows
github clash 下载
将.tar.gz
包下载下来,后解压,将其放到/usr/local/software
并重命名为clash
cd
到clash
下面的cfw
就是可执行文件
如果
创建快捷启动方式
在文件最后添加
然后source ~/.zshrc
更新一下
以后再直接
clash
就可以启动程序了
5.maven
安装
衍生知识
点击这里进行扩展阅读
安装之前版本可以从这里进入
点这里下载
下载apache-maven-3.5.4-bin.tar.gz
4.2添加环境变量
sudo vim /etc/profile
看下面截图代码,markdown显示有问题
source /etc/profile
4.3添加zshrc
sudo vim /etc/zsh/zshrc
看下面截图代码,markdown显示有问题
source /etc/zsh/zshrc
4.4通知系统
4.5maven settings.xml
编辑settings.xml
在mirrors
标签下添加阿里云镜像
在idea中配置
5安装idea
这个没什么可讲的吧,解压,然后放到usr/local/software
5.1预备
5.2创建快捷启动方式
在文件最后添加
然后source ~/.zshrc
更新一下
安装goland
其中有一点需要注意
安装docker
点击这个网址注册一下加速地址
然后输入,查看docker
状态,查看docker
版本
(不加sudo
没权限查看更多)
然后设置加速地址
daemon.json
文件可能不存在
在文件中输入
然后,重新加载,重启docker
docker help
中文
参考文献
1. 简书Kali-JDK1-8安装
2. linux创建命令和图标快捷启动 方式
3. github clash 下载
4. kail 2020.4 环境变量配置问题
5. Installing Golang on Kali Linux
6. How to install Golang (latest version) on Kali Linux
7. HOW TO INSTALL GOLANG IN KALI LINUX
8. install go in linux
9. csdnkali下安装go环境
10. Install NVIDIA GPU Drivers
11. config maven on kali linux
12. linux下键位 重新映射
13 条评论
bingoplus philippines bingo app online live · 2023-05-08 12:43
I love this site
nba · 2023-05-08 18:47
It’s a fantastic website
go development · 2023-05-12 06:19
naturally like your web site however you need to test the spelling
on several of your posts. Several of them are rife with
spelling issues and I find it very troublesome to inform the truth
nevertheless I’ll certainly come back again.
aspor.ua · 2023-05-12 19:42
These are truly fantastic ideas in about blogging. You have touched some good things here.
Any way keep up wrinting.
enamtechsolutions.com · 2023-05-14 21:45
Hello there! I just would like to offer you a big thumbs up for
the excellent information you’ve got right here on this post.
I am coming back to your web site for more soon.
https://aspor.ua/ru/akkumulyatory · 2023-06-12 07:58
Thanks to my father who informed me about this blog, this website is really
remarkable.
xiaosheng · 2023-06-12 16:23
are you serious? hahaha
ufaland · 2024-04-08 08:34
I just like the helpful information you provide in your articles
ดูบอลสด · 2024-04-25 04:17
I just like the helpful information you provide in your articles
ดูบาสสด · 2024-05-02 05:21
I am truly thankful to the owner of this web site who has shared this fantastic piece of writing at at this place.
ufa191 · 2024-05-04 02:37
Awesome! Its genuinely remarkable post, I have got much clear idea regarding from this post
betflix · 2024-05-09 13:10
I’m often to blogging and i really appreciate your content. The article has actually peaks my interest. I’m going to bookmark your web site and maintain checking for brand spanking new information.
โปรแกรมวัวชนวันนี้ · 2024-05-13 14:07
naturally like your web site however you need to take a look at the spelling on several of your posts. A number of them are rife with spelling problems and I find it very bothersome to tell the truth on the other hand I will surely come again again.
评论已关闭。