Mail us : boss@infotinks.com

infotinks

My Notes, Articles & Guides for Linux, Windows and Networking.

Menu

Skip to content
  • Contact
  • Volga Volga Massage 4 Utah Visitors
  • Donate
  • All Articles
  • Article Catalog
  • Info
  • Welcome

Category Archives: Linux

infotinks > Article Catalog > Linux
11Mar/21

Trick to recall “ln -s” symlink argument order

2021-03-11Linuxkossboss

I can never remember the order of arguments for the ln command (link command). The easiest way to think about it is to rethink of the “cp” (copy command) instead of “cpRead More…

Leave a comment
12Nov/20

Backup file[s] to Dropbox (without syncing)

2020-11-12Linuxkossboss

This github page, https://github.com/andreafabrizi/Dropbox-Uploader, has the dropbox-uploader tool which I use to backup content from servers (Linux, Mac, etc) without having to sync my Dropbox content to the local disk on yourRead More…

Leave a comment
09Nov/20

xargs parallel note to self

2020-11-09Linuxkossboss

Xargs is useful to run in parallel. Its parallel processing is very efficient. Read this post about its efficiency and this one about basic commands. Below, is my favorite way to runRead More…

View all 3 comments
23Oct/20

Python remove duplicates similar to bash uniq + sort

2020-10-23Linux, Programmingkossboss

# citing: https://www.reddit.com/r/Python/comments/jfx7wy/how_to_quickly_remove_duplicates_from_a_list/ # Let’s make some duplicates (one million numbers between 1 and 100) from random import randrange DUPLICATES = [ randrange(100) for _ in range(1_000_000) ] ### METHOD 1 ###Read More…

Leave a comment
26Jun/20

iostat service time (svctm) rule of thumb

2020-06-26Linuxkossboss

iostat service time is a very useful metric when analyzing disk performance and finding bottlenecks service time is essentially the inverse of IOPs so if an operation takes 1ms to service, thenRead More…

Leave a comment
18Jul/19

Bash convert seconds to human readable

2019-07-18BSD, Linuxkossboss

