docker 查看具体从哪个脚本启动服务
使用 systemctl status docker
查看 load 哪一行,就可以知道到底是从哪个脚本启动服务了。
使用 systemctl status docker
查看 load 哪一行,就可以知道到底是从哪个脚本启动服务了。
vim /etc/java-8-openjdk/security/java.security
找到 jdk.tls 这一行,删除 TLSv1, TLSv1.1
https://www.cnblogs.com/goolinli/p/14793289.html
https://segmentfault.com/a/1190000039951447
v2ray-linux-64.zip
和 v2ray-linux-64.zip.dgst
.download_v2ray
注释掉,把 ZIP_FILE
替换为你下载的 v2ray-core 的 zip 的路径。sudo bash install-release.sh
运行安装脚本。systemctl enable v2ray
systemctl start v2ray
systemctl status v2ray
查看服务启动状态。v2rayA 是 web 端,只需要下载 https://github.com/v2rayA/v2rayA 最新的 deb 包,然后双击安装即可。安装完成后,到软件中心里面能够看到 v2rayA,直接点击运行,import 导入服务器, connect 连接使用即可。
Qv2ray 是一个整体的 img 文件,打开后,首先设置里面 kernel settings,exe path 选择 /usr/local/bin/v2ray', assets dir 选择
/usr/local/share/v2ray` ,点击下面的 check v2ray core settings,确认无误即可。
但是暂时 Qv2ray 没有能够正常使用,v2rayA 可以正常使用。
https://v2xtls.org/v2ray-linux%e5%ae%a2%e6%88%b7%e7%ab%afv2raya%e4%b8%8b%e8%bd%bd%e5%ae%89%e8%a3%85%e5%8f%8a%e4%bd%bf%e7%94%a8%e6%95%99%e7%a8%8b-%e6%94%af%e6%8c%81vmess-vless-ss-ssr-trojan-pingtunnel/
https://www.jianshu.com/p/dae87e4d7691
https://bainesing.wordpress.com/2019/10/25/linux%E9%85%8D%E7%BD%AEv2ray%E5%AE%A2%E6%88%B7%E7%AB%AF/
fdisk
把硬盘分为一个区, 先用fdisk -l
查看。mkfs.ext4 /dev/sdb1
格式化sudo mkdir /mnt/home
并挂载 sudo mount /dev/sdb1 /mnt/home
sudo cp -ap /home/ /mnt/
tar cvfzp home.tar.gz /home
sudo umount /mnt/home
ls -l /dev/disk/by-uuid
/dev/sdb1 /home ext4 defaults 0 0
sudo rm -rf /home/*
mount -a
df -h
参考: https://blog.csdn.net/LiHuaYouGuZi/article/details/103760280
sudo adduser username
sudo usermod -a -G adm username
sudo usermod -a -G sudo username
参考: https://blog.csdn.net/acelove40/article/details/54343629
linux 系统之间传递文件,有两种方式,scp 或者 rsync.
scp -P 225 /home/oscar/myimages.tar.gz root@192.168.2.5:/home/root
scp -r -P 225 /home/oscar/ root@192.168.2.5:/home/root
rsync --progress --partial --rsh='ssh -p 225' ./pascal_train.txt jp@192.168.2.5:/data/oscar
# --rsh='ssh -p 225'指示采用ssh协议链接并使用端口225
cp -ra /etc/apt/sources.list /etc/apt/sources.list.bak
deb http://mirrors.aliyun.com/ubuntu/ focal main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ focal main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ focal-security main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ focal-security main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ focal-updates main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ focal-updates main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ focal-proposed main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ focal-proposed main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ focal-backports main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ focal-backports main restricted universe multiverse
参考: https://blog.csdn.net/wangyijieonline/article/details/105360138
今天使用有独显的 PC 安装 ubuntu 20.04,安装完成后,重启,屏幕一直闪烁 _
,过了一分钟,才报错 hdaudioC0D2: unable to bind the codec
。
经过在网上长时间搜索和自己的尝试,发现就是 nvidia 独显的问题,主要因为开源驱动出现问题。只要屏蔽显卡,只使用 CPU 即可。
ubuntu(safe graphic)
,进入系统后,选择 try ubuntu
来进入系统。sudo fdisk -l
查看具体分区。sudo mount /dev/sda1 /mnt
类似这样挂载根目录sudo vi /mnt/etc/modprobe.d/blacklist.conf
blacklist vga16fb
blacklist nouveau
blacklist rivafb
blacklist rivatv
blacklist nvidiafb
sudo reboot
重启系统重启之后能够顺利进入系统。再修改 grub,增加开机选择菜单的时间。
sudo vi /etc/default/grub
grub_timeout_style=hidden
注释掉,GRUB_TIMEOUT=30
这样增加等待时间。GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
改为 "text"
sudo update-grub
更新 grub.cfg 即可。参考: https://blog.csdn.net/keeplearning365/article/details/108963323
https://askubuntu.com/questions/1138137/what-is-safe-graphics-mode
https://www.zhihu.com/question/443773909
https://blog.csdn.net/VOlsenBerg/article/details/78722997
https://blog.csdn.net/nicechao/article/details/102835680
https://blog.csdn.net/weixin_34266504/article/details/91881973
https://www.cnblogs.com/dakewei/p/7499014.html
https://blog.csdn.net/delacroix_xu/article/details/5433189
https://askubuntu.com/questions/1144224/ubuntu-19-04-freeze-at-loading-dell-e6430-i5-nomodeset-didnt-work-well
https://askubuntu.com/questions/1160174/help-hdaudioc0d3-unable-to-bind-codec-cant-boot-up
https://ubuntuforums.org/showthread.php?t=2437409
https://programmerah.com/ubuntu20-04-hdaudioc0d2-unable-to-bind-the-codec-20592/
https://blog.csdn.net/davied9/article/details/54234510
https://qastack.cn/ubuntu/16042/how-to-get-to-the-grub-menu-at-boot-time
https://blog.csdn.net/weixin_44730681/article/details/114282405
https://forum.proxmox.com/threads/hdaudioc0d0-unable-to-bind-the-codec.80162/
https://forum.ubuntu.com.cn/viewtopic.php?t=490617
系统启动时,按住 ESC
按键即可进入 grub 命令行模式。
ls
可以查看硬盘分区名称,
set root=(hd0, gpt2)
linux /boot/vmlinuxz-5.8.0-43-generic root=/dev/sda1
initrd /boot/initrd.img-5.8.0-43-generic
boot
上面具体的路径可以使用 tab
来进行补全。
稍后整理:
https://blog.csdn.net/zhou2s_101216/article/details/38467715
https://www.cnblogs.com/wolf-sun/p/UML-collaboration-diagram.html
https://www.cnblogs.com/jiangds/p/6596595.html
https://zhuanlan.zhihu.com/p/135348779
https://zhuanlan.zhihu.com/p/78243709
https://zhuanlan.zhihu.com/p/149079804
https://zhuanlan.zhihu.com/p/109655171
https://www.cnblogs.com/darrenji/p/4729149.html