Menu

Tree [ca3edb] master /
 History

HTTPS access


File Date Author Commit
 fizsh-dev 2014-07-14 Guido van Steen Guido van Steen [ca3edb] modified the order of Build-Depends in ./debian...
 README 2014-07-14 Guido van Steen Guido van Steen [9d5a3d] updated ../README and ../README.md to version 1...
 README.md 2014-07-14 Guido van Steen Guido van Steen [9d5a3d] updated ../README and ../README.md to version 1...

Read Me

*** For those using a Debian-based distribution, such as Ubuntu, there is a ".deb" archive file available:

user@localmachine$ wget --no-check-certificate --output-document=fizsh_1.0.7-1_all.deb "https://downloads.sourceforge.net/project/fizsh/fizsh_1.0.7-1_all.deb"

The ".deb" archive can be installed by dpkg:

user@localmachine$ sudo dpkg -i fizsh_1.0.7-1_all.deb
user@localmachine$ fizsh
Welcome to fizsh, the friendly interactive zshell
Type man fizsh for instructions on how to use fizsh
user@localmachine current-directory>

*** People on RPM-based systems may try:

user@localmachine$ wget --no-check-certificate --output-document=fizsh-1.0.7-1.noarch.rpm "https://downloads.sourceforge.net/project/fizsh/fizsh-1.0.7-1.noarch.rpm"
user@localmachine$ sudo rpm -Uhv fizsh-1.0.7-1.noarch.rpm
user@localmachine$ fizsh
Welcome to fizsh, the friendly interactive zshell
Type man fizsh for instructions on how to use fizsh
user@localmachine current-directory>

*** Those on other systems have to use the tarball:

user@localmachine$ wget --no-check-certificate --output-document=fizsh-1.0.7.tar.gz "https://downloads.sourceforge.net/project/fizsh/fizsh-1.0.7.tar.gz"

Extract it:

user@localmachine$ tar -xvzf fizsh-1.0.7.tar.gz

Change directory:

user@localmachine$ cd fizsh-1.0.7

Configure and install:

user@localmachine$ ./configure && make && sudo make install

Or if you do not have access to a privileged account you may install fizsh in your home directory:

user@localmachine$ export PATH=$PATH:$HOME/bin && ./configure --prefix=$HOME && make && make install