Difference between revisions of "Setting Up Ubuntu for EiffelStudio"

Line 2: Line 2:
 
[[Category:Build Scripts]]
 
[[Category:Build Scripts]]
  
 +
=EiffelStudio Installation=
 
Once you have installed Ubuntu, you need to make sure you have the following packages installed. This will let you compile EiffelStudio projects and also build an EiffelStudio delivery.
 
Once you have installed Ubuntu, you need to make sure you have the following packages installed. This will let you compile EiffelStudio projects and also build an EiffelStudio delivery.
  
Line 18: Line 19:
 
*Various utilities
 
*Various utilities
 
  sudo apt-get install pax mkisofs
 
  sudo apt-get install pax mkisofs
 +
 +
=Miscellaneous=
 +
In addition, you may want to install NIS and NFS:
 +
 +
sudo apt-get install portmap nis nfs-common
 +
 +
And the following pages to help you set them up:
 +
* NIS: https://help.ubuntu.com/community/SettingUpNISHowTo
 +
* NFS: https://help.ubuntu.com/community/SettingUpNFSHowTo

Revision as of 07:09, 30 August 2013


EiffelStudio Installation

Once you have installed Ubuntu, you need to make sure you have the following packages installed. This will let you compile EiffelStudio projects and also build an EiffelStudio delivery.

  • C compiler
sudo apt-get install gcc g++ make
  • Subversion
sudo apt-get install subversion
  • GTK
sudo apt-get install libgtk2.0-dev libxtst-dev
  • Building deliveries
sudo apt-get install build-essential devscripts debhelper fakeroot lintian rpm
  • Various utilities
sudo apt-get install pax mkisofs

Miscellaneous

In addition, you may want to install NIS and NFS:

sudo apt-get install portmap nis nfs-common

And the following pages to help you set them up: