Linux/Snippets: Difference between revisions

From Wiki
No edit summary
(15 intermediate revisions by the same user not shown)
Line 1: Line 1:
== Hardware ==
== Hardware ==
* Motherboard  
* Motherboard  
<blockquote>
<pre>
<pre>
dmidecode -t 2
dmidecode -t 2
</pre>
</pre>
</blockquote>
* HDD
<blockquote>
<pre>
fdisk -l
lsblk
smartctl -a /dev/sda
lshw -c disk
</pre>
</blockquote>


== File system & drives ==
== Packages ==  
List directory sizes
List packages by size
<blockquote>
<pre>
dpkg-query --show --showformat='${Package;-50}\t${Installed-Size} ${Status}\n' | sort -k 2 -n | grep -v deinstall
</pre>
</blockquote>
 
Sum of all installed packages
<blockquote>
<pre>
dpkg-query --show --showformat='${Package;-50}\t${Installed-Size} ${Status}\n' | sort -k 2 -n | grep -v deinstall | awk '{s+=$2} END {printf "%.0f\n", s}'
</pre>
</blockquote>
 
remove old kernels
<blockquote>
<blockquote>
<pre>
<pre>
clear;  for each in $(ls) ; do du -hs "$each" ; done
dpkg -l linux-* | awk '/^ii/{ print $2}' | grep -v -e `uname -r | cut -f1,2 -d"-"` | grep -e [0-9] | xargs sudo apt-get --dry-run remove
</pre>
</pre>
</blockquote>
</blockquote>


purge all removed packages
<blockquote>
<pre>
dpkg --list | grep "^rc" | cut -d " " -f 3 | xargs sudo dpkg --purge
</pre>
</blockquote>


== Processes ==
Measure execution time
Measure execution time
<blockquote>
<blockquote>
Line 24: Line 56:
</blockquote>
</blockquote>


== Files / Directories ==
Current script dir
<blockquote>
<pre>
currentpath=$(dirname "$0")
cd $currentpath
</pre>
</blockquote>
List directory sizes
<blockquote>
<pre>
clear;  for each in $(ls) ; do du -hs "$each" ; done
clear;  for each in $(ls) ; do du -hs "$each" ; done | sort -hr
</pre>
</blockquote>


find file with content
find file with content
Line 48: Line 99:
</blockquote>
</blockquote>


rename directories with spaces to underlines
<blockquote>
<pre>
find -name "* *" -type d | rename 's/ /_/g'
</pre>
</blockquote>


 
== HDD & SSD ==
 
 
show hdd power states
show hdd power states
<blockquote>
<blockquote>
Line 72: Line 127:
</pre>
</pre>
</blockquote>
</blockquote>


Manual SSD Trim
Manual SSD Trim
Line 139: Line 192:
</blockquote>
</blockquote>


== kernel ==
Format ext4 with disabled lazy init
remove old kernels
<blockquote>
<blockquote>
<pre>
<pre>
dpkg -l linux-* | awk '/^ii/{ print $2}' | grep -v -e `uname -r | cut -f1,2 -d"-"` | grep -e [0-9] | xargs sudo apt-get --dry-run remove
mkfs.ext4 -E lazy_itable_init=0,lazy_journal_init=0 /dev/sda1
</pre>
</pre>
</blockquote>
</blockquote>
[[Category:Linux/Bash]]
[[Category:Linux/Bash]]
[[Category:Linux]]

Revision as of 17:37, 4 August 2020

Hardware

  • Motherboard
dmidecode -t 2
  • HDD
fdisk -l
lsblk
smartctl -a /dev/sda
lshw -c disk

Packages

List packages by size

dpkg-query --show --showformat='${Package;-50}\t${Installed-Size} ${Status}\n' | sort -k 2 -n | grep -v deinstall

Sum of all installed packages

dpkg-query --show --showformat='${Package;-50}\t${Installed-Size} ${Status}\n' | sort -k 2 -n | grep -v deinstall | awk '{s+=$2} END {printf "%.0f\n", s}'

remove old kernels

dpkg -l linux-* | awk '/^ii/{ print $2}' | grep -v -e `uname -r | cut -f1,2 -d"-"` | grep -e [0-9] | xargs sudo apt-get --dry-run remove

purge all removed packages

dpkg --list | grep "^rc" | cut -d " " -f 3 | xargs sudo dpkg --purge

Processes

Measure execution time

START=$(date +%s.%N)
command
END=$(date +%s.%N)
DIFF=$(echo "$END - $START" | bc)


Files / Directories

Current script dir

currentpath=$(dirname "$0")
cd $currentpath


List directory sizes

clear;   for each in $(ls) ; do du -hs "$each" ; done

clear;   for each in $(ls) ; do du -hs "$each" ; done | sort -hr

find file with content

grep -iR "$PATTERN" *

find top 10 biggest files

du -hsx * | sort -rh | head -10

clear file content

echo "" > filename
or
for i in *; do cat /dev/null > $i; done

rename directories with spaces to underlines

find -name "* *" -type d | rename 's/ /_/g'

HDD & SSD

show hdd power states

sudo hdparm -C /dev/sd?

show SMART data

sudo smartctl -a /dev/sd?

check for bad sectors

fsck.ext4 -cDfty -C 0 /dev/sdxx

Manual SSD Trim

sudo fstrim -v /   


Cron SSD Trim

/etc/scripts/fstrim.sh:
#!/bin/sh
#
echo `date +"%d %b %H:%M:%S"` | tr -d '\n' >> /var/log/fstrim
/sbin/fstrim -v / >> /var/log/fstrim
/etc/cron.d/fstrim:
#
0 * * * * root /etc/scripts/fstrim.sh

delete folder by folder until enough free space (1G)

cd /srv/motion
while [ `df | grep /dev/root | awk '{print $4}'` -lt 1000000 ]; do
ls -r | tail -1 | xargs rm -r
sleep 5
done

Shutdown if HDD idle

UPTIME=$(cat /proc/uptime | cut -d ' ' -f 1 | cut -d '.' -f 1)

if [ "$UPTIME" -lt "600" ]
  then exit
fi

lastSDB=$(cat /proc/diskstats | grep "sdb " | tr -s ' ' | cut -d ' ' -f 14 )
lastSDC=$(cat /proc/diskstats | grep "sdc " | tr -s ' ' | cut -d ' ' -f 14 )
lastSDD=$(cat /proc/diskstats | grep "sdd " | tr -s ' ' | cut -d ' ' -f 14 )

sleep 120

newSDB=$(cat /proc/diskstats | grep "sdb " | tr -s ' ' | cut -d ' ' -f 14 )
newSDC=$(cat /proc/diskstats | grep "sdc " | tr -s ' ' | cut -d ' ' -f 14 )
newSDD=$(cat /proc/diskstats | grep "sdd " | tr -s ' ' | cut -d ' ' -f 14 )

if [ "$lastSDB" = "$newSDB" ] && [ "$lastSDC" = "$newSDC" ] && [ "$lastSDD" = "$newSDD" ]
   then /sbin/shutdown -h now
   else echo "changes!!"
fi

Format ext4 with disabled lazy init

mkfs.ext4 -E lazy_itable_init=0,lazy_journal_init=0 /dev/sda1