The first thing to do before we access HFS+ drive, ensure our board is running lastest software.
sudo apt update
sudo apt upgrade
Install all HFS packages we need.
sudo apt-get install hfsplus hfsutils hfsprogs gdisk
The first thing to do before we access HFS+ drive, ensure our board is running lastest software.
sudo apt update
sudo apt upgrade
Install all HFS packages we need.
sudo apt-get install hfsplus hfsutils hfsprogs gdisk
However, with the new update from Raspberry Pi Bullseye OS to Raspberry Pi Bookworm OS, the VNC setup has changed.
The reason is that Bookworm OS doesn’t use X11 as the window manager anymore, but instead relies on Wayland as the default display server. RealVNC, however, is only optimized for X11.
sudo apt update && sudo apt upgrade
SWAP memory is basically parts of memory from the RAM (Random Access Memory) that enables an operating system to provide more memory to a running application or process than is available in physical random access memory (RAM). So if the physical memory (RAM) is full, we can use SWAP partition for extra memory resources. It is useful if we have low memory on our machine.
sudo dphys-swapfile swapoff
xdotool lets you programatically (or manually) simulate keyboard input and mouse activity, move and resize windows, etc. It does this using X11's XTEST extension and other Xlib functions.
in terminal:
let activities = ['Makan', 'Kerja', 'Main game', 'Tidur]; |
let activities = [ | |
['Work', 9], | |
['Eat', 1], | |
['Commute', 2], | |
['Play Game', 1], | |
['Sleep', 7] | |
]; |