Solution
Useful links
Might work
sudo apt install --reinstall linux-generic
sudo apt install linux-modules-extra-6.11.0-25-generic
Collection of snippets from here and there, kept for personal reference of course
sudo apt install --reinstall linux-generic
sudo apt install linux-modules-extra-6.11.0-25-generic
/etc/php/apache2/php.ini, search for the following variables and change/increase these to (as desired but a general guideline is mentioned):
memory_limit = 512M upload_max_filesize = 100M post_max_size = 100MSome more values to change if you want a better performance of your web server:
max_execution_time = 600 max_input_time = 600 memory_limit = 1024MSave and close the editor/file and restart the apache web server with:
service apache2 restartor
systemctl restart apache2
sudo nano /etc/environmentThen add the following line to the end of it.
ADW_DEBUG_COLOR_SCHEME=prefer-darkSave it and source it,
source /etc/environmentLogout and Login. Should libadwaita apps work in dark mode now.
Grafana has its own Tutorial for this but it's complex and intimidating for a beginner.
Here's my "easy way" of doing this.
Get Grafana scaffolding for plugin development with,
npx @grafana/create-plugin@latest
It will ask you a couple of questions before it populates the basic stuff you need to start.
Get to the folder it creates with the boilerplate code; and then run,
npm run buildto build your plugin. Then copy and paste the
distfolder to your plugins folder after renaming it with the following format
{company_name}-{plugin_id}-{plugin_type}. (On Linux/Ubuntu it is
/var/lib/grafana/plugins. Find out where it is on yours)
grafana.inifile to enable it for unsigned plugins.
app_mode = development
More details on allowing unsigned plugins can be found here.
sudo systemctl restart grafana-serverMake sure you sign the plugin before you publish or turn off the development mode.
ffmpeg
for i in *.mp4; do ffmpeg -i "$i" "${i%.*}.mp3"; doneChange parameters or file extensions as you need on the go.
for file in *.flac; do ffmpeg -i "$file" -ab 320k -map_metadata 0 -id3v2_version 3 "${file%.flac}.mp3"; done
"${i%.*}.mp3"and
"${file%.flac}.mp3do the same thing on bash
Host: Ubuntu 22.04
Guest: Windows 10
Issue: The Ctrl key works with the mouse scroll wheel on everything else but on Adobe products.
Solution: Try the right Alt (AltGr) key instead of the Ctrl key with the mouse scroll to zoom in/out.
Also check: If any utility software like HP Display Assistant or NVIDIA (any graphics-related utility software) is working in the background. Those may interfere with the said behaviour as other users have complained.
Source: https://community.adobe.com/