Any guides for installing OpenBSD(or others) on a headless machine?

|
marcotrosi 2022-08-18 23:24:25
https://github.com/yaronn/wopr

GitHub – yaronn/wopr: A simple markup language for creating rich terminal reports, presentations and infographicsGitHub
A simple markup language for creating rich terminal reports, presentations and infographics – GitHub – yaronn/wopr: A simple markup language for creating rich terminal reports, presentations and in…
marcotrosi 2022-08-18 23:32:51
https://github.com/Qalculate/libqalculate

GitHub – Qalculate/libqalculate: Qalculate! library and CLIGitHub
Qalculate! library and CLI. Contribute to Qalculate/libqalculate development by creating an account on GitHub.
marcotrosi 2022-08-18 23:37:05
https://cmdchallenge.com/
martito 2022-08-19 02:50:18
Live streaming about linux https://stream.ozoned.net/

ozoned Cast
Father of two, husband, gamer, lover of free software and willing teacher.
wviana 2022-08-21 03:24:15
Hey. Anyone know a free app to write a text in an image?
Mike_Went 2022-08-21 03:24:31
wviana 2022-08-21 03:24:15
Hey. Anyone know a free app to write a text in an image?

gimp?

wviana 2022-08-21 03:51:58
Didn’t find it in droid-fy/f-droid. Is there a mobile version?
smol_mazunki 2022-08-21 03:53:39
wviana 2022-08-21 03:24:15
Hey. Anyone know a free app to write a text in an image?

gimp

smol_mazunki 2022-08-21 03:53:58
wviana 2022-08-21 03:51:58
Didn’t find it in droid-fy/f-droid. Is there a mobile version?

just use telegram

wviana 2022-08-21 04:04:53
unixusergroup-49867.jpg

wviana 2022-08-21 04:05:53
The only problem was that I had to send. Not a problem as it has to do with group subject. And telegram is free software anyway. I even use forkgram.
armanhrshaikh 2022-08-23 08:57:58
wviana 2022-08-21 03:24:15
Hey. Anyone know a free app to write a text in an image?

If you have mobile device
1. Ffmpeg is the best solution from termux terminal ( tested )
2. Photo editor from play store

And if you want to run gimp then vnc with termux can help you but I am not sure.

If you have linux
1. Gimp
2. Inskcape

armanhrshaikh 2022-08-23 09:08:44
marcotrosi 2022-08-18 23:37:05
https://cmdchallenge.com/

Print the last 5 lines of “access.log”.

tail -n 5 access.log

Is it ok?

marcotrosi 2022-08-23 09:09:27
if it does it, then yes, and looks good to me. but you can simply test it
armanhrshaikh 2022-08-23 09:13:38
Ok
armanhrshaikh 2022-08-23 09:54:40
unixusergroup-49875.jpg
Trying both hard and 🍦 soft link..
Henk Metselaar 2022-08-23 16:06:07
armanhrshaikh 2022-08-23 09:54:40
Trying both hard and 🍦 soft link..

There’s literally tons of posts on the internet detailing the difference between the two, or else man ls

neovoidtk 2022-08-23 20:41:34
in bash i can use sed -e ‘s![^/]$!&/!’ <<< $variable to add a slash at the end of the variable if it doesnt exists, if i try the same in dash it gives error in that <<< syntax. what is equivalent of it in dash?
andykluger 2022-08-23 21:20:45
neovoidtk 2022-08-23 20:41:34
in bash i can use sed -e ‘s![^/]$!&/!’ <<< $variable to add a slash at the end of the variable if it doesnt exists, if i try the same in dash it gives error in that <<< syntax. what is equivalent of it in dash?

In general a good resource for this kind of thing is to run shellcheck on your code, and then read the error and optionally look at its wiki page for the particular problem.

Running shellcheck against that here reports that

SC3011 (error): In dash, here-strings are not supported.

and points to https://github.com/koalaman/shellcheck/wiki/SC3011

… which doesn’t exist. Damn.

Anyway, you could use:

printf ‘%sn’ “$variable” | sed…

Windows2k 2022-08-23 21:22:45
Any guides for installing OpenBSD(or others) on a headless machine? thinking of ssh here
Ceda EI 2022-08-23 21:26:45
Windows2k 2022-08-23 21:22:45
Any guides for installing OpenBSD(or others) on a headless machine? thinking of ssh here

is it a VM or an actual system?

Windows2k 2022-08-23 21:27:07
Ceda EI 2022-08-23 21:26:45
is it a VM or an actual system?

actual system accessible only through LAN and it has usb ports

armanhrshaikh 2022-08-24 18:02:25
Done ✅
moogiwaraa 2022-08-25 09:45:15
awk and unicode

https://github.com/onetrueawk/awk/commit/9ebe940cf3c652b0e373634d2aa4a00b8395b636

smol_mazunki 2022-08-25 09:55:32
what a legend
neovoidtk 2022-08-25 11:19:55
is there any networking or sysadmin group?
Windows2k 2022-08-25 11:21:02
Windows2k 2022-08-23 21:27:07
actual system accessible only through LAN and it has usb ports

So I suppose I’ll have to build my own live cd for it to have sshd enabled and started

Ceda EI 2022-08-25 12:14:22
Windows2k 2022-08-23 21:27:07
actual system accessible only through LAN and it has usb ports

I haven’t worked with openBSD, but with arch, something I did was create a custom ISO and booted that, it started an openssh server with a known public key and also tried to auto connect to network on boot.

Ceda EI 2022-08-25 12:14:51
https://wiki.archlinux.org/title/Archiso
Ceda EI 2022-08-25 12:14:58
this is what I followed for arch linux
Ceda EI 2022-08-25 12:45:30
Windows2k 2022-08-23 21:27:07
actual system accessible only through LAN and it has usb ports

you can try https://github.com/tbaumgard/openbsd-custom-image

GitHub – tbaumgard/openbsd-custom-image: Easily create custom OpenBSD installXX.iso images from the official onesGitHub
Easily create custom OpenBSD installXX.iso images from the official ones – GitHub – tbaumgard/openbsd-custom-image: Easily create custom OpenBSD installXX.iso images from the official ones
raytracer9 2022-08-25 13:28:20
https://github.com/nvie/git-toolbelt#readme

GitHub – nvie/git-toolbelt: A suite of useful Git commands that aid with scripting or every day command line usageGitHub
A suite of useful Git commands that aid with scripting or every day command line usage – GitHub – nvie/git-toolbelt: A suite of useful Git commands that aid with scripting or every day command line…
raytracer9 2022-08-25 13:28:37
https://github.com/nvie/gitflow

GitHub – nvie/gitflow: Git extensions to provide high-level repository operations for Vincent Driessen’s branching model.GitHub
Git extensions to provide high-level repository operations for Vincent Driessen’s branching model. – GitHub – nvie/gitflow: Git extensions to provide high-level repository operations for Vi…
BytesIO 2022-08-25 20:41:01
what all common folders in / that need to be backed up
BytesIO 2022-08-25 20:42:20
I need to remove root partition due to some reason but like to save folders that contains user configurations.
|