console based sound control

2011-04-03 Thread Alokat

Hi,

I'm looking for a sound control tool (like alsamixer) but for oss.

Does someone know one?

Regards,
alokat
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: console based sound control

2011-04-03 Thread Alokat

On 04/03/11 16:31, Bruce Cran wrote:

On 03/04/2011 14:59, Alokat wrote:


I'm looking for a sound control tool (like alsamixer) but for oss.

Does someone know one?


Have you tried mixer(8)?
http://www.freebsd.org/cgi/man.cgi?query=mixerapropos=0sektion=0manpath=FreeBSD+8.2-RELEASEformat=html 




Thanks works fine ...
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


use CD burner on thinkpad x300

2011-03-28 Thread Alokat

Hi,

how can I use the CD burner on my Thinkpad x300?
If I start Brasero I just get Please replace the disc with a supported 
CD or DVD.


I have added atapicam_load=YES to /boot/loader.conf but it doesn't 
work 


Regards,
alokat
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


searching for a good IDE

2011-03-27 Thread Alokat

Hi,

I'm searching for a good IDE for my development stuff - c, c++, python, 
rails, php 

Can someone advise one?
And I don't wanna use eclipse. :-)

Regards,
alokat
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: searching for a good IDE

2011-03-27 Thread Alokat

On 03/27/11 15:49, Bruce Cran wrote:

On Sun, 27 Mar 2011 15:41:28 +0200
Alokatmail...@alokat.org  wrote:


I'm searching for a good IDE for my development stuff - c, c++,
python, rails, php 
Can someone advise one?
And I don't wanna use eclipse. :-)

KDevelop (http://www.kdevelop.org/) 4 is quite good.


Maybe ... but it's QT! :(
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Sound with FN Button

2011-03-24 Thread Alokat

Hi,

how can I use the FN Buttons to regular the sound?
I'm using fluxbox.

Regards,
alokat
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Sound with FN Button

2011-03-24 Thread Alokat

On 03/24/11 21:52, Polytropon wrote:

On Thu, 24 Mar 2011 21:28:05 +0100, Alokatmail...@alokat.org  wrote:

Hi,

how can I use the FN Buttons to regular the sound?
I'm using fluxbox.

Use the xev program to check which keysymbols (or at
least codes) are output by those keys. For example, on
my Sun keyboard I have those for audio:

141
142
143

Then write a file ~/.xmodmaprc to assign names to those
keys, for example:

! Sound off
keycode 141 = F24
! Lower volume
keycode 142 = F25
! Raise volume
keycode 143 = F26

You can also use

SunAudioMute
SunAudioLowerVolume
SunAudioRaiseVolume

or

XF86AudioMute
XF86AudioLowerVolume
XF86AudioRaiseVolume

I decided to continue the enumeration as function keys for
all the extra keys on my keyboard. :-)

Incorporate the settings upon X startup, using ~/.xinitrc
or maybe ~/.xsession:

xmodmap ~/.xmodmaprc

Then use the keyboard action configuration of Fluxbox. As I
don't use it anymore, I can't tell you where it is, but there
should be a configuration file which selects which action to
be taken when a specific key is pressed.

I'm using WindowMaker's configuration utility for that. I did
add menu entries and set a custom key for them. For example,
I made the following settings:

F24 -  mixer 0
F25 -  mixer vol -5
F26 -  mixer vol +5

You should be able to find a similar approach in FLuxbox.

I'm sure you got the idea: You identify what the keys DO and
then connect them to a keyname. This keyname is then connected
to a specific program call, mixer with the intended parameters
in case of volume control.





I get an output like this:

FocusOut event, serial 31, synthetic NO, window 0x181,
mode NotifyGrab, detail NotifyAncestor

FocusIn event, serial 31, synthetic NO, window 0x181,
mode NotifyUngrab, detail NotifyAncestor

KeymapNotify event, serial 31, synthetic NO, window 0x0,
keys:  2   0   0   0   0   0   0   0   0   0   0   0   0   0   0   0
   0   0   0   0   0   0   1   0   0   0   0   0   0   0   0   0

FocusOut event, serial 31, synthetic NO, window 0x181,
mode NotifyGrab, detail NotifyAncestor

FocusIn event, serial 31, synthetic NO, window 0x181,
mode NotifyUngrab, detail NotifyAncestor

KeymapNotify event, serial 31, synthetic NO, window 0x0,
keys:  2   0   0   0   0   0   0   0   0   0   0   0   0   0   0   0
   0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   0
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Sound with FN Button

2011-03-24 Thread Alokat

On 03/24/11 23:04, Polytropon wrote:

On Thu, 24 Mar 2011 22:52:03 +0100, Alokatmail...@alokat.org  wrote:

On 03/24/11 21:52, Polytropon wrote:

On Thu, 24 Mar 2011 21:28:05 +0100, Alokatmail...@alokat.org   wrote:

Hi,

how can I use the FN Buttons to regular the sound?
I'm using fluxbox.

Use the xev program to check which keysymbols (or at
least codes) are output by those keys. For example, on
my Sun keyboard I have those for audio:

141
142
143


I get an output like this:

FocusOut event, serial 31, synthetic NO, window 0x181,
  mode NotifyGrab, detail NotifyAncestor

FocusIn event, serial 31, synthetic NO, window 0x181,
  mode NotifyUngrab, detail NotifyAncestor

KeymapNotify event, serial 31, synthetic NO, window 0x0,
  keys:  2   0   0   0   0   0   0   0   0   0   0   0   0   0   0   0
 0   0   0   0   0   0   1   0   0   0   0   0   0   0   0   0

FocusOut event, serial 31, synthetic NO, window 0x181,
  mode NotifyGrab, detail NotifyAncestor

FocusIn event, serial 31, synthetic NO, window 0x181,
  mode NotifyUngrab, detail NotifyAncestor

KeymapNotify event, serial 31, synthetic NO, window 0x0,
  keys:  2   0   0   0   0   0   0   0   0   0   0   0   0   0   0   0
 0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   0

You need to look for those events:

KeyPress event, serial 27, synthetic NO, window 0x201,
 root 0x73, subw 0x0, time 3923776537, (162,2), root:(271,490),
 state 0x10, keycode 154 (keysym 0xffd4, F23), same_screen YES,
 XLookupString gives 0 bytes:
 XmbLookupString gives 0 bytes:
 XFilterEvent returns: False

KeyRelease event, serial 27, synthetic NO, window 0x201,
 root 0x73, subw 0x0, time 3923776635, (162,2), root:(271,490),
 state 0x10, keycode 154 (keysym 0xffd4, F23), same_screen YES,
 XLookupString gives 0 bytes:
 XFilterEvent returns: False

The 2nd line, the information in the middle is important:
keycode 154 (keysym 0xffd4, F23): It indicates that the
keycode generated has been identified with the code 154,
and this code is already mapped to the symbol F23. This
is (just for completeness) the Cut key of the 2x5 field
to the left.

Erm... just a side question... you're refering to pressing
the Fn key with a function key (e. g. Fn+F1) for volume
control, or are there other special keys for volume? I'm
asking this as in the past, volume control was managed by
the BIOS (I think), but NOT by the operating system or
application programs. This means it was possible to change
the volume INDEPENDENTLY from any driver. I'm not sure if
this is still the case. Maybe - just MAYBE - you need a
hardware and software (!) specific driver to do those
basic things... history teaches that all the simple things
that worked in the past are a high mountain to climb today...
thanks to YOU, hardware manufacturers! :-)

Please understand the paragraph as follows: MAYBE (!!!) it's
not even possible to do what you're intending.


No I don't .. I thought it, but the volume buttons are extra buttons - 
without FN.


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


installing freebsd on a thinkpad x300

2011-03-18 Thread Alokat

Hi,

I have successfully installed FreeBSD on my x300 but I have some driver 
problems.


Does someone know how to figure out which driver I need for the sound 
and the wlan card?
And the second point is: does someone know a GUI network manager I can 
use for xfce4?


Regards,
alokat

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


display resolution on my thinkpad t61

2011-02-25 Thread Alokat

Hi,

I'm trying to modify my screen resolutions (use an external and the 
internal monitor).


xrandr -q says:

