User Tools

Site Tools


computing:miscadmin

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Next revisionBoth sides next revision
computing:miscadmin [2021/04/03 23:09] oemb1905computing:miscadmin [2022/02/23 17:34] oemb1905
Line 234: Line 234:
   du -ch -d 1 | sort -hr   du -ch -d 1 | sort -hr
  
- --- //[[jonathan@haacksnetworking.com|oemb1905]] 2021/04/03 17:09//+-check disk space with ncurses tool- 
 + 
 +  sudo apt install ncdu 
 +  ncdu 
 +   
 +-stop/start sleep of any form on servers- 
 + 
 +  sudo systemctl mask sleep.target suspend.target hibernate.target hybrid-sleep.target 
 +  sudo systemctl unmask sleep.target suspend.target hibernate.target hybrid-sleep.target 
 +   
 +-xorg with ssh 
 + 
 +  touch /root/.Xauthority  
 +  touch /home/user/.Xauthority 
 +   
 +-batch convert with ffmpeg to mp4 from mkv 
 + 
 +  for i in *.mkv; do 
 +  ffmpeg -i "$i" -codec copy "${i%.*}.mp4" 
 +  done 
 + 
 + --- //[[jonathan@haacksnetworking.org|oemb1905]] 2022/02/23 10:34//
computing/miscadmin.txt · Last modified: 2024/05/17 02:19 by oemb1905