fullstackpeng / fullstackpeng.github.io

全栈鹏的首页。
0 stars 0 forks source link

install ubuntu24.04 env #1

Open fullstackpeng opened 3 months ago

fullstackpeng commented 3 months ago

website : https://docs.azul.com/core/install/debian?_gl=1*1cxraie*_gcl_au*MjAxNzM0OTUzOC4xNzIxNDY4NjUy*_ga*MTg2NjY2NTc5OS4xNzIxNDY4NjUz*_ga_42DEGWGYD5*MTcyMTQ2ODY1Mi4xLjEuMTcyMTQ2ODY4Ni4yNi4wLjA.#install-deb-package

home website : https://www.azul.com/

fullstackpeng commented 3 months ago

java home : /usr/lib/jvm/zulu-15-amd64

fullstackpeng commented 3 months ago

install maven : sudo apt install maven

maven home : /usr/share/maven

fullstackpeng commented 3 months ago

config ssh key:

sudo apt install git

sh-keygen -t rsa -b 4096 -C "867007845@qq.com"

eval "$(ssh-agent -s)"

ssh-add ~/.ssh/id_rsa

cat ~/.ssh/id_rsa.pub

fullstackpeng commented 3 months ago

vscode config java:

https://code.visualstudio.com/docs/java/java-tutorial

fullstackpeng commented 3 months ago

安装 搜狗输入法:

https://shurufa.sogou.com/linux/guide

https://blog.csdn.net/ccsodefhy/article/details/123122200

fullstackpeng commented 3 months ago

1panel 地址 http://127.0.0.1:10000/867007845

fullstackpeng commented 3 months ago

安装Docker参考:https://github.com/IceWhaleTech/CasaOS/issues/1868

fullstackpeng commented 3 months ago

安装 ssh

sudo apt-get install openssh-server

systemctl status ssh

systemctl enable ssh

sudo vim /etc/ssh/sshd_config

service ssh restart

fullstackpeng commented 3 months ago

ssh-keygen -f "/root/.ssh/known_hosts" -R "[127.0.0.1]:port"

ssh-copy-id -p port root@127.0.0.1

ssh -p 'port' 'root@127.0.0.1'

port 替换本地内网穿透的端口。