LinuxQuestions.org
Share your knowledge at the LQ Wiki.
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 06-17-2002, 01:43 PM   #1
hinoiri
LQ Newbie
 
Registered: Jun 2002
Posts: 11

Rep: Reputation: 0
Post need a guide & a lil info.


im on RH7.3, i will be able to leave windows behind for all but gaming after dreamweaver 4 is working with Wine. but ive got a few things i still don't understand.


ive been trying to get Seti@home to work but it says it cant execute the binary file... after reading all the posts on that subject on these boards i still dont get it cuz i dont understand how linuz works with surtain files & commands.
i need a guide on all the file types, commands & errors for running scripts & programs in linux (also RPM packages intalling & uninstalling). i think if i understand the different file types & commands i will be able to make sense of it.

also...

mozilla 1.0 is working fine for me but ive got 1000+ bookmarks in IE on my Win2k NTFS drive. anyway to convert them so mozilla can use them?
would they even work for the linux version of mozilla if they were written onto ISO CD or FAT floppy?
i cant even find where mozilla is putting it's faves in it's dir =)
 
Old 06-17-2002, 01:47 PM   #2
aliensub
Member
 
Registered: Apr 2002
Location: Denmark
Distribution: OS X
Posts: 306

Rep: Reputation: 30
In IE Choose file ->import & export -> export bookmarks. Then export them to an html file.

Then in mozilla choose bookmarks -> manage bookmarks and then somwhere in that menu there is an import function. Import the html file and voila!
 
Old 06-17-2002, 02:42 PM   #3
neo77777
LQ Addict
 
Registered: Dec 2001
Location: Brooklyn, NY
Distribution: *NIX
Posts: 3,704

Rep: Reputation: 56
change permissions on that binary file
chmod 755 binary_file
./binary_file
 
Old 06-17-2002, 06:23 PM   #4
hinoiri
LQ Newbie
 
Registered: Jun 2002
Posts: 11

Original Poster
Rep: Reputation: 0
RE:

i c, thanks for the info alien.

neo, thats the kinda commands that i don't understand & need to find a list & explanation of =)
 
Old 06-17-2002, 07:08 PM   #5
neo77777
LQ Addict
 
Registered: Dec 2001
Location: Brooklyn, NY
Distribution: *NIX
Posts: 3,704

Rep: Reputation: 56
OK this part was regarding:
Quote:
ive been trying to get Seti@home to work but it says it cant execute the binary file... after reading all the posts on that subject on these boards i still dont get it cuz i dont understand how linuz works with surtain files & commands.
i need a guide on all the file types, commands & errors for running scripts & programs in linux (also RPM packages intalling & uninstalling). i think if i understand the different file types & commands i will be able to make sense of it.
what you need to do is
open an Xterm (shell - sort of MS-DOScommand line)
you will be in your home directory (if you are user_name then it will be /home/user_name), locate the file for seti@Home, when you downloaded it asked you where to save the file, I assume you didn't change directory and by default it resides in your home directory, I am going to use my username, so follow the concept

[morpheus@matrix morpheus]$ ls -ltr <---- it will return the list of files in your home directory with modification date in descending order, so the last modified file will be at the bottom, see if there is the one you downloaded and note its filename, I assume runSeti.bin (you should find the real name though)
[morpheus@matrix morpheus]$ chmod 755 runSeti.bin
and then follow the instructions included on how to compile it, if the runSeti.bin is not in your home, then you should remember where you downloaded and use cd command to change to appropriate directory
[morpheus@matrix morpheus]$ cd some_dir_in_my_home
and then do the ls command to locate the file.
Confused?
 
Old 06-17-2002, 10:28 PM   #6
hinoiri
LQ Newbie
 
Registered: Jun 2002
Posts: 11

Original Poster
Rep: Reputation: 0
Post

i downloaded it as a tar file the extracted files are sitting in /home/Aaron/Seti/setiathome
there are 4 files in the DIR named
readme, readme xsetiathome, setiathome & xsetiathome. i dont want to use the graphical one so ive been trying to "activate"? setiathome.

doing chmod 755 setiathome doesnt do anything:
[Aaron@localhost setiathome]$ chmod 755 setiathome
[Aaron@localhost setiathome]$
is what happens.

the tar i downloaded is this:
setiathome-3.03.9672-IBM-S390-Linux.tar
is that the right one?

(EDIT)
exact file info:
[Aaron@localhost setiathome]$ ls -ltr
total 320
-r--r--r-- 1 Aaron Aaron 6723 Dec 12 2000 README
-r--r--r-- 1 Aaron Aaron 1811 Dec 12 2000 README.xsetiathome
-rwxr-xr-x 1 Aaron Aaron 226464 May 29 2001 setiathome
-r-xr-xr-x 1 Aaron Aaron 76560 May 29 2001 xsetiathome
[Aaron@localhost setiathome]$

Last edited by hinoiri; 06-17-2002 at 10:33 PM.
 
Old 06-17-2002, 10:55 PM   #7
Sfin
Member
 
Registered: Apr 2002
Location: Michigan
Distribution: Slackware 8.0
Posts: 197

Rep: Reputation: 30
well if you check the permissions on setiathome + xsetiathome you notice that they have executable rights.

So you should just do a:

./setiathome

or

./xsetiathome

and that run the program.

also about the:

Quote:
[Aaron@localhost setiathome]$ chmod 755 setiathome
[Aaron@localhost setiathome]$
When you do a chmod, all it does is change the permissions of the files, so if you noticed the permissions before and after they might be different, depending on what they were before you did the chmod. This means that after you do a chmod, you will return to the command prompt, which is what happened to you.

Last edited by Sfin; 06-17-2002 at 10:58 PM.
 
Old 06-18-2002, 12:05 AM   #8
joseph_k
Member
 
Registered: Aug 2001
Location: North Dakota (USA)
Distribution: Ubuntu
Posts: 43

Rep: Reputation: 15
hinoiri, I would suggest picking up a book on basic UNIX/Linux commands - that's how I got comfortable working in the terminal.

After you've done the chmod command, check the permissions of your file by typing the following at the prompt: ls -l setiathome

You'll see a long listing of the setiathome file information:
-rwxrwxrwx 1 fileowner group (and some other stuff)

You may have dashes in place of some of these letters. These are the permissons. You should see an "x" in the fourth spot. That means that the owner of the file has permission to execute the file.
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

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
DISCUSSION: Easy 'info' guide scott_R LinuxAnswers Discussion 5 06-30-2010 05:13 AM
Slackware guide for AMP Apache MySQL & PHP xushi Slackware 35 05-11-2006 11:18 AM
Looking for info on S3 Trio & Virge, HW & SW Hiper Linux - Hardware 0 01-31-2004 08:47 PM
Some SCSI info && SATA proposition C.Loko Linux - Hardware 1 12-12-2003 02:42 PM
lil help with videos & picture uploads ScreeminChikin Linux - General 11 09-12-2002 11:37 PM

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

All times are GMT -5. The time now is 05:02 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