首页
金蝶系列
用友系列
鼎捷系列
OA协同办公
注册/登录
登录
注册
Search
1
Python 3.8 - ModuleNotFoundError: No module named 'flask._compat'
259 阅读
2
CentOS 7 - 安装iredMail 邮件服务器
252 阅读
3
Zabbix 4.0 源码安装
221 阅读
4
Kingdee-采购管理-T_PUR_CATALOGENTRY_R-采购目录_关联信息表
189 阅读
5
Python循环语句- for
179 阅读
默认分类
Windows
金蝶
OA
ERP
帆软
用友
Linux
数据库
/
Search
标签搜索
金蝶
管理
美萍
OA
Linux
qq
泛微
获取
破解
监控
用友
IPguard
KIS
Zabbix
python
帆软
活字格
MySQL
FineReport
k3cloud
SOSO
累计撰写
299
篇文章
累计收到
5
条评论
首页
栏目
默认分类
Windows
金蝶
OA
ERP
帆软
用友
Linux
数据库
页面
金蝶系列
用友系列
鼎捷系列
OA协同办公
推荐
登录
注册
搜索到
1
篇与
的结果
2021-10-20
checkra1n 生成ISO
checkra1n安装yum install epel-release livecd-tools lrzsz expect生成密码之python>>> import crypt >>> print(crypt.crypt("password", crypt.mksalt(crypt.METHOD_SHA512))) $6$jGuvTwb4.HaFUBAr$f0r0XYPdY0Skxtz4KKsy3OyFqCElHbqXgceTAkDKN/9xu49g01wf3cFyJ.YrxB4Ldq61OXP9TWSMY0bEtMEXR1 >>>生成密码之mkpasswdapt-get install whoismkpasswd 帮助localhost@Debian:~$ mkpasswd -h 用法: mkpasswd [OPTIONS]... [PASSWORD [SALT]] 用 crypt(3) 加密 PASSWORD。 -m, --method=TYPE 选择使用 TYPE 的方法 -S, --salt=SALT 使用指定随机字符 -R, --rounds=NUMBER 使用指定的循环次数 NUMBER -P, --password-fd=NUM 从文件描述符 NUM 中读取密码来 替代从 /dev/tty 中获取密码 -s, --stdin 同 --password-fd=0 -h, --help 显示帮助信息并退出 -V, --version 输出版本信息并退出生成密码localhost@Debian:~$ mkpasswd -m sha-512 -S salt1231 -R 5000 password $6$rounds=5000$salt1231$y2KR1z/Dfs/pbM2mVmFFOLr3Ql4QXoS/DYuN2yMwLmXi9hFXV85NWLeFcqfiz4Dsz4uEkHNgwchb5RloDDxfE/ localhost@Debian:~$ checkra1n.cfg配置文件# System authorization information auth --enableshadow --passalgo=sha512 # Run the Setup Agent on first boot firstboot --disable # System firewall firewall --disable # System timezone timezone Asia/Shanghai --isUtc --nontp # System language lang en_US.UTF-8 # Keyboard layouts keyboard --vckeymap=us --xlayouts='us' # Network information network --bootproto=dhcp --device=ens33 --noipv6 --nameserver=114.114.114.114 --hostname=checkra1n # Root password rootpw --iscrypted $6$jGuvTwb4.HaFUBAr$f0r0XYPdY0Skxtz4KKsy3OyFqCElHbqXgceTAkDKN/9xu49g01wf3cFyJ.YrxB4Ldq61OXP9TWSMY0bEtMEXR1 # Partition clearing information clearpart --all --initlabel # Disk partitioning information part / --fstype="ext4" --size=8192 # System bootloader configuration bootloader --append=" crashkernel=auto" --location=mbr --boot-drive=sda # Repo repo --name="base" --baseurl=http://mirrors.ustc.edu.cn/centos/7/os/x86_64/ repo --name="updates" --baseurl=http://mirrors.ustc.edu.cn/centos/7/updates/x86_64/ repo --name="extra" --baseurl=http://mirrors.ustc.edu.cn/centos/7/extras/x86_64/ repo --name="epel" --baseurl=http://mirrors.ustc.edu.cn/epel/7/x86_64/ %packages bash kernel syslinux passwd policycoreutils dhclient usbmuxd authconfig rootfiles firewalld # uefi efibootmgr grub2-efi-x64 grub2-efi-x64-cdboot grub2-efi-x64-modules grub2-pc grub2-pc-modules grub2-tools* shim-x64 %end %post --nochroot cp /root/checkra1n $INSTALL_ROOT/bin/ %end %post chmod +x /bin/checkra1n echo "/bin/checkra1n -V" >> /etc/bashrc %end %post --nochroot cp /root/checkra1n $INSTALL_ROOT/bin/ %end %post chmod +x /bin/checkra1n echo "/bin/checkra1n -V" >> /etc/bashrc %end 生成isolivecd-creator -c checkra1n.cfg -f checkra1n-0.12.4 -d
2021年10月20日
124 阅读
0 评论
0 点赞