function displaytime { local T=$1 local D=$((T/60/60/24)) local H=$((T/60/60%24)) local M=$((T/60%60)) local S=$((T%60)) (( $D > 0 )) && printf ‘%d days ‘ $D (( $H > 0 )) && printf ‘%dRead More…

Leave a comment
28Apr/19

Wrong Port Connected Check With ifconfig

2019-04-28BSD, Linuxkossboss

We need to run ifconfig and look for the status line. Remember this about ifconfig output: * if “status: active“, the port is linked up and sending traffic (now you just needRead More…

Leave a comment
18Apr/19

Grepping Thru All Rotated Logs

2019-04-18BSD, Linuxkossboss

If your system gzips and rotates your logs. You can use this trick to search thru all of them. # zgrep -i — “SEARCHTERM” $(ls -1Str /var/log/messages*) Another way # zgrep -iRead More…

Leave a comment
27Apr/18

Find UPNP devices on your network – ex: ReadyDLNA or UPnP routers

2018-04-27Linux, Otherkossboss

Got info from here: https://stackoverflow.com/questions/18363833/how-can-i-list-upnp-server-renderer-in-command-line-console-mode-on-linux Get the Upnp test tools # apt-get install gupnp-tools Example 1: Find all Upnp devices (note their target names start with urn:…. It will hint at what service itRead More…

Leave a comment
24Jan/18

bash simple variable substitution

2018-01-24Linuxkossboss

You can use bash to do simple substitutions of variables, just like you can with sed. The bash trick turns out to take up less characters (bytes). Lets set some variable VAR1="thisRead More…

Leave a comment

Posts navigation

  • « Previous
  • 1
  • 2
  • 3
  • 4
  • …
  • 42
  • Next »

Popular Links

* COVID19 CORONAVIRUS DASHBOARD
A python powered covid19 dashboard. Stats are updated daily. Uses plotly for the plots. Can view normal scale plot or logarithmic scale plots. Github code available inside.

* RHOOD - ROBINHOOD PROFITS
A robin_stocks API powered python script that parses your Robinhood account to provide you with all information in a single text output. Mainly, it parses all of your orders and outputs sorted orders, open positions, informative profits, dividend information.

* XRAID/RAID CALCULATOR
Use this calculator to find final useable filesystem size of a RAID array. This calculator works for the ReadyNAS and ReadyDATA. Also for any ZFS volumes and any MDADM volumes: RAID0,1,10,50,60 with any number of vdevs (RAIDz3 not included).

* NETGEAR RAID CONFIGURATOR
While employed at Netgear, I wrote the logic behind this calculator. Netgear noticed the popularity of my XRAID/RAID calculator and asked me to help dev up the javascript logic.

* ALL GUITAR NOTES USING PYTHON
Python exercise showing how to graph all of the notes on a guitar. Shows the note of every fret of each string.

Users

  • Register
  • Log in
  • Entries feed
  • Comments feed
  • WordPress.org

Activity Calendar

February 2023
M T W T F S S
 12345
6789101112
13141516171819
20212223242526
2728  
« Dec    

Recent Posts

  • Full Path Json With Node.JS and Python 2022-12-09
  • Tmux Mouse Mode Support + Terminal Apps Support Across OS 2022-10-24
  • Colored Shell For Easier Reading With Lolcat 2022-09-02
  • Wifi Password Cracking On AWUS036ACS and QGOO 1750 Mbps on Ubuntu 2022-08-17
  • Bash Trick To Split on Null or Zero Byte 2022-08-14

Archives

  • December 2022 (1)
  • October 2022 (1)
  • September 2022 (1)
  • August 2022 (3)
  • July 2022 (2)
  • May 2022 (2)
  • March 2022 (3)
  • February 2022 (1)
  • May 2021 (1)
  • March 2021 (3)
  • December 2020 (1)
  • November 2020 (3)
  • October 2020 (2)
  • June 2020 (2)
  • March 2020 (1)
  • January 2020 (1)
  • December 2019 (1)
  • July 2019 (1)
  • April 2019 (4)
  • April 2018 (1)
  • January 2018 (1)
  • December 2017 (1)
  • November 2017 (1)
  • May 2017 (2)
  • October 2016 (1)
  • September 2016 (4)
  • August 2016 (3)
  • June 2016 (1)
  • May 2016 (4)
  • April 2016 (5)
  • March 2016 (8)
  • February 2016 (8)
  • January 2016 (8)
  • December 2015 (5)
  • November 2015 (3)
  • October 2015 (8)
  • September 2015 (14)
  • August 2015 (4)
  • July 2015 (5)
  • June 2015 (7)
  • May 2015 (9)
  • April 2015 (8)
  • March 2015 (12)
  • February 2015 (5)
  • January 2015 (6)
  • December 2014 (14)
  • November 2014 (9)
  • October 2014 (7)
  • September 2014 (4)
  • August 2014 (14)
  • July 2014 (10)
  • June 2014 (18)
  • May 2014 (29)
  • April 2014 (14)
  • March 2014 (6)
  • February 2014 (22)
  • January 2014 (226)

Categories

  • Linux
  • Linux and Windows
  • Windows
  • Netgear
  • Networking
  • Routing
  • Switching
  • VPN
  • Wireless
  • Programming
  • Web Developing
  • Other
  • Uncategorized

A work by: infotinks

-- PMA --
-- Frag Plots + Table --
-- Next Episode To Watch --

The greats say

"Life is like riding a bicycle. To keep your balance, you must keep moving" - Albert Einstein

Great Quotes

- "Tiny Miracles" a quote by Alex P.
- "Its not what you know that matters, but how you use what you already know." a quote by Unknown.

Donations are welcome

Donate Here

Copyright © infotinks
Powered by WordPress , Theme i-max by TemplatesNext.
MENU
  • Contact
  • Volga Volga Massage 4 Utah Visitors
  • Donate
  • All Articles
  • Article Catalog
  • Info
  • Welcome