Skip to content
September 22, 2023
Info Tech Brain

Info Tech Brain

Nothing serious… just getting thoughts out of my head

  • Automation
    • Programming
      • Open source
      • python
        • REST
  • Self-Improvement
    • GTD
  • Apple
    • Homepod
    • Pencil
    • IOS
    • Apple Watch
    • Mac Stuff
      • Mac Networking
  • How Tos
    • Blogging
      • wordpress
        • performance
  • Reviews
    • Software Reviews
  • Rants
    • Scams
  • Tech
    • Linux How To’s
      • VMs
    • Networking
      • VMware
        • NSX
      • Automation
      • Cisco
        • DCNM
        • POAP
      • Firewalls
      • Open source
      • Routing
      • Switching
    • google
    • security
      • encryption
    • VMware
    • NSX
Main Menu

Linux How Tos

GitHub / How to / How Tos / Linux How Tos / Mac Stuff

How to Git Clone a Specific Branch

August 2, 2019 - by Daniel Fredrick - Leave a Comment

While developing new code, it is always best practice to make a branch off of the Production, Development, or Test branch. Once this is done, you need to get those …

Let others know:

  • Click to share on Facebook (Opens in new window)
  • Click to share on Twitter (Opens in new window)
  • Click to share on Tumblr (Opens in new window)
  • Click to share on Pinterest (Opens in new window)
  • Click to share on WhatsApp (Opens in new window)
  • Click to email this to a friend (Opens in new window)
  • Click to share on LinkedIn (Opens in new window)
  • Click to share on Reddit (Opens in new window)
Read More
GitHub / Linux How Tos / Open source

How To Add Files To .gitignore

July 21, 2019 - by Daniel Fredrick - Leave a Comment

What Does .gitignore Do? A gitignore file specifies intentionally untracked files that Git should ignore. Files already tracked by Git are not affected; see the NOTES below for details. Each …

Let others know:

  • Click to share on Facebook (Opens in new window)
  • Click to share on Twitter (Opens in new window)
  • Click to share on Tumblr (Opens in new window)
  • Click to share on Pinterest (Opens in new window)
  • Click to share on WhatsApp (Opens in new window)
  • Click to email this to a friend (Opens in new window)
  • Click to share on LinkedIn (Opens in new window)
  • Click to share on Reddit (Opens in new window)
Read More
How to / How Tos / Linux How Tos / Networking / Tech

How To Enable SSH on Ubuntu via GUI

June 21, 2019 - by Daniel Fredrick - Leave a Comment

If you installed the GUI version of Ubuntu, SSH is disabled by default. You need to install it and enable some features. Possible Error Message When Installing SSH Server It …

Let others know:

  • Click to share on Facebook (Opens in new window)
  • Click to share on Twitter (Opens in new window)
  • Click to share on Tumblr (Opens in new window)
  • Click to share on Pinterest (Opens in new window)
  • Click to share on WhatsApp (Opens in new window)
  • Click to email this to a friend (Opens in new window)
  • Click to share on LinkedIn (Opens in new window)
  • Click to share on Reddit (Opens in new window)
Read More
API / Apple / How to / Mac Networking / Mac Stuff / Networking / NSX / security / Tech / VMs / VMware

Install PowerShell PowerCLI and PowerNSX on Apple MacOS

March 7, 2019March 8, 2019 - by Daniel Fredrick - Leave a Comment

Install Brew Install powershell via Brew If you do not have Brew installed you can follow the instructions on Brew’s Website Or…. open a terminal window on Mac Run: /usr/bin/ruby …

Let others know:

  • Click to share on Facebook (Opens in new window)
  • Click to share on Twitter (Opens in new window)
  • Click to share on Tumblr (Opens in new window)
  • Click to share on Pinterest (Opens in new window)
  • Click to share on WhatsApp (Opens in new window)
  • Click to email this to a friend (Opens in new window)
  • Click to share on LinkedIn (Opens in new window)
  • Click to share on Reddit (Opens in new window)
Read More
How to / How Tos / Linux How Tos / security

Linux SOCKS Proxy for SSH

November 9, 2018 - by Daniel Fredrick - Leave a Comment

How To Setup In one SSH session run: ssh -N -D 7080 username@server.foo.com If you SSH to localhost (IP Address 127.0.0.1) on port 7080, this command forwards that port/request to …

Let others know:

  • Click to share on Facebook (Opens in new window)
  • Click to share on Twitter (Opens in new window)
  • Click to share on Tumblr (Opens in new window)
  • Click to share on Pinterest (Opens in new window)
  • Click to share on WhatsApp (Opens in new window)
  • Click to email this to a friend (Opens in new window)
  • Click to share on LinkedIn (Opens in new window)
  • Click to share on Reddit (Opens in new window)
Read More
API / Automation / encryption / How Tos / Linux How Tos / Programming / python / security

Installing Thycotic SDK Client TSS on Linux

November 7, 2018 - by Daniel Fredrick - 2 Comments.

What is Thycotic TSS? The SDK CLI application allows the host to retrieve following after initialization without the need of storing any passwords locally on the host. Tokens Secrets Secret …

