Category: Tutorials

  • Axel, the Accelerated Wget

    When downloading large files in Linux, wget gets the job done but isn’t very fast. When speed is of the issue, a multi-connection tool is needed. That is where axel, a simple command-line based download accelerator, comes in. Axel is as easy to use as wget, it may not have the advanced features such as…

  • Mount FTP-servers using CurlFTPFS in Linux

    Allot of us server/website administrators use FTP to quickly upload new files and changes to the server. But when you are tinkering with something on the server, and you quickly want to see the effect. It can be quite hectic when you have to login, upload changes and check several times. Especially when the FTP…

  • Tunnel HTTP traffic encrypted, using Polipo and SSH

    SSH can be used to do allot of great things. Login remotely, transfer files with scp and run single commands for a quick fix. All encrypted! Another great and well-known feature of SSH is SSH tunnelling. SSH tunneling can be used to tunnel any kind of traffic, and in this guide I’ll focus on HTTP…

  • How to secretly follow someone on Instagram using RSS

    The willingness of Social Media users to share personal information today, is a stalkers dream. There is no art in viewing a Instagram feed anonymously, but grabbing updates, comments and likes without the user knowing. Requires a little clever use free services and RSS-feeds. Note that in order for this to work, the Instagram user MUST…

  • How To: Send and receive files with Ncat (formerly NetCat)

    As with any application in Linux, piping the output from an application to a logfile or perhaps another application. Can sometimes clarify what is going on. It would be even better if you could “cat” any output over the Network (Ncat, get it?) to another computer. That is where Ncat comes in. First, some basics…