Skip to content

rkoten/.dotfiles

Repository files navigation

rkoten's Linux readme

Basics

Iterate over files in a directory

for file in *; do
  if [ -f "$file" ]; then  # Skip to include directories
    echo "$file"
  fi
done

List file permissions

ls -ld

  • {read, write, execute} by {user, group, other}
  • Read=4, Write=2, Execute=1; combination=sum.

Hex dump

xxd (best piped through less).

Mount NTFS drives

  1. lsblk -f lists available filesystems.
  2. udisksctl mount -b /dev/X mounts specified block device.

NixOS note: make sure "ntfs" is listed under boot.supportedFilesystems in OS config.

Initial setup

Dual boot with Windows

Fix Windows timezone:

timedatectl set-local-rtc 1

Disabling Ubuntu update notifications

  • (?) sudo chmod 000 /usr/bin/update-manager
  • sudo chmod 000 /usr/bin/update-notifier
  • Reboot

Networking

Network fileshare

  1. sudo apt install samba smbclient
    [for Ubuntu/Nautilus] sudo apt install nautilus-share
    
  2. Grant firewall permissions.
    sudo ufw allow 'Samba'
    
  3. Create a network password for your user.
    sudo smbpasswd -a <username>
    
  4. Reboot.
  5. (Optional) Verify SMB service is running.
    systemctl status smbd
    
  6. Access via smb://<ip-address> and use the full username@hostname combination as username when connecting.

Check active network interface

route -n get <any-ip> | grep interface
# e.g.
route -n get 1.1.1.1 | grep interface

Utils

  • GRUB Customizer is a GUI for GRUB configuration.
    sudo add-apt-repository ppa:danielrichter2007/grub-customizer
    sudo apt install grub-customizer
    

Gnome

Extensions

  • Grand Theft Focus brings popup windows to focus instead of "is ready" notification.

ffmpeg

Reencode voice recording in Opus

Assume 24k output bitrate.

ffmpeg -i <audio-input> -c:a libopus -b:a 24k -ar 24k -ac 1 -application voip <audio-output.ogg>

Reencode video with rendered subtitles

Assume 1920x1080 output res, Avenir font @ size 16.

ffmpeg -i <video-input> -vf "scale=1920:1080:flags=lanczos:force_original_aspect_ratio=decrease,pad=1920:1080:(ow-iw)/2:(oh-ih)/2,subtitles=<subtitle-input>:force_style='Fontname=Avenir,Fontsize=16'" -ss <start timestamp hh:mm:ss> -t <duration hh:mm:ss> <video-output>

raspbian

raspi-config

TODO

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published