cli

Prozess (Pid) auflisten der auf das device zugreift:

$ fuser -u /home/tom/directory
/home/thomas/directory:   2435828(thomas)

$ ps -p 2435828
PID TTY          TIME CMD
2435828 ?        00:00:01 nautilus

oder

$ lsof -l -w /home/thomas/directory
COMMAND      PID     USER   FD   TYPE DEVICE SIZE/OFF NODE NAME
nautilus 2435828     1000   27r   DIR   0,95     4096    2 /home/thomas/directory (192.168.178.110:/LVM/directory)

Prozess killen der auf die device zugreift

fuser -km /home/thomas/directory
  • -k : Kill processes accessing the file.
  • -m : Name specifies a file on a mounted file system or a block device that is mounted.

Bitwarden Backend konfigurieren:

bw config server https://bitwarden.example.de/
Saved setting `config`.

Mit API Key anmelden (Wird über die Gui erstellt/ausgelesen):

ClientID und ClientSecret als Umbegungsvariable setzen

export BW_CLIENTID="organization.f2c7e8e7-4370-47f6-96ab-4xxxxxxx"
export BW_CLIENTSECRET="2aOkxxxxxxxx"
$ bw login --apikey
? client_id: organization.xxxxx-4370-47f6-xxxx-47a8axxxx7db
? client_secret: 2aOkWAretz45563456qLCu3UvrGgj
You are logged in!

To unlock your vault, use the `unlock` command. ex:
$ bw unlock

Hier wird erst eine Liste von PIDs erstellt denen dann 50% CPU zugewiesen wird.

ps faux | grep '/usr/local/bin/node --' | awk '{print $2}' |  xargs -I{} cpulimit -p {} -l 50