LinuxQuestions.org
Review your favorite Linux distribution.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 02-04-2004, 10:05 AM   #1
jbcolmena
Member
 
Registered: Feb 2004
Location: Italy
Distribution: Ubuntu
Posts: 40

Rep: Reputation: 15
newbie installing tarball


Hi everyone. I downloaded some .tar.gz files of some programs i want to install (octave and others). After reading the info pages, this is what i undestand: i.- first i must "untar" the archives using something like tarz filename; ii.- then run make. This i believe will compile the files. iii.- run configure. this will configure what i compiled. Now the question:

i.- When i untar the archives, they will not be on the right directories where they should be (or so i understand). ¿how do i fix this? the files should be in certains directories! for example, the info files should not be in my home directory (right?)

ii.- should i just type ./make ? don't i have to write anything after the command? and the same question for ./configure...

¿does make and configure put the files where they should be?

I'm sorry if i took unnecesary time from you... there has to be a how-to about this, but couldn't find it. If so, ¿where is it? I haven't tried the secuence i described, for i have little Experience and didn't want to mess up the system... don't like to do things as root if i'm not sure

Thanks is advance.
 
Old 02-04-2004, 10:22 AM   #2
jtshaw
Senior Member
 
Registered: Nov 2000
Location: Seattle, WA USA
Distribution: Ubuntu @ Home, RHEL @ Work
Posts: 3,892
Blog Entries: 1

Rep: Reputation: 67
I'll try and throw out a general guide to compiling programs.

Start with the uncompressing:

tar -xzvf package.tar.gz will uncompress and untar a gzipped tarred file.
tar -xjvf pacakge.tar.bz will uncompress and untar a bzip2 tarred file.

In general programs are compiled and installed with the following commands:
./configure
make
make install
The make install part should be done as root in most cases, and will install the files into the appropriate places.

However, some programs you will actually want to pass options into ./configure. Running ./configure --help should print out a list of configuration options. Also be sure to read the README and/or INSTALL file that comes with any package as they will contain package specific documentation.
 
Old 02-04-2004, 10:22 AM   #3
delta9
Member
 
Registered: Dec 2003
Distribution: Gentoo
Posts: 66

Rep: Reputation: 15
Code:
tar -xzvf filename.tar.gz
x for extract
z for gzipped tar file (.tar.gz) (instead of "z" you should use "j" when dealing with bzipped2 files (.tar.bz2))
v for verbose (shows progress etc.)
f for filename

this should unpack the files to the current directory with their full path stored in the tar file (so usually all files end up in a subdirectory of the current dir with possible underlying subdirs)

tarballs of source files usually require the following step in order to compile and install the software:

Code:
./configure
make
make install (usually as root)
so FIRST configure, then make and make install!

edit: LOL jtshaw, you beat me to it!

Last edited by delta9; 02-04-2004 at 10:23 AM.
 
Old 02-04-2004, 10:53 AM   #4
jbcolmena
Member
 
Registered: Feb 2004
Location: Italy
Distribution: Ubuntu
Posts: 40

Original Poster
Rep: Reputation: 15
Thanks. I tried with the linux cookbook: tar -xzvf cookbook-1.2.tar.gz . The file was extracted. then ./configure: -bash: ./configure: No such file or directory
¿what's wrong?

i'm using slack 9.1.

Thanks again
 
Old 02-04-2004, 10:58 AM   #5
nightwulf
Member
 
Registered: Dec 2003
Distribution: Slackware
Posts: 35

Rep: Reputation: 15
Quote:
Originally posted by jbcolmena
Thanks. I tried with the linux cookbook: tar -xzvf cookbook-1.2.tar.gz . The file was extracted. then ./configure: -bash: ./configure: No such file or directory
¿what's wrong?

i'm using slack 9.1.
Files in a tar.* archive are often extracted into a directory. If you're using the "v" (verbose) option with tar, you should see where files are being extracted to. If the files are being extracted into a new directory, you'll need to cd there.

While the vast majority of programs don't require anything more than "./configure; make; make install", I'd first check for instructions. Look for INSTALL or README or similarly-named files for instructions.

Regards,
nightwulf
 
Old 02-28-2006, 09:52 AM   #6
spnoe
Member
 
Registered: Dec 2005
Location: Spain
Distribution: Zorin/Big Linux OS
Posts: 39

Rep: Reputation: 15
Unhappy Installing from a tarball

As you will see below I have been trying to install from a tar.gz and managed to unzip the file but am unable to proceed as it states "No such file or directory". As you have probably summised I am new to this. Could you advise what I am doing wrong.

Thanks. Steve

