TISKBAF
  • šŸ–„ļøLinux OS
    • Useful Linux commands
    • To get a list of the dependencies of a package
    • Reset a Forgotten Root Password
    • How to Kill a Port in Linux
    • How to Install/Reinstall Linux GRUB Menu
    • Concatenate mp4 files using FFmpeg
    • Command to stop mirroring screens
    • Command to Run when Trash Won’t Empty
    • Prey Configuration Command (via Terminal)
    • Prey Configuration Command (via Terminal)
  • šŸ–„ļøWindows OS
    • Custom Profile Badges
      • badge-maker
      • shields.io - static badges
    • How to kill a task via terminal on Windows
    • Find and terminate a Windows Process by Port
    • The Complete List of Command Prompt (CMD) Commands
    • youtube-dl Usage
    • WSA/Google Play Services Reference Information
    • Windows Update Blocker (Windows Services Blocker)
    • Windows 11 Shell commands with friendly names
    • Wifi not automatically connecting on start-up when Ethernet is connected
    • To install many APK files at once
    • To get Firefox to remember logged in accounts
    • Spicetify Commands
    • Speech Recognition Commands
    • Simpletask [Simple] Documentation
    • Sideload Apps in Windows Subsystem for Android from APK Files
    • SetUserFTA Utility
    • Screensaver not starting even though it is configured correctly
    • Run Keys Registry Location
    • Rainmeter Config Definitions
    • Pushover
    • Program Folder Locations
    • Add an exclusion to Windows Security (or just turn off real-time protection)
    • Reddit RSS Feeds
    • Portainer on Windows
    • PGP: Encrypt & sign emails in a few clicks
    • Permanently Remove OneDrive from Windows
    • IRC NickServ Commands (full list)
    • Convert a P12/PFX Certificate to a .CER
    • How to embed in HTML
    • Misc. Windows Information
    • Issues with missing icons in Windows
    • Information on ā€˜scoop’ package manager for Windows
    • DISMTools Docs
    • Creating Python Virtual Environment in Windows and Linux
    • Using XnConvert to bulk convert image sizes
    • How to Merge Multiple Text Files using different methods in Windows
    • How to use OLLAMA_ORIGINS in Windows
    • To permanently turn off Windows Security and Windows Defender1
    • Enabling the disabled sounds in Windows
    • Enable classic right-click context menu on Windows 11
    • How to Convert Kindle Books (.awz/.awz3) to Other E-book Formats
    • How to Create Symbolic Links with mklink
    • APIMyLlama Commands
  • šŸ¬[Graphic] Design
    • Create a Realistic Shadow for Objects in GIMP (video)
    • How to Add Outer Glow Effects in GIMP
    • How to Curve Text In GIMP
    • Rounded corners in GIMP (video)
    • WORD CLOUD TEXT PORTRAIT EFFECT IN PHOTOSHOP (video)
    • BROKEN 3D TEXT EFFECT | PHOTOSHOP (video)
    • Type on a path in Photoshop
    • Nudify Guide (Stable Diffusion)
  • šŸ’»Coding & Developing
    • APIMyLlama V2
      • APIMyLlama Source: Github
    • Insert Back button on a webpage
    • How to have a web page refresh automatically
    • AstroPaper Blog Theme
      • How to configure AstroPaper theme - Blog
      • Adding new posts in AstroPaper theme
    • How to generate Django SECRET_KEY
  • šŸ“’Everything else
    • RSS Feed in your Notion Pages
    • 12 Firefox Hidden Settings You Should Check Out
    • ADB (almost) Full Commands List
    • How to pair your Wear OS smartwatch with a new phone
    • How to reset Cync by GE smart lights
    • IRC Servers & Channels Info
    • Internxt CLI commands and usage
    • Call Forwarding on mobile device
    • Obsidian Templater plugin
    • Exportify Documentation
    • KLLOQUE K10 B Ball Lock User Manual
    • How to delete bloatware from Android device
Powered by GitBook
On this page
  • Start Bluetooth if not already started
  • Restart Bluetooth
  • Start snap if it isnt already started
  • ā€œsnap-confine has elevated permissions and is not confined but should be. Refusing to continue to avoid permission escalation attacksā€ Error
  • ā€œcannot change profile for the next exec call: No such file or directory
  • snap-update-ns failed with code 1ā€ Error
  • To temp. start Anbox run the following from terminal
  • To enable syncthing type the following command replacing username with your actual username:
  • To get Drive information
  • To load the kernel module v4l2loopback.ko
  • Using ā€˜rename’ command to change the file extensions of many files at once
  • Reload Font Cache
  1. Linux OS

Useful Linux commands

Start Bluetooth if not already started

sudo service bluetooth start
sudo systemctl enable bluetooth
sudo systemctl status bluetooth

sudo /etc/init.d/bluetooth start

Restart Bluetooth

sudo systemctl daemon-reload
sudo systemctl restart bluetooth

Start snap if it isnt already started

service snapd start
sudo systemctl start snapd.service

ā€œsnap-confine has elevated permissions and is not confined but should be. Refusing to continue to avoid permission escalation attacksā€ Error

sudo apparmor_parser -r /etc/apparmor.d/*snap-confine*
sudo apparmor_parser -r /var/lib/snapd/apparmor/profiles/snap-confine*

ā€œcannot change profile for the next exec call: No such file or directory

snap-update-ns failed with code 1ā€ Error

⁠sudo apparmor_parser -r /var/lib/snapd/apparmor/profiles/*⁠⁠

To temp. start Anbox run the following from terminal

EGL_PLATFORM=x11 anbox.appmgr


To enable syncthing type the following command replacing username with your actual username:

sudo systemctl enable syncthing@neocube.service


To get Drive information

Used, free, & total size

df -H /mnt/SP-LIBRARY


To load the kernel module v4l2loopback.ko

sudo modprobe -v v4l2loopback


Using ā€˜rename’ command to change the file extensions of many files at once

For example to change all of the files with the JFIF extension to the JPG extension you would use the following:

rename 's/\\.jfif$/.jpg/' *.jfif


Reload Font Cache

sudo fc-cache -fv

PreviousLinux OSNextTo get a list of the dependencies of a package

Last updated 10 months ago

šŸ–„ļø