#!/bin/sh
# Script to install mailcatcher on Debian/Ubuntu without RVM
# install Ruby and rubygems without RVM:
sudo apt-get install ruby rubygems
# update rubygems
sudo gem update --system
# install mailcatcher:
sudo apt-get install libsqlite3-dev
sudo gem install mailcatcher
# done! to start the mailcatcher server
mailcatcher -i 0.0.0.0
# if mailcatcher cannot be found, gem is not in your path;
# add the path found by the following command to `.bashrc` or similar, and
# reload (`source .bashrc`)
gem environment | grep "EXECUTABLE DIRECTORY"
# then just use the following SMTP settings:
# host : localhost
# port : 1025
# and visit http://0.0.0.0/1080
# Script to install mailcatcher on Debian/Ubuntu without RVM
# install Ruby and rubygems without RVM:
sudo apt-get install ruby rubygems
# update rubygems
sudo gem update --system
# install mailcatcher:
sudo apt-get install libsqlite3-dev
sudo gem install mailcatcher
# done! to start the mailcatcher server
mailcatcher -i 0.0.0.0
# if mailcatcher cannot be found, gem is not in your path;
# add the path found by the following command to `.bashrc` or similar, and
# reload (`source .bashrc`)
gem environment | grep "EXECUTABLE DIRECTORY"
# then just use the following SMTP settings:
# host : localhost
# port : 1025
# and visit http://0.0.0.0/1080
Learn More :
Install
- How To Install PHP5, Apache2, MySQL for UBUNTU
- How to install GRUB Customizer for Ubuntu Backtrack Linux
- How to install Slowloris on Linux
- How To install mongodb and php driver in ubuntu 12.10 ?
- Install gamepanelx master on ubuntu 12.10
- TREE.IO INSTALLATION ON UBUNTU
- Installing Tata Docomo 3G Dongle under Ubuntu 10.10
- Installing Kubuntu (Ubuntu) 12.10 in VMWare Player 5
- How To Install Plex Media Server on Ubuntu
Ubuntu
- Ubuntu 16.04.1 Parallels Tools Install Log
- How to install VulnReport on Ubuntu
- How To Install Docker Ubuntu 14.04
- How to install PhantomJS on Ubuntu
- How to install VulnReport on Ubuntu
- How to run on ubuntu VM
- How to install skeltrack on ubuntu 11.04
- How to install GRUB Customizer for Ubuntu Backtrack Linux
- How To install mongodb and php driver in ubuntu 12.10 ?
- Ubuntu 12.10 on Lenovo Ideapad S205
- Install gamepanelx master on ubuntu 12.10
- TREE.IO INSTALLATION ON UBUNTU
- Installing Tata Docomo 3G Dongle under Ubuntu 10.10
- Installing Kubuntu (Ubuntu) 12.10 in VMWare Player 5
- How To Install Plex Media Server on Ubuntu
- Kali Tools In Ubuntu Linux (instructions)
RVM
Script
Debian