update openbsd notes
This commit is contained in:
parent
bacb53c5b5
commit
3c0dd27676
1 changed files with 22 additions and 1 deletions
|
@ -1,7 +1,7 @@
|
|||
---
|
||||
title: OpenBSD notes
|
||||
date: 2023-11-29T20:33:48+0100
|
||||
lastmod: 2023-12-08T23:36:01+0000
|
||||
lastmod: 2023-12-10T02:36:19+0000
|
||||
tags:
|
||||
- openbsd
|
||||
- python
|
||||
|
@ -105,6 +105,8 @@ $ doas newfs_msdos -F 32 -L 8GB_Stick sd2i
|
|||
|
||||
## Packages / Ports
|
||||
|
||||
### ...because of libraries
|
||||
|
||||
Updating dependencies before installing (switch `-U`) does help sometimes...
|
||||
|
||||
> Can't install [package] because of libraries
|
||||
|
@ -125,6 +127,25 @@ Install python modules with pip.
|
|||
$ 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
|
||||
|
||||
## Cloudlog (server)
|
||||
|
|
Loading…
Reference in a new issue