Skip to content

Instantly share code, notes, and snippets.

@Apxdono
Apxdono / MK1.tutorial.issue.log
Created November 28, 2023 00:49
MK1.tutorial.issue.log
15050.764:013c:0140:warn:vkd3d-proton:vkd3d_get_image_allocation_info: Padding allocation requirements. Requested alignment 4096 < 65536 (dim 3, 512 x 256 x 1, 10 levels, 1 samples, fmt #50, flags #0).
15050.764:013c:0140:warn:vkd3d-proton:vkd3d_get_image_allocation_info: Padding allocation requirements. Requested alignment 4096 < 65536 (dim 3, 512 x 256 x 1, 10 levels, 1 samples, fmt #50, flags #0).
15050.764:013c:0140:warn:vkd3d-proton:vkd3d_get_image_allocation_info: Padding allocation requirements. Requested alignment 4096 < 65536 (dim 3, 512 x 256 x 1, 10 levels, 1 samples, fmt #50, flags #0).
15050.764:013c:0140:warn:vkd3d-proton:vkd3d_get_image_allocation_info: Padding allocation requirements. Requested alignment 4096 < 65536 (dim 3, 256 x 256 x 1, 9 levels, 1 samples, fmt #50, flags #0).
15050.764:013c:0140:warn:vkd3d-proton:vkd3d_get_image_allocation_info: Padding allocation requirements. Requested alignment 4096 < 65536 (dim 3, 256 x 256 x 1, 9 levels, 1 samples, fmt #53, flags #0).
15050.764:013c:0
Computer Information:
Manufacturer: Micro-Star International Co., Ltd.
Model: MPG X570 GAMING PLUS (MS-7C37)
Form Factor: Desktop
No Touch Input Detected
Processor Information:
CPU Vendor: AuthenticAMD
CPU Brand: AMD Ryzen 7 5800X3D 8-Core Processor
CPU Family: 0x19
a11y-profile-manager/bionic,now 0.1.11-0ubuntu4 amd64 [installed]
accountsservice/bionic,now 0.6.45-1ubuntu1 amd64 [installed]
acl/bionic,now 2.2.52-3build1 amd64 [installed]
acpi-support/bionic,now 0.142 amd64 [installed]
acpid/bionic,now 1:2.0.28-1ubuntu1 amd64 [installed]
adapta-gtk-theme/now 3.92.2.16-0ubuntu1~zesty1 all [installed,local]
adduser/bionic,bionic,now 3.116ubuntu1 all [installed]
adwaita-icon-theme/bionic,bionic,now 3.28.0-1ubuntu1 all [installed]
adwaita-icon-theme-full/bionic,bionic,now 3.28.0-1ubuntu1 all [installed,automatic]
aisleriot/bionic,now 1:3.22.5-1 amd64 [installed]
a52dec 0.7.4-9
aalib 1.4rc5-12
accountsservice 0.6.45-1
acl 2.2.52-3
acpi 1.7-1
acpid 2.0.28-1
adwaita-icon-theme 3.24.0-1
alsa-firmware 1.0.29-1
alsa-lib 1.1.4.1-1
alsa-plugins 1.1.4-1
@Apxdono
Apxdono / Arch setup.md
Last active March 13, 2017 19:41
Archlinux setup instructions

Full guide here

First steps:

  • Check internet. Skip keyboard setup
  • Set time timedatectl set-ntp true
  • Setup disks. fdisk -l to see available hardware. e.g. /dev/sda
    • fdisk /dev/sda and start creating all the needed partions with sizes (/home, /boot, swap, /, /opt, /usr)
    • when done press w and the partition table will be written to disk (after that previous data is 50% fucked unless it's the same as before)
  • Format partitions e.g. mkfs.ext4 /dev/sda1
  • Now mount everything. the directory to mount to is /mnt. mount /dev/sda1 /mnt, mkdir /mnt/{boot,home,usr,opt} and do the same trick for other partitions.
doh