Skip to content
View Zobber's full-sized avatar
🎯
Focusing
🎯
Focusing
  • Universidad Nacional Abierta y a Distancia
  • Colombia
  • 17:49 - 5h behind

Highlights

  • Pro

Block or report Zobber

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. TrueNAS Active Directory (AD) and mo...
    1
    ## Check information about the AD
    2
    
                  
    3
    net ads info join status workgroup gpo dns user
    4
    
                  
    5
    
                  
  2. Linux Commands 2
    1
    # Top ten (or whatever) memory utilizing processes (with children aggregate) - Can be done without the multi-dimensional array
    2
    ps axo rss,comm,pid | awk '{ proc_list[$2] += $1; } END { for (proc in proc_list) { printf("%d\t%s\n", proc_list[proc],proc); }}' | sort -n | tail -n 10
    3
    # Download last file from index of
    4
    NAME=`wget --quiet URL -O - | grep util-vserver | tail -n 1 | sed 's|</a>.*||;s/.*>//'`; wget URL$UTILVSERVER;
    5
    # Delete newline
  3. Linux Commands 1
    1
    # Run the last command as root
    2
    sudo !!
    3
    # Serve current directory tree at http://$HOSTNAME:8000/
    4
    python -m SimpleHTTPServer
    5
    # Save a file you edited in vim without the needed permissions