Screen 0: minimum 320 x 200, current 1440 x 960, maximum 2720 x 1024
VGA connected 1440x900+0+0 (normal left inverted right x axis y axis) 
408mm x 255mm

   1440x900   59.9*+   75.0
   1280x1024  75.0 60.0
   1280x960   60.0
   1152x864   75.0
   1024x768   75.0 70.1 66.0 60.0
   832x62474.6
   800x60072.2 75.0 60.3 56.2
   640x48075.0 72.8 66.7 66.0 59.9
   720x40070.1
LVDS connected 1280x960+0+0 (normal left inverted right x axis y axis) 
331mm x 207mm

   1280x1024  85.0 75.0 60.0
   1280x960   85.0*60.0
   1152x864   75.0
   1024x768   85.0 75.0 70.1 60.0
   832x62474.6
   800x60085.1 72.2 75.0 60.3 56.2
   640x48085.0 72.8 75.0 59.9
   720x40085.0
   640x40085.1
   640x35085.1
TMDS-1 disconnected (normal left inverted right x axis y axis)

1440x900 is enough for the external but the internal can / should use 
1680x1050.

How can I add this to xrandr?

Regards,
alokat
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: display resolution on my thinkpad t61

2011-02-25 Thread Alokat

On 02/25/11 22:45, Alokat wrote:

Hi,

I'm trying to modify my screen resolutions (use an external and the 
internal monitor).


xrandr -q says:

Screen 0: minimum 320 x 200, current 1440 x 960, maximum 2720 x 1024
VGA connected 1440x900+0+0 (normal left inverted right x axis y axis) 
408mm x 255mm

   1440x900   59.9*+   75.0
   1280x1024  75.0 60.0
   1280x960   60.0
   1152x864   75.0
   1024x768   75.0 70.1 66.0 60.0
   832x62474.6
   800x60072.2 75.0 60.3 56.2
   640x48075.0 72.8 66.7 66.0 59.9
   720x40070.1
LVDS connected 1280x960+0+0 (normal left inverted right x axis y axis) 
331mm x 207mm

   1280x1024  85.0 75.0 60.0
   1280x960   85.0*60.0
   1152x864   75.0
   1024x768   85.0 75.0 70.1 60.0
   832x62474.6
   800x60085.1 72.2 75.0 60.3 56.2
   640x48085.0 72.8 75.0 59.9
   720x40085.0
   640x40085.1
   640x35085.1
TMDS-1 disconnected (normal left inverted right x axis y axis)

1440x900 is enough for the external but the internal can / should use 
1680x1050.

How can I add this to xrandr?

Regards,
alokat
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to 
freebsd-questions-unsubscr...@freebsd.org

I got it ...
Just started without the external monitor and after that use this command:

 xrandr --output LVDS --primary --output VGA --auto --left-of LVDS

Now the internal monitor is the primary .. contains the Fluxbox menu and 
the external is the secondary.

Just for showing some stuff ...

Regards,
alokat
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


bash can not find most of my commands

2011-02-22 Thread Alokat

Hi,

I have changed my shell from csh to bash ...
But after that I have to call reboot like /sbin/reboot.

How can I change that without changing the shell. :)

my /root/.profile:

PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/games:/usr/local/sbin:/usr/local/bin
export PATH
HOME=/root
export HOME
TERM=${TERM:-cons25}
export TERM
PAGER=more
export PAGER

Regards,
Alokat
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: bash can not find most of my commands

2011-02-22 Thread Alokat

On 02/22/11 17:44, Rolf Nielsen wrote:

2011-02-22 17:40, Alokat skrev:

Hi,

I have changed my shell from csh to bash ...


Why?
Do you use root as your regular login?


But after that I have to call reboot like /sbin/reboot.

How can I change that without changing the shell. :)

my /root/.profile:

PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/games:/usr/local/sbin:/usr/local/bin 



export PATH
HOME=/root
export HOME
TERM=${TERM:-cons25}
export TERM
PAGER=more
export PAGER

Regards,
Alokat
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to
freebsd-questions-unsubscr...@freebsd.org



___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to 
freebsd-questions-unsubscr...@freebsd.org

It's just for example ... :)
I have a non root login for regular stuff.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: bash can not find most of my commands

