Skip to content

Latest commit

 

History

History
34 lines (24 loc) · 1.08 KB

OpenBSD.md

File metadata and controls

34 lines (24 loc) · 1.08 KB

Installing openbsd

https://sohcahtoa.org.uk/openbsd.html https://news.ycombinator.com/item?id=20344766 some thoughts on using openbsd as a workstation https://medium.com/linux-gossip/openbsd-6-4-installing-a-seriously-underrated-os-in-a-virtual-machine-f5848ee5a25a

Make openbsd a desktop system with GUI

https://framagit.org/3hg/isotop/-/blob/master/README.md

Other BSD variant.

Most are not getting a lot of updates. Not enough users?

migrate openbsd userland to Linux

https://github.com/leahneukirchen/outils interesting to study the commands and the tools source code. the coding style.

Conversion between Unix and Dos format

DOS to UNIX

tr -d '\r' < input.file > output.file
perl -pi -e 's/\r\n/\n/g' input.file

UNIX to DOS

sed 's/$'"/`echo \\\r`/" input.txt > output.txt