You simply sign a corporate contract and pay a corporate fee, and MICROS~1 will sign any shitty broken and backdoored bootloader that you send to them with zero quality control, and it was like that with Windows drivers for years.
- Posts
- 1
- Comments
- 315
- Joined
- 3 yr. ago
- Posts
- 1
- Comments
- 315
- Joined
- 3 yr. ago
- JumpDeleted
Permanently Deleted
- JumpDeleted
Permanently Deleted
- JumpDeleted
Permanently Deleted
- JumpDeleted
Permanently Deleted
- JumpDeleted
Permanently Deleted

Huh, I actually forgot
catis used to join several files together. Last time I needed to concatenate two files, I did{ cat file1 ; cat file2 ; } > outputBut the most valid case is when I want to unpack .gz or .xz archive but do not want to delete the original file, as
xz -dwill do by default. So I naturally docat input.img.xz | xz -d > output.imgI've heard rumours that
xzhas a special option to not delete the original file, but I know no one brave enough to search through thexzmanpage.