Problem installing Virtualbox

i was doing the gcc45 and some errors appeared.. error code 1 in:
Code:
    /usr/ports/math/mpfr 
    /usr/ports/devel/binutils.
    /usr/ports/lang/gcc45
 
Thanks for your answer i am afraid i will have to wait until friday... but well i think now i'm gonna follow you and it will work xD
can i ask what is ¿eisai? i can't remember the meaning :p
 
The right is "είσαι". Eisai is greeklish (greek with latin characters).Greeklish is terrible wrong and has nothing to do with our language. Just we use it when we send sms to write more quick :p
Eίσαι means: you are . From the verb είμαι (i am)
 
sk8harddiefast said:
Code:
pkg_add -r mpfr
cd /usr/ports/lang/gcc45
make clean
make install clean

after doing this, another error message appeared, it says :
Code:
gmp-5.0.1 conflicts with installed package:
libgmp-4.3.1´they install files into the same place
            please remove them first with pkg delete

and when i try to use pkg delete, the system doesn't allow me ,
Code:
pkg_Delete: pakcage ligmp-4.3.1 is required by there other packages and may not be deinstalled
and there make a list of other ports(i think)
 
Try
Code:
pkg_info | grep ligmp
If returns none results means that is deinstalled.
If returns ligmp-4.3.1 and the expression of the package means that is not deinstalled.
When you deinstall a package that is required by other packages always shows the list of the packages that is required.
If don't let you to deinstall it maybe you need root permissions. That means sudo.
Code:
sudo pkg_delete -f ligmp-4.3.1
Sudo is not on the base system but if sudo is installed then your system will ask permission for everything is stated on sudo config file.
Also you can try to deinstall it from /usr/ports/math/libgmp4
 
well, without putting sudo but -f after pkg_delete, i coulddo it, and now the new version of gcc45, gmp5.0 is installing =D
 
Stop in usr/ports/lang/gcc45

thats where i am now, first of all i don't know how i get here :p i was trying to install vbox-ose.... but well... i could upddate gmp but i have a problem with or sth like this:

error in ...../build/x86_64-portbld-freebsd8.0/libgcc

---------------------------

and also the directory of virtual-box ose, i do makeinstall ---> ......./../virtualbox-3.1.8_OSE/env.sh No Such file or directory
 
Make ports tree update.
I think there is newest version of virtualbox.
In fact always make ports tree update.
Every 2-3 hours there are new updates :)
And ~ 1 time per month recompile all packages of your system.
Also run pkgdb -F to see if returns errors!
 
well i am afraid and at same time happy, after being all the afternoon working on bsd, virtualbox worked, well not yet, but it is now installed, now i have to install x11, because i think vbox need a graphic interface, (afreaid because i didn't update the ports tree and i installed vbox 3.1.18 i think and now there it is 3.2.4 but well... anyways my teacher told me, don't do anything... xD try to do it works like it is..... so well on friday i will have to install x11 and graphics, is there any that you would recomend me ?
 
when you say graphics you mean window manager,desktop enviroment etc?
If you mean wm, i recommend dwm or fluxbox.
If you mean desktop enviroment, i recommend xfce or lxde :)

For me the best is dwm. has no dependencies. Is just a source code.
Here is some screenshots.
http://fc09.deviantart.net/fs24/f/2007/334/3/9/dwm_screenshot_30_11_07_by_PhrA0k.png
http://freduardo.files.wordpress.com/2008/11/dwm-yellow.png
http://wzff.de/~n0nsense/screenshot/dwm-gtx-blue-new-screenrc.png
http://fc02.deviantart.com/fs49/f/2009/206/e/2/New_Laptop_by_Dethredic.png
http://img504.imageshack.us/f/screenan2.png/
Works with key combinations. For example to open the terminal you press alt+shift+enter :)
In fact dwm is tiling window manager.
Tiling window managers have no window decoration :)
Simple,easy to learn,really fast and if you use it for a long time you make the setup of your choise in 5 minutes!!!!
All source is ~2000 lines of C code and just everytime you want to make a change,change the config.h file and you recompile it!!!
For this reason don't download it from ports. Take the source from the official site http://dl.suckless.org/dwm/
 
