• Feb 21, 2025 •leafboo
0 likes • 1 view
console/log
• Aug 17, 2025 •shekhar771
dzdzvcsd,v sd,.v, v,. ,.v , ,,vd,v dv
• Mar 14, 2025 •melikdev
0 likes • 2 views
console.log('hello world')
• Nov 18, 2022 •AustinLeath
in case of SCCM error 0x800700A1 do the following: diskpart list disk (list all disks on system) select disk 0 (0 being the disk to setup) clean (wipes the disk) create partition primary (creates windows partition) select partition 1 (selects the first partition) format quick fs=NTFS (sets format of primary partition) assign letter C (assigns the drive letter to "C") exit (exits diskpart)
0 likes • 0 views
# This is the network config written by 'subiquity' network: ethernets: enp0s3: dhcp4: yes nameservers: addresses: [8.8.8.8,8.8.4.4] version: 2
0 likes • 11 views
#!/bin/bash yum -y install httpd systemctl enable httpd systemctl start httpd hostname > /var/www/html/index.html