Password:
linux:/home/stephen # cd eyeOS-0.8.11.tar.gz
bash: cd: eyeOS-0.8.11.tar.gz: Not a directory
linux:/home/stephen # cd /home/stephen
linux:/home/stephen # cd /home/stephen/eyeOS-0.8.11.tar.gz
bash: cd: /home/stephen/eyeOS-0.8.11.tar.gz: Not a directory
linux:/home/stephen # ./configure
bash: ./configure: No such file or directory
linux:/home/stephen # tar -xzvf filename.tar.gzeyeOS-0.8.11.tar.gz
tar: filename.tar.gzeyeOS-0.8.11.tar.gz: Cannot open: No such file or directory
tar: Error is not recoverable: exiting now
tar: Child returned status 2
tar: Error exit delayed from previous errors
linux:/home/stephen # file:///home/stephen/eyeOS-0.8.11.tar.gz
bash: file:///home/stephen/eyeOS-0.8.11.tar.gz: No such file or directory
linux:/home/stephen # rpm -Uvh smart-0.41-10.guru.suse.10.0.i686.rpm
error: open of smart-0.41-10.guru.suse.10.0.i686.rpm failed: No such file or directory
linux:/home/stephen # tar -xzvf eyeOS-0.8.11.tar.gz
eyeOS/apps/eyeApps.eyeapp/lang.php
eyeOS/apps/eyeApps.eyeapp/aplic.php
eyeOS/apps/eyeApps.eyeapp/ico_a.png
eyeOS/apps/eyeApps.eyeapp/ico_b.png
eyeOS/apps/eyeApps.eyeapp/ico_c.png
eyeOS/apps/eyeApps.eyeapp/propietats.xml
eyeOS/apps/eyeApps.eyeapp/index.htm
eyeOS/apps/eyeBoard.eyeapp/aplic.php
eyeOS/apps/eyeBoard.eyeapp/ico_a.png
eyeOS/apps/eyeBoard.eyeapp/ico_b.png
eyeOS/apps/eyeBoard.eyeapp/ico_c.png
eyeOS/apps/eyeBoard.eyeapp/index.htm
eyeOS/apps/eyeBoard.eyeapp/lang.php
eyeOS/apps/eyeBoard.eyeapp/propietats.xml
eyeOS/apps/eyeBoard.eyeapp/css.css
eyeOS/apps/eyeCalc.eyeapp/gfx/coma.png
eyeOS/apps/eyeCalc.eyeapp/gfx/div.png
eyeOS/apps/eyeCalc.eyeapp/gfx/fonscalc.png
eyeOS/apps/eyeCalc.eyeapp/gfx/igual.png
eyeOS/apps/eyeCalc.eyeapp/gfx/menys.png
eyeOS/apps/eyeCalc.eyeapp/gfx/mes.png
eyeOS/apps/eyeCalc.eyeapp/gfx/mult.png
eyeOS/apps/eyeCalc.eyeapp/gfx/num0.png
eyeOS/apps/eyeCalc.eyeapp/gfx/num1.png
eyeOS/apps/eyeCalc.eyeapp/gfx/num2.png
eyeOS/apps/eyeCalc.eyeapp/gfx/num3.png
eyeOS/apps/eyeCalc.eyeapp/gfx/num4.png
eyeOS/apps/eyeCalc.eyeapp/gfx/num5.png
eyeOS/apps/eyeCalc.eyeapp/gfx/num6.png
eyeOS/apps/eyeCalc.eyeapp/gfx/num7.png
eyeOS/apps/eyeCalc.eyeapp/gfx/num8.png
eyeOS/apps/eyeCalc.eyeapp/gfx/num9.png
eyeOS/apps/eyeCalc.eyeapp/gfx/off.png
eyeOS/apps/eyeCalc.eyeapp/gfx/pantalla.png
eyeOS/apps/eyeCalc.eyeapp/gfx/percent.png
eyeOS/apps/eyeCalc.eyeapp/gfx/r.png
eyeOS/apps/eyeCalc.eyeapp/gfx/s.png
eyeOS/apps/eyeCalc.eyeapp/aplic.php
eyeOS/apps/eyeCalc.eyeapp/ico_a.png
eyeOS/apps/eyeCalc.eyeapp/ico_b.png
eyeOS/apps/eyeCalc.eyeapp/ico_c.png
eyeOS/apps/eyeCalc.eyeapp/jscript.js
eyeOS/apps/eyeCalc.eyeapp/lang.php
eyeOS/apps/eyeCalc.eyeapp/propietats.xml
eyeOS/apps/eyeCalendar.eyeapp/index.htm
eyeOS/apps/eyeCalendar.eyeapp/ico_c.png
eyeOS/apps/eyeCalendar.eyeapp/ico_b.png
eyeOS/apps/eyeCalendar.eyeapp/ico_a.png
eyeOS/apps/eyeCalendar.eyeapp/aplic.php
eyeOS/apps/eyeCalendar.eyeapp/lang.php
eyeOS/apps/eyeCalendar.eyeapp/propietats.xml
eyeOS/apps/eyeCalendar.eyeapp/css.css
eyeOS/apps/eyeHome.eyeapp/aplic.php
eyeOS/apps/eyeHome.eyeapp/ico_a.png
eyeOS/apps/eyeHome.eyeapp/ico_b.png
eyeOS/apps/eyeHome.eyeapp/ico_c.png
eyeOS/apps/eyeHome.eyeapp/lang.php
eyeOS/apps/eyeHome.eyeapp/propietats.xml
eyeOS/apps/eyeHome.eyeapp/index.htm
eyeOS/apps/eyeMessages.eyeapp/gfx/eyeMessages.css
eyeOS/apps/eyeMessages.eyeapp/index.htm
eyeOS/apps/eyeMessages.eyeapp/aplic.php
eyeOS/apps/eyeMessages.eyeapp/ico_a.png
eyeOS/apps/eyeMessages.eyeapp/ico_b.png
eyeOS/apps/eyeMessages.eyeapp/ico_c.png
eyeOS/apps/eyeMessages.eyeapp/lang.php
eyeOS/apps/eyeMessages.eyeapp/propietats.xml
eyeOS/apps/eyeNav.eyeapp/gfx/save.png
eyeOS/apps/eyeNav.eyeapp/index.htm
eyeOS/apps/eyeNav.eyeapp/lang.php
eyeOS/apps/eyeNav.eyeapp/aplic.php
eyeOS/apps/eyeNav.eyeapp/ico_a.png
eyeOS/apps/eyeNav.eyeapp/ico_b.png
eyeOS/apps/eyeNav.eyeapp/ico_c.png
eyeOS/apps/eyeNav.eyeapp/propietats.xml
eyeOS/apps/eyeNav.eyeapp/css.css
eyeOS/apps/eyeOptions.eyeapp/aplic.php
eyeOS/apps/eyeOptions.eyeapp/ico_a.png
eyeOS/apps/eyeOptions.eyeapp/ico_b.png
eyeOS/apps/eyeOptions.eyeapp/ico_c.png
eyeOS/apps/eyeOptions.eyeapp/lang.php
eyeOS/apps/eyeOptions.eyeapp/propietats.xml
eyeOS/apps/eyeOptions.eyeapp/esborradir.inc.php
eyeOS/apps/eyeOptions.eyeapp/index.htm
eyeOS/apps/eyePhones.eyeapp/aplic.php
eyeOS/apps/eyePhones.eyeapp/ico_a.png
eyeOS/apps/eyePhones.eyeapp/ico_b.png
eyeOS/apps/eyePhones.eyeapp/ico_c.png
eyeOS/apps/eyePhones.eyeapp/lang.php
eyeOS/apps/eyePhones.eyeapp/propietats.xml
eyeOS/apps/eyePhones.eyeapp/index.htm
eyeOS/apps/eyeTrash.eyeapp/aplic.php
eyeOS/apps/eyeTrash.eyeapp/lang.php
eyeOS/apps/eyeTrash.eyeapp/propietats.xml
eyeOS/apps/eyeTrash.eyeapp/full.png
eyeOS/apps/eyeTrash.eyeapp/empty.png
eyeOS/apps/eyeEdit.eyeapp/gfx/bold.png
eyeOS/apps/eyeEdit.eyeapp/gfx/bullet.png
eyeOS/apps/eyeEdit.eyeapp/gfx/center.png
eyeOS/apps/eyeEdit.eyeapp/gfx/color.png
eyeOS/apps/eyeEdit.eyeapp/gfx/hilite.png
eyeOS/apps/eyeEdit.eyeapp/gfx/html.png
eyeOS/apps/eyeEdit.eyeapp/gfx/image.png
eyeOS/apps/eyeEdit.eyeapp/gfx/indent.png
eyeOS/apps/eyeEdit.eyeapp/gfx/italic.png
eyeOS/apps/eyeEdit.eyeapp/gfx/justify.png
eyeOS/apps/eyeEdit.eyeapp/gfx/left.png
eyeOS/apps/eyeEdit.eyeapp/gfx/link.png
eyeOS/apps/eyeEdit.eyeapp/gfx/number.png
eyeOS/apps/eyeEdit.eyeapp/gfx/outdent.png
eyeOS/apps/eyeEdit.eyeapp/gfx/redo.png
eyeOS/apps/eyeEdit.eyeapp/gfx/right.png
eyeOS/apps/eyeEdit.eyeapp/gfx/rule.png
eyeOS/apps/eyeEdit.eyeapp/gfx/table.png
eyeOS/apps/eyeEdit.eyeapp/gfx/underline.png
eyeOS/apps/eyeEdit.eyeapp/gfx/undo.png
eyeOS/apps/eyeEdit.eyeapp/aplic.php
eyeOS/apps/eyeEdit.eyeapp/ico_a.png
eyeOS/apps/eyeEdit.eyeapp/ico_b.png
eyeOS/apps/eyeEdit.eyeapp/ico_c.png
eyeOS/apps/eyeEdit.eyeapp/lang.php
eyeOS/apps/eyeEdit.eyeapp/propietats.xml
eyeOS/apps/eyeEdit.eyeapp/whizzywig.js
eyeOS/apps/eyeEdit.eyeapp/index.htm
eyeOS/apps/eyeInfo.eyeapp/aplic.php
eyeOS/apps/eyeInfo.eyeapp/ico_a.png
eyeOS/apps/eyeInfo.eyeapp/ico_b.png
eyeOS/apps/eyeInfo.eyeapp/ico_c.png
eyeOS/apps/eyeInfo.eyeapp/lang.php
eyeOS/apps/eyeInfo.eyeapp/propietats.xml
eyeOS/apps/eyeViewer.app
eyeOS/apps/eyeHelp.app
eyeOS/system/css/start.css
eyeOS/system/css/install.css
eyeOS/system/gfx/btn/print.png
eyeOS/system/gfx/btn/sortUp.png
eyeOS/system/gfx/btn/sortDn.png
eyeOS/system/gfx/btn/delete.png
eyeOS/system/gfx/btn/download.png
eyeOS/system/gfx/btn/edit.png
eyeOS/system/gfx/btn/new.png
eyeOS/system/gfx/btn/open.png
eyeOS/system/gfx/btn/opensmall.png
eyeOS/system/gfx/btn/restore.png
eyeOS/system/gfx/btn/save.png
eyeOS/system/gfx/btn/view.png
eyeOS/system/gfx/btn/deletesmall.png
eyeOS/system/gfx/btn/upload.png
eyeOS/system/gfx/btn/help.png
eyeOS/system/gfx/langs/romanian.png
eyeOS/system/gfx/langs/finnish.png
eyeOS/system/gfx/langs/galego.png
eyeOS/system/gfx/langs/danish.png
eyeOS/system/gfx/langs/russian.png
eyeOS/system/gfx/langs/bulgarian.png
eyeOS/system/gfx/langs/catalan.png
eyeOS/system/gfx/langs/chinese.png
eyeOS/system/gfx/langs/dutch.png
eyeOS/system/gfx/langs/english.png
eyeOS/system/gfx/langs/french.png
eyeOS/system/gfx/langs/german.png
eyeOS/system/gfx/langs/hungarian.png
eyeOS/system/gfx/langs/italian.png
eyeOS/system/gfx/langs/polish.png
eyeOS/system/gfx/langs/portuguese.png
eyeOS/system/gfx/langs/spanish.png
eyeOS/system/gfx/langs/swedish.png
eyeOS/system/gfx/langs/turkish.png
eyeOS/system/gfx/login/enter.png
eyeOS/system/gfx/login/fons.png
eyeOS/system/gfx/login/login.png
eyeOS/system/gfx/login/logo.png
eyeOS/system/gfx/tipus/avi.png
eyeOS/system/gfx/tipus/bin.png
eyeOS/system/gfx/tipus/bmp.png
eyeOS/system/gfx/tipus/css.png
eyeOS/system/gfx/tipus/deb.png
eyeOS/system/gfx/tipus/doc.png
eyeOS/system/gfx/tipus/dwg.png
eyeOS/system/gfx/tipus/eml.png
eyeOS/system/gfx/tipus/exe.png
eyeOS/system/gfx/tipus/gif.png
eyeOS/system/gfx/tipus/htm.png
eyeOS/system/gfx/tipus/html.png
eyeOS/system/gfx/tipus/ico.png
eyeOS/system/gfx/tipus/iff.png
eyeOS/system/gfx/tipus/jpeg.png
eyeOS/system/gfx/tipus/jpg.png
eyeOS/system/gfx/tipus/map.png
eyeOS/system/gfx/tipus/mp3.png
eyeOS/system/gfx/tipus/mp4.png
eyeOS/system/gfx/tipus/ogg.png
eyeOS/system/gfx/tipus/old.png
eyeOS/system/gfx/tipus/pdf.png
eyeOS/system/gfx/tipus/png.png
eyeOS/system/gfx/tipus/ppt.png
eyeOS/system/gfx/tipus/psd.png
eyeOS/system/gfx/tipus/rar.png
eyeOS/system/gfx/tipus/rewfewwe.png
eyeOS/system/gfx/tipus/rpm.png
eyeOS/system/gfx/tipus/rtf.png
eyeOS/system/gfx/tipus/sql.png
eyeOS/system/gfx/tipus/svg.png
eyeOS/system/gfx/tipus/sxc.png
eyeOS/system/gfx/tipus/sxi.png
eyeOS/system/gfx/tipus/sxw.png
eyeOS/system/gfx/tipus/tar.png
eyeOS/system/gfx/tipus/tiff.png
eyeOS/system/gfx/tipus/txt.png
eyeOS/system/gfx/tipus/wav.png
eyeOS/system/gfx/tipus/wmv.png
eyeOS/system/gfx/tipus/xcf.png
eyeOS/system/gfx/tipus/xls.png
eyeOS/system/gfx/tipus/zip.png
eyeOS/system/gfx/tipus/zzz.png
eyeOS/system/gfx/back.png
eyeOS/system/gfx/index.html
eyeOS/system/gfx/ull.ico
eyeOS/system/scripts/gclock.js
eyeOS/system/scripts/x_core.js
eyeOS/system/scripts/x_drag.js
eyeOS/system/scripts/x_event.js
eyeOS/system/scripts/x_eyeOSwin.js
eyeOS/system/themes/default/desktop/dock.png
eyeOS/system/themes/default/desktop/dockmin.png
eyeOS/system/themes/default/desktop/exit.png
eyeOS/system/themes/default/IE/1.png
eyeOS/system/themes/default/IE/10.png
eyeOS/system/themes/default/IE/11.png
eyeOS/system/themes/default/IE/12.png
eyeOS/system/themes/default/IE/2.png
eyeOS/system/themes/default/IE/3.png
eyeOS/system/themes/default/IE/4.png
eyeOS/system/themes/default/IE/5.png
eyeOS/system/themes/default/IE/6.png
eyeOS/system/themes/default/IE/7.png
eyeOS/system/themes/default/IE/8.png
eyeOS/system/themes/default/IE/9.png
eyeOS/system/themes/default/IE/default.css
eyeOS/system/themes/default/IE/resize.png
eyeOS/system/themes/default/IE/dockmin.png
eyeOS/system/themes/default/IE/dock.png
eyeOS/system/themes/default/gfxwin/1.png
eyeOS/system/themes/default/gfxwin/10.png
eyeOS/system/themes/default/gfxwin/11.png
eyeOS/system/themes/default/gfxwin/12.png
eyeOS/system/themes/default/gfxwin/2.png
eyeOS/system/themes/default/gfxwin/3.png
eyeOS/system/themes/default/gfxwin/4.png
eyeOS/system/themes/default/gfxwin/5.png
eyeOS/system/themes/default/gfxwin/6.png
eyeOS/system/themes/default/gfxwin/7.png
eyeOS/system/themes/default/gfxwin/8.png
eyeOS/system/themes/default/gfxwin/9.png
eyeOS/system/themes/default/gfxwin/resize.png
eyeOS/system/themes/default/gfxwin/min.png
eyeOS/system/themes/default/gfxwin/max.png
eyeOS/system/themes/default/gfxwin/close.png
eyeOS/system/themes/default/gfxwin/bar.png
eyeOS/system/themes/default/default.css
eyeOS/system/themes/default/eyeos.jpg
eyeOS/system/themes/default/INFO
eyeOS/system/themes/default/thumb.png
eyeOS/system/themes/NuoveXT/apps/eyePhones.eyeapp/ico_a.png
eyeOS/system/themes/NuoveXT/apps/eyePhones.eyeapp/ico_b.png
eyeOS/system/themes/NuoveXT/apps/eyePhones.eyeapp/ico_c.png
eyeOS/system/themes/NuoveXT/apps/eyeOptions.eyeapp/ico_a.png
eyeOS/system/themes/NuoveXT/apps/eyeOptions.eyeapp/ico_b.png
eyeOS/system/themes/NuoveXT/apps/eyeOptions.eyeapp/ico_c.png
eyeOS/system/themes/NuoveXT/apps/eyeNav.eyeapp/ico_a.png
eyeOS/system/themes/NuoveXT/apps/eyeNav.eyeapp/ico_b.png
eyeOS/system/themes/NuoveXT/apps/eyeNav.eyeapp/ico_c.png
eyeOS/system/themes/NuoveXT/apps/eyeMessages.eyeapp/ico_a.png
eyeOS/system/themes/NuoveXT/apps/eyeMessages.eyeapp/ico_b.png
eyeOS/system/themes/NuoveXT/apps/eyeMessages.eyeapp/ico_c.png
eyeOS/system/themes/NuoveXT/apps/eyeInfo.eyeapp/ico_a.png
eyeOS/system/themes/NuoveXT/apps/eyeInfo.eyeapp/ico_b.png
eyeOS/system/themes/NuoveXT/apps/eyeInfo.eyeapp/ico_c.png
eyeOS/system/themes/NuoveXT/apps/eyeHome.eyeapp/ico_a.png
eyeOS/system/themes/NuoveXT/apps/eyeHome.eyeapp/ico_b.png
eyeOS/system/themes/NuoveXT/apps/eyeHome.eyeapp/ico_c.png
eyeOS/system/themes/NuoveXT/apps/eyeEdit.eyeapp/ico_a.png
eyeOS/system/themes/NuoveXT/apps/eyeEdit.eyeapp/ico_b.png
eyeOS/system/themes/NuoveXT/apps/eyeEdit.eyeapp/ico_c.png
eyeOS/system/themes/NuoveXT/apps/eyeCalendar.eyeapp/ico_a.png
eyeOS/system/themes/NuoveXT/apps/eyeCalendar.eyeapp/ico_b.png
eyeOS/system/themes/NuoveXT/apps/eyeCalendar.eyeapp/ico_c.png
eyeOS/system/themes/NuoveXT/apps/eyeCalc.eyeapp/ico_a.png
eyeOS/system/themes/NuoveXT/apps/eyeCalc.eyeapp/ico_b.png
eyeOS/system/themes/NuoveXT/apps/eyeCalc.eyeapp/ico_c.png
eyeOS/system/themes/NuoveXT/apps/eyeApps.eyeapp/ico_a.png
eyeOS/system/themes/NuoveXT/apps/eyeApps.eyeapp/ico_b.png
eyeOS/system/themes/NuoveXT/apps/eyeApps.eyeapp/ico_c.png
eyeOS/system/themes/NuoveXT/apps/eyeBoard.eyeapp/ico_a.png
eyeOS/system/themes/NuoveXT/apps/eyeBoard.eyeapp/ico_b.png
eyeOS/system/themes/NuoveXT/apps/eyeBoard.eyeapp/ico_c.png
eyeOS/system/themes/NuoveXT/apps/eyeTrash.eyeapp/empty.png
eyeOS/system/themes/NuoveXT/apps/eyeTrash.eyeapp/full.png
eyeOS/system/themes/NuoveXT/desktop/dock.png
eyeOS/system/themes/NuoveXT/desktop/dockmin.png
eyeOS/system/themes/NuoveXT/desktop/exit.png
eyeOS/system/themes/NuoveXT/gfxwin/1.png
eyeOS/system/themes/NuoveXT/gfxwin/10.png
eyeOS/system/themes/NuoveXT/gfxwin/11.png
eyeOS/system/themes/NuoveXT/gfxwin/12.png
eyeOS/system/themes/NuoveXT/gfxwin/2.png
eyeOS/system/themes/NuoveXT/gfxwin/3.png
eyeOS/system/themes/NuoveXT/gfxwin/4.png
eyeOS/system/themes/NuoveXT/gfxwin/5.png
eyeOS/system/themes/NuoveXT/gfxwin/6.png
eyeOS/system/themes/NuoveXT/gfxwin/7.png
eyeOS/system/themes/NuoveXT/gfxwin/8.png
eyeOS/system/themes/NuoveXT/gfxwin/9.png
eyeOS/system/themes/NuoveXT/gfxwin/resize.png
eyeOS/system/themes/NuoveXT/gfxwin/min.png
eyeOS/system/themes/NuoveXT/gfxwin/max.png
eyeOS/system/themes/NuoveXT/gfxwin/close.png
eyeOS/system/themes/NuoveXT/gfxwin/bar.png
eyeOS/system/themes/NuoveXT/IE/1.png
eyeOS/system/themes/NuoveXT/IE/10.png
eyeOS/system/themes/NuoveXT/IE/11.png
eyeOS/system/themes/NuoveXT/IE/12.png
eyeOS/system/themes/NuoveXT/IE/2.png
eyeOS/system/themes/NuoveXT/IE/3.png
eyeOS/system/themes/NuoveXT/IE/4.png
eyeOS/system/themes/NuoveXT/IE/5.png
eyeOS/system/themes/NuoveXT/IE/6.png
eyeOS/system/themes/NuoveXT/IE/7.png
eyeOS/system/themes/NuoveXT/IE/8.png
eyeOS/system/themes/NuoveXT/IE/9.png
eyeOS/system/themes/NuoveXT/IE/default.css
eyeOS/system/themes/NuoveXT/IE/resize.png
eyeOS/system/themes/NuoveXT/IE/dockmin.png
eyeOS/system/themes/NuoveXT/IE/dock.png
eyeOS/system/themes/NuoveXT/default.css
eyeOS/system/themes/NuoveXT/eyeos.jpg
eyeOS/system/themes/NuoveXT/INFO
eyeOS/system/themes/NuoveXT/thumb.png
eyeOS/system/themes/Mac/apps/eyePhones.eyeapp/ico_a.png
eyeOS/system/themes/Mac/apps/eyePhones.eyeapp/ico_b.png
eyeOS/system/themes/Mac/apps/eyePhones.eyeapp/ico_c.png
eyeOS/system/themes/Mac/apps/eyeOptions.eyeapp/ico_a.png
eyeOS/system/themes/Mac/apps/eyeOptions.eyeapp/ico_b.png
eyeOS/system/themes/Mac/apps/eyeOptions.eyeapp/ico_c.png
eyeOS/system/themes/Mac/apps/eyeNav.eyeapp/ico_a.png
eyeOS/system/themes/Mac/apps/eyeNav.eyeapp/ico_b.png
eyeOS/system/themes/Mac/apps/eyeNav.eyeapp/ico_c.png
eyeOS/system/themes/Mac/apps/eyeMessages.eyeapp/ico_a.png
eyeOS/system/themes/Mac/apps/eyeMessages.eyeapp/ico_b.png
eyeOS/system/themes/Mac/apps/eyeMessages.eyeapp/ico_c.png
eyeOS/system/themes/Mac/apps/eyeInfo.eyeapp/ico_a.png
eyeOS/system/themes/Mac/apps/eyeInfo.eyeapp/ico_b.png
eyeOS/system/themes/Mac/apps/eyeInfo.eyeapp/ico_c.png
eyeOS/system/themes/Mac/apps/eyeHome.eyeapp/ico_a.png
eyeOS/system/themes/Mac/apps/eyeHome.eyeapp/ico_b.png
eyeOS/system/themes/Mac/apps/eyeHome.eyeapp/ico_c.png
eyeOS/system/themes/Mac/apps/eyeEdit.eyeapp/ico_a.png
eyeOS/system/themes/Mac/apps/eyeEdit.eyeapp/ico_b.png
eyeOS/system/themes/Mac/apps/eyeEdit.eyeapp/ico_c.png
eyeOS/system/themes/Mac/apps/eyeCalendar.eyeapp/ico_a.png
eyeOS/system/themes/Mac/apps/eyeCalendar.eyeapp/ico_b.png
eyeOS/system/themes/Mac/apps/eyeCalendar.eyeapp/ico_c.png
eyeOS/system/themes/Mac/apps/eyeCalc.eyeapp/ico_a.png
eyeOS/system/themes/Mac/apps/eyeCalc.eyeapp/ico_b.png
eyeOS/system/themes/Mac/apps/eyeCalc.eyeapp/ico_c.png
eyeOS/system/themes/Mac/apps/eyeApps.eyeapp/ico_a.png
eyeOS/system/themes/Mac/apps/eyeApps.eyeapp/ico_b.png
eyeOS/system/themes/Mac/apps/eyeApps.eyeapp/ico_c.png
eyeOS/system/themes/Mac/apps/eyeBoard.eyeapp/ico_a.png
eyeOS/system/themes/Mac/apps/eyeBoard.eyeapp/ico_b.png
eyeOS/system/themes/Mac/apps/eyeBoard.eyeapp/ico_c.png
eyeOS/system/themes/Mac/apps/eyeTrash.eyeapp/empty.png
eyeOS/system/themes/Mac/apps/eyeTrash.eyeapp/full.png
eyeOS/system/themes/Mac/desktop/dock.png
eyeOS/system/themes/Mac/desktop/exit.png
eyeOS/system/themes/Mac/gfxwin/1.png
eyeOS/system/themes/Mac/gfxwin/10.png
eyeOS/system/themes/Mac/gfxwin/11.png
eyeOS/system/themes/Mac/gfxwin/12.png
eyeOS/system/themes/Mac/gfxwin/2.png
eyeOS/system/themes/Mac/gfxwin/3.png
eyeOS/system/themes/Mac/gfxwin/4.png
eyeOS/system/themes/Mac/gfxwin/5.png
eyeOS/system/themes/Mac/gfxwin/6.png
eyeOS/system/themes/Mac/gfxwin/7.png
eyeOS/system/themes/Mac/gfxwin/8.png
eyeOS/system/themes/Mac/gfxwin/9.png
eyeOS/system/themes/Mac/gfxwin/resize.png
eyeOS/system/themes/Mac/gfxwin/bar.png
eyeOS/system/themes/Mac/gfxwin/close.png
eyeOS/system/themes/Mac/gfxwin/max.png
eyeOS/system/themes/Mac/gfxwin/min.png
eyeOS/system/themes/Mac/IE/dock.png
eyeOS/system/themes/Mac/IE/default.css
eyeOS/system/themes/Mac/IE/1.png
eyeOS/system/themes/Mac/IE/10.png
eyeOS/system/themes/Mac/IE/11.png
eyeOS/system/themes/Mac/IE/12.png
eyeOS/system/themes/Mac/IE/2.png
eyeOS/system/themes/Mac/IE/3.png
eyeOS/system/themes/Mac/IE/4.png
eyeOS/system/themes/Mac/IE/5.png
eyeOS/system/themes/Mac/IE/6.png
eyeOS/system/themes/Mac/IE/7.png
eyeOS/system/themes/Mac/IE/8.png
eyeOS/system/themes/Mac/IE/9.png
eyeOS/system/themes/Mac/IE/resize.png
eyeOS/system/themes/Mac/default.css
eyeOS/system/themes/Mac/INFO
eyeOS/system/themes/Mac/eyeos.jpg
eyeOS/system/themes/Mac/thumb.png
eyeOS/system/install.php
eyeOS/system/archive.php
eyeOS/system/baixar.php
eyeOS/system/config.php
eyeOS/system/funcions.php
eyeOS/system/ilang.php
eyeOS/system/lang.php
eyeOS/system/syscall.php
eyeOS/etc/index.html
eyeOS/usr/index.html
eyeOS/home/index.html
eyeOS/DOCS/USER MANUAL/JAPANESE
eyeOS/DOCS/USER MANUAL/ENGLISH
eyeOS/DOCS/USER MANUAL/POLISH
eyeOS/DOCS/USER MANUAL/PORTUGUESE
eyeOS/DOCS/USER MANUAL/SPANISH
eyeOS/DOCS/gpl-license.txt
eyeOS/DOCS/QUICK INSTALL MANUAL
eyeOS/DOCS/QUICK UPGRADE MANUAL
eyeOS/DOCS/SECURITY MANUAL
eyeOS/index.php
eyeOS/sysdefs.php
eyeOS/desktop.php
linux:/home/stephen # ./configure
bash: ./configure: No such file or directory
linux:/home/stephen # . /congigure
bash: /congigure: No such file or directory
linux:/home/stephen # ./configure
bash: ./configure: No such file or directory
linux:/home/stephen # make
make: *** No targets specified and no makefile found. Stop.
linux:/home/stephen # make install
make: *** No rule to make target `install'. Stop.
linux:/home/stephen # cd
linux:~ # ./configure
bash: ./configure: No such file or directory
linux:~ # make
make: *** No targets specified and no makefile found. Stop.
linux:~ # make install
make: *** No rule to make target `install'. Stop.
linux:~ # cd eyeOS-0.8.11.tar.gz
bash: cd: eyeOS-0.8.11.tar.gz: No such file or directory
linux:~ # cd eyeOS-0.8.11
bash: cd: eyeOS-0.8.11: No such file or directory
linux:~ # cd /home/stephen
linux:/home/stephen # ./configure
bash: ./configure: No such file or directory
linux:/home/stephen # make
make: *** No targets specified and no makefile found. Stop.
linux:/home/stephen # make install
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Need help Installing a Tarball little_penguin Linux - Software 6 02-12-2005 12:57 PM
Installing From a tarball in Fedora Linux sxa Linux - Software 2 01-20-2004 07:46 AM
installing opera from a sourcepcode tarball ronss Linux - Software 5 09-01-2003 06:29 AM
problem installing tarball xine annehoog Linux - Software 0 05-12-2002 11:08 AM
Error when installing NVIDIA Kernel tarball therion12 Linux - General 2 01-19-2002 02:08 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 06:42 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration