First off, I am new to Linux. With that said, I want to install the folding at home client on this computer. I have downloaded the file. How do I execute it?
Announcement
Collapse
No announcement yet.
Folding at home
Collapse
This topic is closed.
X
X
-
Re: Folding at home
What file type is it ??
If it's a .tar.gz file then do:
Code:tar xzvf filename.tar.gz
Code:tar xjvf filename.tar.bz2
Code:unzip filename.zip
Code:unrar e filename.rar
You might have to install rar/unrar or unzip. Ultimately, if you have them installed, you can right click the file from within konqueror and select Extract.
Once it's extracted, read the README and/or INSTALL file that is included. If there isn't one, look on their website for the instructions. Follow the instructions, and then you'll be done.
- Top
- Bottom
-
Re: Folding at home
Ummmm, .exe files are for Windows. Surely he isn't using Windows. There are linux native packages that he should be using. To run an .exe file he would need to have Wine installed, configured and then run the .exe file with Wine. Surely that isn't necessary.
- Top
- Bottom
Comment
-
Re: Folding at home
It is the FAH504-Linux.exe and I tried ./FAH504-Linux.exe from the command line. I got: No such file or folder. I find it on my computer why can't Kubuntu?
Edit: Update, I was trying with small letters instead of caps. I have tried caps now and I get: permission denied.
- Top
- Bottom
Comment
-
Re: Folding at home
Wow, what a coincidence.
Figuring we have the foundation for an excellent distributed computing team I just established the Kubuntu Linux folding team not long before coming across this thread!
FAQ in progress.
Team # 51238.
Team site:
http://fah-web.stanford.edu/cgi-bin/...&teamnum=51238
Let the fun begin!
- Top
- Bottom
Comment
-
Re: Folding at home
cd /path to/where you put it
then type the start command
example:
:~/$ cd /home/otis/apps/fah
:~/$ ls ( shows contents of directory )
client.cfg FahCore_65.exe FAHlog.txt MyFolding.html unitinfo.txt
FAH504-Linux.exe FAHlog-Prev.txt machinedependent.dat queue.dat work
:~/$ ./FAH504-Linux.exe ( launches the program as long as you are in that directory )
Kubuntu 18.04 on AMD
- Top
- Bottom
Comment
-
Re: Folding at home
root account owns it.
you have 2 choices :
1)
:~/$ sudo ./FAH504-Linux.exe
and enter your password
2)
or based on my previous example where /home/otis/apps/fah is the path, start at /home/otis/apps so the fah folder is in the list if you type in ls
:~/$ sudo chown username:usergroup fah
:~/$ cd fah
:~/$ sudo chown username:usergroup *.*
:~/$ ./FAH504-Linux.exe
you are now the owner and it will not give you a permission error
----------------------------------------------------------------------
the breakdown of the 2nd part:
chown = change owner
username : usergroup = your username : your usergroup typically the same eg otistis is mine
sudo chown username:usergroup fah --- the fah is the folder containing the files and changing ownership of the folder
sudo chown username:usergroup *.* --- the *.* says change all files in this folder to said user's ownershipKubuntu 18.04 on AMD
- Top
- Bottom
Comment
-
Re: Folding at home
Another graphical way -
Launch your konqueror file manager.
Click 'edit', then 'create new' 'folder'.
Name the new folder 'folding'.
Move the exe file into this folder via drag & drop.
Right click on the FAH504-Linux.exe, 'properties' > permissions tab, then check mark the box which says 'is executable'.
Once you've done this you can click on the exe file
or
in terminal or konsole box ...
cd /home/your name/folding, then
./FAHLinux-504.exe
- Top
- Bottom
Comment
Comment