Page 1 of 1
How do you install PB on Fedora 17 KDE 32-bit?
Posted: Fri Aug 31, 2012 4:02 pm
by Noble Bell
Hello all,
What do I need to do in order to install the latest version of PB on Fedora 17 KDE 32-bit? I have never installed PB on linux before as I am also new to linux.
Re: How do you install PB on Fedora 17 KDE 32-bit?
Posted: Sat Sep 01, 2012 3:41 pm
by Poshu
It's easy, just download pb and run checkinstall.sh in your terminal.
But, as with most things with linux, you should rtfm before asking stupid question already answered 200 times on this very forum >.>
Re: How do you install PB on Fedora 17 KDE 32-bit?
Posted: Sat Sep 01, 2012 4:11 pm
by Noble Bell
Hmm.. Well, ok. Thank you for your kind remarks I guess. I was asking about Fedora not Ubuntu and KDE not Gnome. I also stated that I was new to Linux. Yes, I searched the forum for answers first to avoid responses from people like yourself. At any rate, thank you for taking the time to make someones day a little brighter.
Re: How do you install PB on Fedora 17 KDE 32-bit?
Posted: Sat Sep 01, 2012 4:59 pm
by Polo
Poshu wrote:But, as with most things with linux, you should rtfm before asking stupid question already answered 200 times on this very forum >.>
Why this language? Installing Purebasic on Linux is a bit confusing even with the checkinstall thing.
Re: How do you install PB on Fedora 17 KDE 32-bit?
Posted: Sat Sep 01, 2012 5:23 pm
by Poshu
Why this language? Installing Purebasic on Linux is a bit confusing even with the checkinstall thing.
I'm new to linux too (switched last week). Installing PB was as hard as reading the readme file and I guess you should not even dream of programming anything if you can't do that.
I was asking about Fedora not Ubuntu and KDE not Gnome. I also stated that I was new to Linux. Yes, I searched the forum for answers first to avoid responses from people like yourself.
I can't see why aving another desktop manager will change anything: you download the package and install it. Refere to your distro forum instead...
So, yeah you've been searching HARD as I can see, cause it took me at least 1 minute to find it!
http://purebasic.fr/english/viewtopic.p ... ra#p360057
Re: How do you install PB on Fedora 17 KDE 32-bit?
Posted: Sat Sep 01, 2012 6:51 pm
by Noble Bell
Wow! I wish a admin would close this thread. It seems my simple and legitimate question has been turned into a war. Nice! Real nice!!
Re: How do you install PB on Fedora 17 KDE 32-bit?
Posted: Fri Oct 26, 2012 11:33 am
by Golfy
As this post hasn't been locked and I was installed today Purebasic 5.0 (beta7) on a Fedora Linux 64bits virtualized on Win7 (with VirtualBox), here is a command I've found on an other post (open a terminal, and be admin --> "su") :
Code: Select all
tar xvzf purebasic.tgz --directory=/usr/share/; apt-get -y install libgtk2.0-dev libsdl1.2-dev libsdl1.2debian-oss; ln -s /usr/share/purebasic/compilers/pbcompiler /usr/bin/pbcompiler; ln -s /usr/share/purebasic/compilers/fasm /usr/bin/fasm; ln -s /usr/share/purebasic/compilers/purebasic /usr/bin/purebasic; purebasic
It has extract all files (write a lot of lines) and open Purebasic IDE (Purebasic is running)
Then I've tested
And quick run works
Hope that will help any other guy who need to do cross-platform apps without learning full linux environnement

Re: How do you install PB on Fedora 17 KDE 32-bit?
Posted: Sun Oct 28, 2012 2:46 pm
by uwekel
Hi,
i also use Fedora 17 32-bit. To use PB, i got to install some dependancies. Open the terminal and enter the following command:
yum -y install gcc libstdc++-devel gtk+devel libgnome-devel libstdc++-static
Maybe i have not taken all things into account, but for my way of programming it works. I installed Purebasic in the /usr/bin/purebasic location. If you want to access the executable from the starter panel at the left side of the Gnome desktop, you have to create the file /usr/share/applications/purebasic.desktop with at least the following text content:
[Desktop Entry]
Name=PureBasic
GenericName=PureBasic
Exec=/usr/bin/purebasic/compilers/purebasic
Terminal=false
Type=Application
StartupNotify=true
Icon=/usr/bin/purebasic/logo.png
MimeType=application/x-executable;
Categories=GNOME;GTK;Development;IDE;
Best regards
Uwe