Category: Tricks

  • 16 Cool Ass Random Linux Stuff

    $ echo “Hello world” Hello world Urfix has compiled a sweet ass list of random stuff you can do from the command line. Hope you enjoy. Fry: Make up some feelings and tell her you have them. 1 Multiple variable assignments from command output in BASH read day month year <<< $(date +’%d %m %y’)…

  • Network Basics – Open Systems Interconnection

    A network is a communication system that helps computers interact with each other. To enable this interaction, certain rules must be followed. These rules are known as protocol.

  • Top 10 Awesome Linux Screen Tricks

    Screen or as I like to refer to it “Admin’s little helper” Screen is a window manager that multiplexes a physical terminal between several processes here are a couple quick reasons you’d might use screen Lets say you have a unreliable internet connection you can use screen and if you get knocked out from your…

  • Create A File And Loop It As A Filesystem in Linux

    Create A File And Loop It As A Filesystem in Linux Associating file systems to storage devices in Linux is called mounting. The mount command is used to attach a file system to a file system hierarchy. To mount, you provide a file system type, a file system, and a mount point. To demonstrate the capabilities of…