Upgrade your Instand Ramen

Broth style 1

– Boiling water to fill bowl
– 1 heaped tsp miso paste
– 1 tbsp soy sauce
– 1 tsp sesame oil
– 1 tsp mayonnaise

Broth style 2

– Boiling water to fill bowl
-1 tbsp soy sauce
-1 tsp sesame oil
-1 tsp mirin
-1 tsp honey
-1 tbsp mayonnaise

To serve

– Portion of your favourite instant noodles
– Crispy onions
– Crispy chilli oil
– Toasted sesame seeds

Cooking

– Cook noodles to packet instructions, including using the flavour packet
– Whilst it’s boiling add Soy sauce, Sesame oil, Miso, Mirin and mayo to a bowl alongside a good splash of the boiling noodle broth
– Mix thoroughly
– Fill up with remaining broth from noodles
– Serve up with noodles and toppings
SLURP AWAY🍜

journalctl uses a lot of space on my disk

The aswer is you can check the used size and you can shrink the used space.

journalctl --disk-usage
journalctl --vacuum-size=1G

Other Options are

--vacuum-size=BYTES   Reduce disk usage below specified size
--vacuum-files=INT    Leave only the specified number of journal files
--vacuum-time=TIME    Remove journal files older than specified time

Create an Empty Branch in Git

To create a new empty branch in Git, we can use the --orphan command line option

git checkout --orphan 

The command above creates the new empty branch and switches into it.
Once the empty branch s created, we can can delete files from the working directory, so they are not committed in to the new branch

git rm -rf .

Now you are in the empty branch without any inherited files or commits.
If you want to push your empty branch to a remote repository, do the following

git commit --alow-empty -m "Init"
git push origin 

Note, that if you try to merge another branch into the empty one, you will receive the error: fatal: refusing to merge unrelated histories

Use the --allow-unrelated-history option to force the merge into the empty branch.

git merge --allow-unrelated-history 

zfs snapshot sort by size

When you see your zpool exploding, but the “used” size isn’t that much, you may take a look at your snaphosts.

First find the dataset with the that has the largest snapshot

zfs list -o name,usedbysnapshots | sort -r -k2

example output

tank/mails                                  56.3G
tank/store                                   261M
tank/docker                                 2.38M

In this case the tank/mails dataset should be looked at.

Snapshots can then be listed for that filesystem by using a command

# zfs list -t snapshot -r 
zfs list -t snapshot -r tank/mails 

falsche Zitate

    • Das Leben ist kein Ponyschlecken.
    • Der Apfel fällt nicht weit vom Pferd.
    • Lebe jeden Tag als seist Du das Letzte.
    • Das Pferd von hinten aufrollen.
    • Den Teufel an die Wand werfen.
    • Der Wurf mit dem Zaunpfahl.
    • Da schneiden sich die Geister.
    • Da streiten sich sich die Geister.

Author Archive

Archives by Month: