Help out: share this site!

Latest FOSSCasts screencasts

SSH Tunneling (aka port forwarding)

Fosscasts - 2010-02-05 - free

SSH is a great tool and allows for more than just logging into a remote machine. SSH allows you to forward a port so TCP/IP traffic can travel safelythrough SSH. Not only is this secure, but it allows you to do many things - like get around firewalls. In this... Watch this screencast


Bonus! Viewer Questions

Fosscasts - 2010-02-01 - free

I wanted to take some time and answer some of the most frequent questions I get from viewers - and let you put a face to the voice you hear every week! Note: The files are a bit larger than usual - compressing a mostly static desktop or terminal is... Watch this screencast


Redirecting Standard Output and Input

Fosscasts - 2010-01-29 - free

Sometimes it is useful to have what would normally be output to the screen output to a textfile or even elsewhere. Luckily, this is trivial in a POSIX operating system. In this episode you'll learn how to redirect Standard Output into more than just textfiles and how this can be... Watch this screencast


Git for Non Programmers

Fosscasts - 2010-01-22 - free

Git has won the hearts of many programmers in recent years making it their version control system of choice. But, Git can be used by everyday users to keep configuration files or anything else that may change over time in version control. In this episode we'll go through Git boot... Watch this screencast


Low Level Data Copying with dd

Fosscasts - 2010-01-15 - free

If you need to copy data, byte for byte, you use dd. dd can do many great things like copying a hard disk to another disk, making .iso's of CDs or DVDs, and making backup images of data. Further, dd can zero out a drive, create files with random data,... Watch this screencast


Using the Mutt Email Client With Gmail

Fosscasts - 2010-01-08 - free

Mutt is a great text-based email client I've been using recently. Mutt is very simple to use but still highly configurable. In this episode we will configure Mutt to use Gmail's IMAP interface to retrieve our email from Gmail. Check out the Mutt Wiki for lots of great info and... Watch this screencast


Substitution with GNU Sed

Fosscasts - 2009-12-31 - free

GNU sed(stream editor) is a great little utility. In this episode we use substitution to preform find and replace operations on a text file. Sed also allows regular expression matching for advanced substitution. Watch this screencast


Hello Zsh! Part 2

Fosscasts - 2009-12-26 - free

In the second half of our 2 part series on Zsh, we look at globbing and using Zsh's qualifiers. This can be combined with the completion from episode 16 for some super powerful shell bliss. Watch this screencast


Hello Zsh! Part 1

Fosscasts - 2009-12-18 - free

Zsh is a great alternative to Bash and other Unix shells. It has programmable completion, paging, and many other great features. We'll take a good look at paging and the completion that Zsh offers in this episode and explore more in the next episode. As mentioned in the episode, the... Watch this screencast


Power Searching with Ack

Fosscasts - 2009-12-11 - free

Most Linux/Unix users are familiar with Grep, but for many situations Ack does a better and faster job. Ack is smart enough to skip version control files and directories, temp files, can exclude or include certain file types, and use powerful regular expression when searching. Watch this screencast