Linux

From Federal Burro of Information
Revision as of 16:26, 30 March 2019 by David (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

Password Policy

Password policy

media:password_policy.vsd

Desktop

Linux does desktops?

Lsmods , only the loaded ones

/sbin/lsmod | awk '$3 > 0 {print $0}'

Set a random image for a directory

#!/bin/sh

set -- /data/pictures/misc/*
length=$#
random_num=$(( $RANDOM % ($length + 1) ))
echo fbsetbg ${!random_num}
fbsetbg ${!random_num}

back up super block

mke2fs -n /dev/sdc1


Also See