LINUXOPOLIS # 19-JANUARY-2020 ~ HISTORYsteemCreated with Sketch.

in #linux5 years ago

LINUXOPOLIS

Building a Linux Habitat
willi glenz @ telegram
Published with SteemPeak
home ~ previous

screenshot by willi glenz

UPDATES

history ..................................................................... update 2020-01-19
disk-management ............................................................. update 2020-01-17
dns ......................................................................... update 2020-01-16
oneliner .................................................................... update 2020-01-15
apt system-update debian .............................................................. 2020-01
ramdisk ntp monitoring host-configuration vim-cheatsheet user-management networking ... 2020-01
i3 wm tasks check shortcuts ide arp system-editor sources packages tmux ............... 2019-12
apache fzf baseline host python pycharm swap glances veracrypt cpu .................... 2019-12
flatpak logging docker ................................................................ 2019-11
snap tiddlywiki raspi fail2ban tails firefox weather firmware ufw ..................... 2019-11
vim prompt aliases howto container languages taskwarior inxi git fish bash ............... 2019 
systemrescuecd snippets screen neofetch ranger hardening html java tutorials arch ........ 2019
2020
30logginglogging lnav logcheck2020-01
29textpandoc2020-01
28disksdisk-management veracrypt gnome-disks fdisk cfdisk hwinfo lshw dd df du mount umount badblocks baobab blkid lsblk mkfs.vfat parted pwd smartctl sync tune2fs2020-01
27distrossystemrescuecd arch tails mx-linux2020-01
26networkdns networking arp ntp fping mtr netstat nmap ping rsync speedtest2020-01
25bashoneliner bash aliases alias printenv shellcheck unalias2020-01
24clifish shortcuts zsh gnome-terminal awk echo exit expr terminator2020-01
23packagesapt packages flatpak dpkg dpkg-reconfigure tasksel2020-01
22languageslanguages java locales2020-01
21debiandebian system-update2020-01
20directorycd popd pushd tree2020-01
19memoryramdisk demidecode free vmstat2020-01
18tutorialstutorials2020-01
17serverapache docker hardening ssh virtualbox2020-01
16monitoringsntop tuptime check glances snort watch uptime bmon dmesg ntopng vnstat zabbix2020-01
15hosthost-configuration host inxi neofetch chkrootkit unattended-updates hostname ip cal ncal2020-01
14editorcheatsheet vim system-editor2020-01
13useruser-management diceware groups id last login pwgen sudo vigr vipw visudo whoami firefox tasks taskwarrior weather date ulauncher vit wall2020-01
2019
12wmi3wm2019-12
11securityfail2ban ufw ipfire ipcop iptables rkhunter wireshark
10pythonpython pycharm ide anaconda-navigator
09wikitiddlywiki
08tmuxcheatsheet
07rangerranger
06multimediacmus mpg123
05filescontainer fzf git
stat cat chown chmod cp curl file find grep head less ls ln md5sum mkdir mv ncdu rev rm rmdir sort tail tar touch tree type uniq whereis wc which
04usblsusb etcher
03i/obaseline
02processeslsof journalctl atop ctrl-z jobs bg fg htop kill killall pgrep pkill ps pstree renice top
01hardwareraspi
00sourcessources howto html prompt screen snap swap snippets update r

HISTORY