hi, again... today i've used virtualbox =D, my teacher showed me that i could use the gui from another pc. with setenv DISPLAY...and well that's how i executed vbox...but i didn't install any gui in my pc. it is the same to install a window maker as dwm?? or i need sth like kdm..- anyways he tell me all time that i don't need wm, but well... i want to do it :p
mm...
with dwm, i have to visit this page http://dl.suckless.org/dwm/ using freebsd?? How ??
 
Normally if you want to install a wm, you do it from ports. Also tiling wm you can install them from ports but the have the default "enviroment".
If you want to customize them, you need the source. So there is no reason to install them from ports. You are doing exact the same that ports do but you have the choise of customization because you have the source.If you install them from ports the source also can be found on /usr/ports/distfiles

So if you are not doing it from ports do this:
Code:
fetch http://dl.suckless.org/dwm/dwm-5.8.tar.gz
Extract the tar and inside the folder there is a file named config.h
This is your config file to make all your changes.
Open it with your favorite editor (ee is the default by the system)
And now make the changes.
The first section is appearance. Change the color with them you like.
On the section tagging you can change the name of desktops.
If you don't want to say 1,2,3,4,5 ect can say xterm,web,media etc
Mine is:
Code:
static const char *tags[] = { "xterm", "web", "media", "work", "task", "prog", "tools", "misc", };
On the section commands on "static const char *termcmd" set your terminal.
I use urxvt so mine is:
Code:
static const char *termcmd[]  = { "urxvt", NULL };

That's it!
Save the file

Now run
Code:
make install CC=gcc45
And will create a binary file on /usr/local/bin named dwm
This is your wm
Now go to /home/user
Open the .xinitrc file with ee (if don't exist create it) and copy this
Code:
setxkbmap -option terminate:ctrl_alt_bksp
feh --bg-scale [B]set the path of you wallpaper[/B]
while true; 
do
   xsetroot -name  ["$(date +"%a %b %d %r")"]
   sleep 1s
done &
exec dwm

Now run startx and thats it!!!
You have dwm :)
 
=D, now i am trying to re-do the same i do at school,in order to learn a bit more..i have just installed freebsd :p
i want to ask you sth, everytime you answer me, from what SO are you doing it?

Also thanks for the explanation of dwm now i will try to do it work, i have only 2 doubts,

1_ On the section commands on "static const char *termcmd" set your terminal.
I use urxvt so mine is:------- That is the name of the terminal, right ?

2_feh --bg-scale set the path of you wallpaper-------- i don't get how to have a wallpaper in freebsd xD jaja
 
SO? System Operating? From my Freebsd Desktop pc of course! :)
Yeap. urxvt is a terminal.
Run
Code:
cd /usr/ports/x11/rxvt-unicode
make config (Now choose the flags you think you need)
make install clean
to install it from ports
Wallpaper is the last thing you will set up :p
But also you see that needs feh
So Run
Code:
cd /usr/ports/graphics/feh && make install clean
 
better :p, now it says cannot open display.. i don't know if i do it well the part of set the path of you wallpaper, i putted the directory and the name of the file, foe example, /home/nono/photo
 
i don't think so, i didn't installed xorg, and also my card is one ati HD 4870 :p, tomorrow i will continue installing the dwm... now i'm gonna relax
bye bye, thanks for your help ;)
 
Code:
console# startx

xauth: creating new autority file /root/.serverrauth.53133
xauth: argv:1 bad display name "noe:0" in "list" command
xauth: stdin:1: bad display name "Noe:0" in "add" command
X.org server 1.6.1
.......bla..bla....
(EE) failed to load module "fbdev"(modle does not exist,0)
(EE) No devices detected

Fatal server error:
no screens found

thats the error i have when i use startx, i installed xorg, as it say here
http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/x-install.html
 
It could be useful for sk28:
1. output of uname -a
2. output of dmesg | grep vga
3. your /etc/xorg.conf
4. What is your monitor? Default resolution. HorizSync. VertRefresh.
5. your /var/log/Xorg.0.log (prepare just in case, don't attach yet)
Should be enough to troubleshoot.
 
Back
Top