Skip to content

🔐 Karlo Luiten

Think Evil, DO Good

🔐 Karlo Luiten

Think Evil, DO Good

  • Home
  • About me
    • About me
    • LinkedIn
    • Guide to Karlo
  • SELinux cheat sheet
  • CISSP Reference
  • Contact
    • Home
    • 2020
    • June
Uncategorized

Convert m4b to mp3 on Centos/Fedora using ffmpeg

karlo Jun 29, 2020 0 Comments

for m4b in *.m4b; do ffmpeg -i $m4b -acodec libmp3lame -ar 22050 ${m4b}.mp3; done

CLI and tools

Bash remove spaces from file names

karlo Jun 4, 2020 0 Comments

find . -depth -name '* *' \ | while IFS= read -r f ; do mv -i "$f" "$(dirname "$f")/$(basename "$f"|tr ' ' _)" ; done

Uncategorized

AWK print longest line in file

karlo Jun 3, 2020 0 Comments

awk '{ if (length($0) > max) {max = length($0); maxline = $0} } END { print maxline }' YOURFILE

Posts

  • Nextcloud / php / apache no error for Internal Server Error March 19, 2023
  • Proxmox LXC container disk shrink March 19, 2023
  • Friendly (ionice/nice) rsync on remote server March 17, 2023
  • LVM commands not found March 17, 2023
  • T-Mobile Thuis werkende SMTP 2023 (Fix Relay access denied) March 14, 2023
  • Upgrade to debian11 from 10 March 10, 2023
  • Simple SSH backup of routeros / mikrotik March 8, 2023
  • Proxmox VLANs ‘on a stick’ March 7, 2023
  • T-Mobile thuis (NL) Routeros/Mikrotik-configuratie (met VLANs) March 3, 2023
  • Mikrotik routeros various findings February 26, 2023
  • jq unix timestamp to datetime January 11, 2023
  • Bash script template October 28, 2022
  • Hash file in windows October 6, 2022
  • Fix: acosh defined in both go and assembly August 4, 2022
  • Indent HTML using tidy June 20, 2022
  • Github what repos have you contributed to (graphql) May 16, 2022
  • Debian VM as GW routing through VPN (tun) with nftables April 7, 2022
  • Guacamole broken (Creation of WebSocket tunnel to guacd failed) January 24, 2022
  • mount LVM2_member September 4, 2021
  • List all ansible facts (facter puppet) February 21, 2021

Meta

  • Log in
  • Entries feed
  • Comments feed
  • WordPress.org

Posts

Uncategorized

Nextcloud / php / apache no error for Internal Server Error

Proxmox

Proxmox LXC container disk shrink

CLI and tools Linux

Friendly (ionice/nice) rsync on remote server

Debian

LVM commands not found

🔐 Karlo Luiten

Think Evil, DO Good

Copyright © All rights reserved | Blogus by Themeansar.