Let others know:

  • Click to share on Facebook (Opens in new window)
  • Click to share on Twitter (Opens in new window)
  • Click to share on Tumblr (Opens in new window)
  • Click to share on Pinterest (Opens in new window)
  • Click to share on WhatsApp (Opens in new window)
  • Click to email this to a friend (Opens in new window)
  • Click to share on LinkedIn (Opens in new window)
  • Click to share on Reddit (Opens in new window)
Read More
How to / Linux How Tos

Linux: How to Delete All Files from Recently Unzipped

November 4, 2018November 4, 2018 - by Daniel Fredrick - Leave a Comment

Let’s say that you just unzipped files from a folder and you forgot to specify a destination directory. Now you have your home folder fully of thousands of new files. …

Let others know:

  • Click to share on Facebook (Opens in new window)
  • Click to share on Twitter (Opens in new window)
  • Click to share on Tumblr (Opens in new window)
  • Click to share on Pinterest (Opens in new window)
  • Click to share on WhatsApp (Opens in new window)
  • Click to email this to a friend (Opens in new window)
  • Click to share on LinkedIn (Opens in new window)
  • Click to share on Reddit (Opens in new window)
Read More
Automation / How to / How Tos / Linux How Tos

Linux: How to Delete Files Older than Number of Days

November 1, 2018November 4, 2018 - by Daniel Fredrick - Leave a Comment

Let’s say that you have a requirement to only keep 90 days worth of files for one or more reasons: Compliance for ISO 27000 Reduce the amount of disk space …

Let others know:

  • Click to share on Facebook (Opens in new window)
  • Click to share on Twitter (Opens in new window)
  • Click to share on Tumblr (Opens in new window)
  • Click to share on Pinterest (Opens in new window)
  • Click to share on WhatsApp (Opens in new window)
  • Click to email this to a friend (Opens in new window)
  • Click to share on LinkedIn (Opens in new window)
  • Click to share on Reddit (Opens in new window)
Read More
Apple / GitHub / Linux How Tos / python

Create a GitHub Repository and Upload Files To It

September 20, 2018November 4, 2018 - by Daniel Fredrick - Leave a Comment

Create a GitHub Repository Login or Create an Account with GitHub Click ‘Start a Project’ Choose a name that is not used. The box will display a green check box …

Let others know:

  • Click to share on Facebook (Opens in new window)
  • Click to share on Twitter (Opens in new window)
  • Click to share on Tumblr (Opens in new window)
  • Click to share on Pinterest (Opens in new window)
  • Click to share on WhatsApp (Opens in new window)
  • Click to email this to a friend (Opens in new window)
  • Click to share on LinkedIn (Opens in new window)
  • Click to share on Reddit (Opens in new window)
Read More
Linux How Tos

Proxy Settings In Red Hat Enterprise Linux Server release 7.x

September 6, 2018September 7, 2018 - by Daniel Fredrick - Leave a Comment

I am trying to get the system to use a proxy for some things and not for other things. Requirements Use proxy for Internet websites Don’t use proxy for Intranet …

Let others know:

  • Click to share on Facebook (Opens in new window)
  • Click to share on Twitter (Opens in new window)
  • Click to share on Tumblr (Opens in new window)
  • Click to share on Pinterest (Opens in new window)
  • Click to share on WhatsApp (Opens in new window)
  • Click to email this to a friend (Opens in new window)
  • Click to share on LinkedIn (Opens in new window)
  • Click to share on Reddit (Opens in new window)
Read More

Posts navigation

1 2 Next

Top Posts & Pages

  • Most Common Issue With Broken Yard Inflatable
    Most Common Issue With Broken Yard Inflatable
  • Troubleshooting Cisco “FEX Fabric Up to Identity-Mismatch” Message
    Troubleshooting Cisco “FEX Fabric Up to Identity-Mismatch” Message
  • Installing Thycotic SDK Client TSS on Linux
    Installing Thycotic SDK Client TSS on Linux
  • How To Enable SSH on Ubuntu via GUI
    How To Enable SSH on Ubuntu via GUI
  • Tiny Linux VM OVA
    Tiny Linux VM OVA
  • Thycotic Python API
    Thycotic Python API
  • Apple Watch Swiping Left Right Up or Down Not Working - The Real Fix
    Apple Watch Swiping Left Right Up or Down Not Working - The Real Fix
  • Apple Pencil Not Working - Bent or Damaged Tip
    Apple Pencil Not Working - Bent or Damaged Tip
  • Thycotic Python REST API - Create New Secret
    Thycotic Python REST API - Create New Secret
  • Wordpress Images - Soft Versus (Vs) Hard Crop
    Wordpress Images - Soft Versus (Vs) Hard Crop

About the infotechbrain... We (I) are: a technology enthusiast, programmer, Network Engineer CCIE# 17094, and much more...

Copyright © 2023 Info Tech Brain.
Powered by WordPress and HitMag.
loading Cancel
Post was not sent - check your email addresses!
Email check failed, please try again
Sorry, your blog cannot share posts by email.