|
|
@ -1,7 +1,7 @@
|
|
|
|
---
|
|
|
|
---
|
|
|
|
title: OpenBSD notes
|
|
|
|
title: OpenBSD notes
|
|
|
|
date: 2023-11-29T20:33:48+0100
|
|
|
|
date: 2023-11-29T20:33:48+0100
|
|
|
|
lastmod: 2023-12-08T23:36:01+0000
|
|
|
|
lastmod: 2023-12-10T02:36:19+0000
|
|
|
|
tags:
|
|
|
|
tags:
|
|
|
|
- openbsd
|
|
|
|
- openbsd
|
|
|
|
- python
|
|
|
|
- python
|
|
|
@ -105,6 +105,8 @@ $ doas newfs_msdos -F 32 -L 8GB_Stick sd2i
|
|
|
|
|
|
|
|
|
|
|
|
## Packages / Ports
|
|
|
|
## Packages / Ports
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### ...because of libraries
|
|
|
|
|
|
|
|
|
|
|
|
Updating dependencies before installing (switch `-U`) does help sometimes...
|
|
|
|
Updating dependencies before installing (switch `-U`) does help sometimes...
|
|
|
|
|
|
|
|
|
|
|
|
> Can't install [package] because of libraries
|
|
|
|
> Can't install [package] because of libraries
|
|
|
@ -125,6 +127,25 @@ Install python modules with pip.
|
|
|
|
$ python3 -m pip install --user --upgrade ${example_module}
|
|
|
|
$ python3 -m pip install --user --upgrade ${example_module}
|
|
|
|
~~~
|
|
|
|
~~~
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
## Rust
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### starship prompt
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
This is usually blocked via the rust-battery crate, as there is still no progress
|
|
|
|
|
|
|
|
made on issue [#19](https://github.com/svartalf/rust-battery/issues/19), which probably
|
|
|
|
|
|
|
|
leads to no progress on issue [#2267](https://github.com/starship/starship/issues/2276).
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Though, there is a [comment](https://github.com/starship/starship/issues/2276#issuecomment-782818302)
|
|
|
|
|
|
|
|
that disables the optional features (battery).
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
So the final installation of Starship looks like:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
~~~console
|
|
|
|
|
|
|
|
$ cargo install starship --locked --no-default-features
|
|
|
|
|
|
|
|
~~~
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
The compilation took about 9½ minutes.
|
|
|
|
|
|
|
|
|
|
|
|
## Git
|
|
|
|
## Git
|
|
|
|
|
|
|
|
|
|
|
|
## Cloudlog (server)
|
|
|
|
## Cloudlog (server)
|
|
|
|