2011-02-22 Thread Alokat

On 02/22/11 17:49, Paul Macdonald wrote:

On 22/02/2011 16:40, Alokat wrote:

Hi,

I have changed my shell from csh to bash ...
But after that I have to call reboot like /sbin/reboot.

How can I change that without changing the shell. :)


don't change your root shell!

csh is in the base system so is safe and will always* work,

bash is a port and gets updated regularly, there's been at least one 
occasion when my bash upgrade failed and i couln't login as root.  
very frustrating..


I just get used to changing to bash after that, much safer!

Paul.




Paul has satisfied me. I have changed back to csh.

Thank for help.

Regards,
alokat
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: shutdown computer after the halt command

2011-02-08 Thread Alokat

On 02/08/2011 01:26 AM, Eitan Adler wrote:

if I use the *halt* command I just see the system is halted press any
key to reboot
How can I fix this?
   

shutdown -p now
don't use halt directly

   

Thanks works as expected ...

Regards,
alokat
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: some problems with vim

2011-02-08 Thread Alokat

On 02/08/2011 01:48 AM, Devin Teske wrote:

On Mon, 2011-02-07 at 16:25 -0800, Devin Teske wrote:

   

On Tue, 2011-02-08 at 01:10 +0100, Alokat wrote:

 

Hi,

I have some problems by using vim.

arrow up prints a B
arrow down prints a C
...

How can I fix this?
   


Try adding to ~/.vimrc