/dev/null        $ cat /dev/null > file.txt
/etc/passwd      $ cat /etc/passwd | cut -d: -f7 | sort | uniq -c | sort -nr
/etc/shells      $ cat /etc/shells
/proc/interrupts $ watch -d cat /proc/interrupts                             // interrupts
/proc/ioports    # cat /proc/ioports | less                                  // ioports
alias            $ alias ea='vim ~/.bash_aliases && source ~/.bash_aliases'
apropos          $ apropos password | less
apt              # apt install supertuxkart
arp-scan         # arp-scan --localnet | vim -
cat              $ cat > text.txt <<HERE
cups             # nc -z 127.0.0.1 631 && echo ok || echo failed
curl             $ curl cheat.sh/:list | less
curl             $ curl wttr.in
echo             $ echo "It is now $(date +%T) on $(date +%A)"
efibootmgr       # efibootmgr
find             # find / -size +4G 2> /dev/null | vim -
find             # find / -uid 1000 -exec chown -v 1002:1002 {} \;
find             # find / -user userxyz -type f -exec rm -f {} \;
find             # find /home -user userxyz -mtime -3
find             # find /home -user userxyz -size +1G
find             # find ~/Documents -type f -name "*.py" -print | tee ~/python_files.txt
find             $ find -size +100M | less
find             $ find -size +1G | less
find             $ find . -name "*.jpg" -exec convert {} -scale 50% +repage {} \;
find             $ find /etc -type f -print 2> /dev/null | less
find             $ find /etc/*tab -type f -print
find             $ find ~ -maxdepth 1 -type f -exec grep "^alias " '{}' \; -print
find             $ find ~ -maxdepth 1 -type f -mtime 3
firmware         # ls /sys/firmware/efi
free             # watch free -h
grub             # grub-install
history          $ history search --contains 'vim'
history          $ history | fzf
lsof             # lsof -u user | fzf
lsof             # lsof -u user | vim -
lspci            $ clear; lspci; echo; lspci -t; echo                        // pci
lsusb            $ clear; lsusb; echo; lsusb -t; echo                        // usb
mail             $ watch mail
memtester        # memtester 7G
mkdir            # mkdir -p /mnt/ram; mount -t tmpfs tmpfs /mnt/ram -o size=8192M
mkdir            $ mkdir -p Backups/{Sales,Development,HR}/{Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec}/{Sun,Mon,Tue,Wed,Thu,Fri,Sat}
mkdir            $ mkdir -p dummy/{1..100}/{1..100}
mount            $ mount | column -t
mpg123           $ mpg123 -zvC /home/user/music/*
nc               # nc -z 127.0.0.1 631 && echo ok || echo failed             // cups
nc               # nc -z 127.0.0.1 80 && echo ok || echo failed              // apache
netstat          # netstat -tulpn
ntpq             $ watch ntpq -p
pip              $ sudo -H pip install --upgrade youtube-dl
printenv         $ printenv | awk '/^PATH|HOME|USER|SHELL/ {print $0}'
ranger           $ ranger /etc/
ranger           $ ranger /usr/share/doc/
ranger           $ ranger ~/.local/share/Trash/
scp              $ scp -r folder/ [email protected]:~
scp              $ scp file.txt [email protected]:/home/pi/
scp              $ scp [email protected]:/home/pi/file.txt . 
systemctl        # systemctl status|restart|start|stop|enable|disable
systemctl        $ systemctl status apache2
tuptime          $ tuptime -t                                                // table
tuptime          $ watch tuptime
vim              $ vim $(fzf --height 40%)
vim              $ vim $(fzf -e --preview 'head -100 {}')
vim              > export EDITOR=vim 
vim              > export VISUAL=vim 
watch            $ watch -d -n 5 ls -l
whatis           $ whatis passwd


SOURCES
arch-linux ...................................................................... archlinux.org
debian ............................................................................. debian.org
mx-linux .......................................................................... mxlinux.org

picture .................................................. screenshoot by me ~ my gnome-desktop
Sort:  

Congratulations @wglenz! You have completed the following achievement on the Steem blockchain and have been rewarded with new badge(s) :

You published a post every day of the week

You can view your badges on your Steem Board and compare to others on the Steem Ranking
If you no longer want to receive notifications, reply to this comment with the word STOP

To support your work, I also upvoted your post!

You can upvote this notification to help all Steem users. Learn how here!

Coin Marketplace

STEEM 0.18
TRX 0.16
JST 0.029
BTC 62152.13
ETH 2441.74
USDT 1.00
SBD 2.65