set t_ku=^[[1;2B
set t_kd=^[[1;2C

 


Minor note (hit send after forgetting the pit-fall many fall into):

^[ above is a single character produced by the two keystrokes:

 Control+V followed by Control+[

NOTE: Or, you can use... Control+V followed by Escape
--
Devin



   

You didn't mention what left/right do. But here's a guess:

set t_kr=^[[1;2A
set t_kl=^[[1;2D

NOTE: You'll have to re-launch vim after creating ~/.vimrc

Alternatively, this may be an artifact of an incorrectly-set TERM
variable...

try (if you're using csh or tcsh):

setenv TERM vt100

(or if you're using sh or bash):

export TERM=vt100

NOTE: you'll have to re-launch vim after changing TERM
--
Devin



 

Regards,
alokat

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org
   


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org
 


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org

Thanks to all.

The

set t_kr=^[[1;2A
set t_kl=^[[1;2D

solution had fixed my problem.

Regards,
alokat

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


shutdown computer after the halt command

2011-02-07 Thread Alokat

Hi,

if I use the *halt* command I just see the system is halted press any 
key to reboot

How can I fix this?
*
Halt* should cut off my laptop.

Regards,
alokat
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


some problems with vim

2011-02-07 Thread Alokat

Hi,

I have some problems by using vim.

arrow up prints a B
arrow down prints a C
...

How can I fix this?

Regards,
alokat

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


FreeBSD Thinkpad t41

2011-01-19 Thread Alokat

Hi,

I have successfully installed FreeBSD on my T41.

But I have some Questions:

em0 doesn't start automatically.
Only when I use /etc/rc.d/routing restart it works.

And the next Point is: how can I get access to my Wlan card?

I have tried

if_ath_load=YES

and

if_wi_load=YES

in /boot/loader.conf but both didn't work.

Do I need a special driver? Or did I forgot something else?

Regards,
Alokat
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: FreeBSD Thinkpad t41

2011-01-19 Thread Alokat

On 01/19/2011 09:52 PM, Brian Callahan wrote:



On Wed, Jan 19, 2011 at 3:40 PM, Alokat mail...@alokat.org 
mailto:mail...@alokat.org wrote:


Hi,

I have successfully installed FreeBSD on my T41.

But I have some Questions:

em0 doesn't start automatically.
Only when I use /etc/rc.d/routing restart it works.


# echo 'ifconfig_em0=DHCP'  /etc/rc.conf


And the next Point is: how can I get access to my Wlan card?

I have tried

if_ath_load=YES

and

if_wi_load=YES

in /boot/loader.conf but both didn't work.

Do I need a special driver? Or did I forgot something else?


Assuming you're using 8.x (and you're using ath) add this to /etc/rc.conf:
wlans_ath0=wlan0
ifconfig_wlan0=DHCP


Regards,
Alokat
___
freebsd-questions@freebsd.org
mailto:freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to
freebsd-questions-unsubscr...@freebsd.org
mailto:freebsd-questions-unsubscr...@freebsd.org



I'm sorry but my WLAN Light is off.
And I guess it should be on if FreeBSD is talking to this.

Regards,
alokat
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: FreeBSD Thinkpad t41

2011-01-19 Thread Alokat

On 01/19/2011 11:13 PM, Maciej Milewski wrote:


On Wednesday 19 of January 2011 21:40:23, Alokat wrote:

 Hi,



 I have successfully installed FreeBSD on my T41.



 But I have some Questions:



 em0 doesn't start automatically.

Is it DHCP or static IP?

 Only when I use /etc/rc.d/routing restart it works.



 And the next Point is: how can I get access to my Wlan card?

 I have tried

 if_ath_load=YES

 and

 if_wi_load=YES

 in /boot/loader.conf but both didn't work.

 Do I need a special driver? Or did I forgot something else?

 Regards,

 Alokat

Please show the output of pciconf -lv there should be some info about 
your pci devices and wlan card should be among them. Maybe it's one of 
the intel cards which are supported by ipw or iwi driver?


Regards,

Maciej Milewski


It's DHCP ... dont know why ... but it is working now ...:-)

Here is the putput from pciconf -lv

hostb0@pci0:0:0:0:  class=0x06 card=0x05291014 chip=0x33408086 rev=0x03 
hdr=0x00
vendor = 'Intel Corporation'
device = '82855PM Processor to I/O Controller'
class  = bridge
subclass   = HOST-PCI
pcib1@pci0:0:1:0:   class=0x060400 card=0x chip=0x33418086 rev=0x03 
hdr=0x01
vendor = 'Intel Corporation'
device = '82855PM Processor to AGP Controller'
class  = bridge
subclass   = PCI-PCI
uhci0@pci0:0:29:0:  class=0x0c0300 card=0x052d1014 chip=0x24c28086 rev=0x01 
hdr=0x00
vendor = 'Intel Corporation'
device = '82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) USB UHCI Controller *1'
class  = serial bus
subclass   = USB
uhci1@pci0:0:29:1:  class=0x0c0300 card=0x052d1014 chip=0x24c48086 rev=0x01 
hdr=0x00
vendor = 'Intel Corporation'
device = '82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) USB UHCI Controller *2'
class  = serial bus
subclass   = USB
uhci2@pci0:0:29:2:  class=0x0c0300 card=0x052d1014 chip=0x24c78086 rev=0x01 
hdr=0x00
vendor = 'Intel Corporation'
device = '82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) USB UHCI Controller *3'
class  = serial bus
subclass   = USB
ehci0@pci0:0:29:7:  class=0x0c0320 card=0x052e1014 chip=0x24cd8086 rev=0x01 
hdr=0x00
vendor = 'Intel Corporation'
device = '82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) USB 2.0 EHCI Controller'
class  = serial bus
subclass   = USB
pcib2@pci0:0:30:0:  class=0x060400 card=0x chip=0x24488086 rev=0x81 
hdr=0x01
vendor = 'Intel Corporation'
device = '82801 Family (ICH2/3/4/5/6/7/8/9-M) Hub Interface to PCI 
Bridge'
class  = bridge
subclass   = PCI-PCI
isab0@pci0:0:31:0:  class=0x060100 card=0x chip=0x24cc8086 rev=0x01 
hdr=0x00
vendor = 'Intel Corporation'
device = '82801DBM (ICH4-M) LPC Interface Bridge'
class  = bridge
subclass   = PCI-ISA
atapci0@pci0:0:31:1:class=0x01018a card=0x052d1014 chip=0x24ca8086 rev=0x01 
hdr=0x00
vendor = 'Intel Corporation'
device = '82801DBM (ICH4-M) UltraATA/100 EIDE Controller'
class  = mass storage
subclass   = ATA
none0@pci0:0:31:3:  class=0x0c0500 card=0x052d1014 chip=0x24c38086 rev=0x01 
hdr=0x00
vendor = 'Intel Corporation'
device = '82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) SMBus Controller'
class  = serial bus
subclass   = SMBus
none1@pci0:0:31:5:  class=0x040100 card=0x05371014 chip=0x24c58086 rev=0x01 
hdr=0x00
vendor = 'Intel Corporation'
device = 'Realtek AC97 Audio (82801DBM SoundMAXController (ICH4-M B0 
step))'
class  = multimedia
subclass   = audio
none2@pci0:0:31:6:  class=0x070300 card=0x05241014 chip=0x24c68086 rev=0x01 
hdr=0x00
vendor = 'Intel Corporation'
device = '82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) AC'97 Modem Controller'
class  = simple comms
subclass   = generic modem
vgapci0@pci0:1:0:0: class=0x03 card=0x05301014 chip=0x4c571002 rev=0x00 
hdr=0x00
vendor = 'ATI Technologies Inc. / Advanced Micro Devices, Inc.'
device = 'Mobility Radeon 7500 (M7 [LW])'
class  = display
subclass   = VGA
cbb0@pci0:2:0:0:class=0x060700 card=0x05521014 chip=0xac46104c rev=0x01 
hdr=0x02
vendor = 'Texas Instruments (TI)'
device = 'PCCard CardBus Controller (PCI4520)'
class  = bridge
subclass   = PCI-CardBus
cbb1@pci0:2:0:1:class=0x060700 card=0x05521014 chip=0xac46104c rev=0x01 
hdr=0x02
vendor = 'Texas Instruments (TI)'
device = 'PCCard CardBus Controller (PCI4520)'
class  = bridge
subclass   = PCI-CardBus
em0@pci0:2:1:0: class=0x02 card=0x05491014 chip=0x101e8086 rev=0x03 hdr=0x00
vendor = 'Intel Corporation'
device = 'Gigabit Ethernet Controller (Mobile) (82540EP)'
class  = network
subclass   = ethernet
none3@pci0:2:2:0:   class=0x028000 card=0x25518086 chip=0x10438086 rev=0x04 
hdr=0x00
vendor = 'Intel Corporation

harddrive encryption

2011-01-17 Thread Alokat

Hi,

is it possible to encrypt my full harddrive (excluding /boot) during a 
freebsd installation. Or do I have to do this after the installation 
manually?


cYa,
alokat
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Install gnome

2011-01-16 Thread Alokat

Hi guys,

I want to install gnome on my blank freeBSD.

pkg_add -r gnome2

Do I have to install something more (like the XServer) or does Gnome 
depends on X11 so it will be installed automatically?


cYa

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Install gnome

2011-01-16 Thread Alokat

It works now.

But after gdm is started I just see a small line (for the username) but 
this line is too small.


I have installed xorg and configured it as in the documentation.

cYa,
alokat

On 01/16/2011 07:20 PM, Alokat wrote:

Hi guys,

I want to install gnome on my blank freeBSD.

pkg_add -r gnome2

Do I have to install something more (like the XServer) or does Gnome 
depends on X11 so it will be installed automatically?


cYa

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to 
freebsd-questions-unsubscr...@freebsd.org


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Install gnome

2011-01-16 Thread Alokat

On 01/16/2011 08:37 PM, David Demelier wrote:

On 16/01/2011 20:02, Alokat wrote:

It works now.

But after gdm is started I just see a small line (for the username) but
this line is too small.

I have installed xorg and configured it as in the documentation.

cYa,
alokat

On 01/16/2011 07:20 PM, Alokat wrote:

Hi guys,

I want to install gnome on my blank freeBSD.

pkg_add -r gnome2

Do I have to install something more (like the XServer) or does Gnome
depends on X11 so it will be installed automatically?

cYa

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to
freebsd-questions-unsubscr...@freebsd.org


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to
freebsd-questions-unsubscr...@freebsd.org


You need procfs mounted under /proc

http://www.freebsd.org/gnome/docs/faq2.html#procfs

Add the following in your /etc/fstab :

proc/proc   procfs  rw 0 0


Cool it works ... thank you.

But why was this the error?

cYa,
alokat
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org