Re: Starting X - was Re: Vista / FreeBSD dual boot

2008-01-30 Thread Siraj Shaikh
On 29/01/2008, doug [EMAIL PROTECTED] wrote:
 On Tue, 29 Jan 2008, Siraj Shaikh wrote:

  On 29/01/2008, Siraj Shaikh [EMAIL PROTECTED] wrote:
  On 29/01/2008, doug [EMAIL PROTECTED] wrote:
  On Tue, 29 Jan 2008, Siraj Shaikh wrote:
 
  One question: I have just installed FreeBSD 6.3, and tried startx
  but it isnt coming up, giving some sort of error. Am I missing
  something here? I did choose for Windows X during the FreeBSD setup
  - shall I do a port upgrade?
 
  Thanks
 
  This is really a new thread. The handbook Chapter 5, The X Window System 
  has the
  steps to follow. If your video card is support, it will just work.
 
  http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/x-install.html
 
 
 
  I installed FreeBSD 6.3 and asked for X during the step. The link only
  shows me how to add the X package. Shall I add the package right on
  top now, or shall I remove X first, and then install the port/package
  after that?
 
  Thanks
 
  I have just reinstalled Xorg (using the xorg port) and tried startx
  again but it doesnt work. The error message is something like
 
  (EE) Failed to load module fbdev (module does not exist, 0)
  (WW) I810: No matching Device section for instance (BusID PCI:0:2:1) found
  (II) Module ddc already built-in
  (EE) VESA(0): No matching modes
  (EE) Screen(s) found, but none have a usable configuration
 
  Fatal server error:
  no screens found
  X connection to :0.0 broken (explicit kill or server shutdown)
 
  Please help!!!

 This looks like you did not configure X. As the handbook 5.4.2 says if startx
 does not work you need to run: Xorg -configure and then test that with

Xorg -config xorg.conf.new

 If your Xorg is  7.3 you have to do this. Depending on the defaults selected
 and your video card, you may need to edit your screen section. Xorg 7 did not
 work for me. In Xorg 6 all setup is manual and required. My screen section:

 Section Screen
 Identifier Screen0
 Device Card0
 MonitorMonitor0
 #   DefaultDepth 16
 SubSection Display
 Viewport   0 0
 Depth 1
 EndSubSection
 SubSection Display
 Viewport   0 0
 Depth 4
 EndSubSection
 SubSection Display
 Viewport   0 0
 Depth 8
 EndSubSection
 SubSection Display
 Viewport   0 0
 Depth 15
 EndSubSection
 SubSection Display
 Viewport   0 0
 Depth 16
 Modes 1280x1024
 EndSubSection
 SubSection Display
 Viewport   0 0
 Depth 24
 Modes 1280x1024
 EndSubSection
 EndSection



I did configure Xorg as it said in the handbook, but after that the
test didnt work, still gave me the same error. I then installed from a
port (I assume that will be the latest Xorg 7.3 is it? How can I check
what version do I have?

What is way forward now? uninstall this and install Xorg 6?
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: OT: Downloading file by sending email

2008-01-30 Thread Wojciech Puchar
Thanks Olivier. I was stumped on how to make maildrop pipe the email to some 
program. A bit of research on that (and reading the manpages) showed me how. 
Now that I've figured that part, the problem is not too difficult. Gotta make 
a shell/ perl script now to parse the message and do the downloading etc ...


such kind of service is one of the easiest to be abused
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: OT: Downloading file by sending email

2008-01-30 Thread Wojciech Puchar


I want to setup a service such that sending a mail to say 
[EMAIL PROTECTED] with a list of links per line results in my machine 
downloading the files at these links replying with all these files attached.


Is there any port which provides a functionality like this? Or is it possible 
to put together such a setup in place? I tried a Google search but didn't


very easy using just bash curl metamail etc...

but first think about protecting it from abuse like

a) someone will use it as spamming machine, writing advert as image, and 
sending it through your service to 10 users (using your bandwidth) by 
using robot that will 10 times request to send an URL to mail.


b) someone else will be trying to overload your service requesting to mail 
lots of huge files many times (limit total size+size of one file)




you must do something like captcha or at least - first sending mail 
without attachment like this


- Someone - possibly you - requested to download and send such files:

URL list here

to your mail.

if it's you, jest use reply with this code: unique code here


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


Re: OT: Downloading file by sending email

2008-01-30 Thread Rakhesh Sasidharan

Wojciech Puchar wrote:



I want to setup a service such that sending a mail to say 
[EMAIL PROTECTED] with a list of links per line results in my machine 
downloading the files at these links replying with all these files 
attached.


Is there any port which provides a functionality like this? Or is it 
possible to put together such a setup in place? I tried a Google search but 
didn't


very easy using just bash curl metamail etc...

but first think about protecting it from abuse like


Thanks Wojciech.

Actually, I am setting this up just for my use. (Place I work doesn't 
allow downloads, and sometimes I need to download a thing or two, so 
thought let me set something like this up for my own use). But your points 
make sense. I'll try and make sure the service isn't abuse-able.


Thanks again for the pointers!

Regards,
Rakhesh




a) someone will use it as spamming machine, writing advert as image, and 
sending it through your service to 10 users (using your bandwidth) by 
using robot that will 10 times request to send an URL to mail.


b) someone else will be trying to overload your service requesting to mail 
lots of huge files many times (limit total size+size of one file)




you must do something like captcha or at least - first sending mail without 
attachment like this


- Someone - possibly you - requested to download and send such files:

URL list here

to your mail.

if it's you, jest use reply with this code: unique code here


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



Rakhesh

---
http://rakhesh.net/
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Starting X - was Re: Vista / FreeBSD dual boot

2008-01-30 Thread Frank Shute
On Wed, Jan 30, 2008 at 09:08:59AM +, Siraj Shaikh wrote:

 On 29/01/2008, doug [EMAIL PROTECTED] wrote:
  On Tue, 29 Jan 2008, Siraj Shaikh wrote:
 
   On 29/01/2008, Siraj Shaikh [EMAIL PROTECTED] wrote:
   On 29/01/2008, doug [EMAIL PROTECTED] wrote:
  
   I have just reinstalled Xorg (using the xorg port) and tried startx
   again but it doesnt work. The error message is something like
  
   (EE) Failed to load module fbdev (module does not exist, 0)
   (WW) I810: No matching Device section for instance (BusID PCI:0:2:1) found
   (II) Module ddc already built-in
   (EE) VESA(0): No matching modes
   (EE) Screen(s) found, but none have a usable configuration
  
   Fatal server error:
   no screens found
   X connection to :0.0 broken (explicit kill or server shutdown)
  
   Please help!!!
 
  This looks like you did not configure X. As the handbook 5.4.2
  says if startx does not work you need to run: Xorg -configure and
  then test that with
 
 Xorg -config xorg.conf.new
 
  If your Xorg is  7.3 you have to do this. Depending on the
  defaults selected and your video card, you may need to edit your
  screen section. Xorg 7 did not work for me. In Xorg 6 all setup is
  manual and required. My screen section: 

 
  Section Screen
  Identifier Screen0
  Device Card0
  MonitorMonitor0
  #   DefaultDepth 16
  SubSection Display
  Viewport   0 0
  Depth 1
  EndSubSection
  SubSection Display
  Viewport   0 0
  Depth 4
  EndSubSection
  SubSection Display
  Viewport   0 0
  Depth 8
  EndSubSection
  SubSection Display
  Viewport   0 0
  Depth 15
  EndSubSection
  SubSection Display
  Viewport   0 0
  Depth 16
  Modes 1280x1024
  EndSubSection
  SubSection Display
  Viewport   0 0
  Depth 24
  Modes 1280x1024
  EndSubSection
  EndSection
 
 
 
 I did configure Xorg as it said in the handbook, but after that the
 test didnt work, still gave me the same error. I then installed from a
 port (I assume that will be the latest Xorg 7.3 is it? How can I check
 what version do I have?
 
 What is way forward now? uninstall this and install Xorg 6?

Check that you have xf86-video-i810 installed:

$ pkg_info | grep i810

If not, install it.

Try:

# Xorg -configure

again.

Then:

# X -config xorg.conf.new

If it doesn't work, post xorg.conf.new to this list.


-- 

 Frank 


 Contact info: http://www.esperance-linux.co.uk/misc/contact.html 

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


Nvidia video driver and Fb7

2008-01-30 Thread Kemian Dang

Hi, everyone,
I have installed the FB7-rc1 and the nvidia driver from port and kept 
update to the newest version, but when I change the xorg.conf to use the 
nvidia instead of nv, the X gave a complain about no /dev/nvidiactl 
and stops, so I can only use nv, which seems slow on some 3d application.
I tried to download the source from nvidia web page to compile, but it 
said it is not for fb7 now. But, when I install from port, it did not 
give any error or warning.



So, have anyone tried nvidia driver on fb7 and succeed? Please give some 
advice on how to solve this problem.


Best wishes,
Kemian
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Nvidia video driver and Fb7

2008-01-30 Thread Daniel Bye
On Wed, Jan 30, 2008 at 12:25:41PM +, Kemian Dang wrote:
 Hi, everyone,
 I have installed the FB7-rc1 and the nvidia driver from port and kept 
 update to the newest version, but when I change the xorg.conf to use the 
 nvidia instead of nv, the X gave a complain about no /dev/nvidiactl 
 and stops, so I can only use nv, which seems slow on some 3d application.
 I tried to download the source from nvidia web page to compile, but it 
 said it is not for fb7 now. But, when I install from port, it did not 
 give any error or warning.
 
 
 So, have anyone tried nvidia driver on fb7 and succeed? Please give some 
 advice on how to solve this problem.

Yep, no problems here. Are you sure the driver is loaded into your
kernel?

 # kldstat
 Id Refs AddressSize Name
 1   15 0xc040 550b18   kernel
 22 0xc099c000 28638linux.ko
 ...
 51 0xc0a18000 693b10   nvidia.ko

You need these lines in /boot/loader.conf:

nvidia_load=YES
linux_load=YES

(The Linux mod is if you built the driver with support for Linux
DRI)

Dan

-- 
Daniel Bye
 _
  ASCII ribbon campaign ( )
 - against HTML, vCards and  X
- proprietary attachments in e-mail / \


pgpuF6ZQHazRM.pgp
Description: PGP signature


vi+urxvt8.9+oxim for traditional chinese, HOW??

2008-01-30 Thread Tsu-Fan Cheng
Hi,
   I use rxvt-unicode8.9+oxim, want to vi a text document in
tradictional chinese. I have locale set as LC_CTYPE=zh_TW.UT-8. I
first have my input looks like xx/xx/. Then I set LC_CTYPE to
en_US.ISO8859-1, I got nothing. How should I get this done?? thank
you!!

(freebsd 6.2)


TFC
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Nvidia video driver and Fb7

2008-01-30 Thread Baptiste Grenier
Le 30/01/08 à 13:32, Kemian Dang téléscripta :
 Hi, everyone,
 I have installed the FB7-rc1 and the nvidia driver from port and kept 
 update to the newest version, but when I change the xorg.conf to use the 
 nvidia instead of nv, the X gave a complain about no /dev/nvidiactl and 
 stops, so I can only use nv, which seems slow on some 3d application.
 I tried to download the source from nvidia web page to compile, but it said 
 it is not for fb7 now. But, when I install from port, it did not give any 
 error or warning.
 
 
 So, have anyone tried nvidia driver on fb7 and succeed? Please give some 
 advice on how to solve this problem.

Hi,
Are you loading the nvidia module at boot time? I remember someone
explaining that the nvidia module needs to register the card before the
kernel. A kldload is unsifficient, you need to reboot with this in your
/boot/loader.conf:

-8---
nvidia_load=YES
-8---

HTH,
Baptiste

-- 
Baptiste Grenier | PGP: 0x069112E2
HealthGrid SysAdmin
http://healthgrid.org/


pgpDeYEHjiYJ1.pgp
Description: PGP signature


Re: Nvidia video driver and Fb7

2008-01-30 Thread Kemian Dang

Hi,
It works, thanks a lot.
But, it seems the size of the font is larger than before, anyway the 
main problem is not the font size:)


Best wishes,
Kemain

Baptiste Grenier 写道:

Le 30/01/08 à 13:32, Kemian Dang téléscripta :
  

Hi, everyone,
I have installed the FB7-rc1 and the nvidia driver from port and kept 
update to the newest version, but when I change the xorg.conf to use the 
nvidia instead of nv, the X gave a complain about no /dev/nvidiactl and 
stops, so I can only use nv, which seems slow on some 3d application.
I tried to download the source from nvidia web page to compile, but it said 
it is not for fb7 now. But, when I install from port, it did not give any 
error or warning.



So, have anyone tried nvidia driver on fb7 and succeed? Please give some 
advice on how to solve this problem.



Hi,
Are you loading the nvidia module at boot time? I remember someone
explaining that the nvidia module needs to register the card before the
kernel. A kldload is unsifficient, you need to reboot with this in your
/boot/loader.conf:

-8---
nvidia_load=YES
-8---

HTH,
Baptiste

  


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


Re: vi+urxvt8.9+oxim for traditional chinese, HOW??

2008-01-30 Thread Alphons Fonz van Werven

Tsu-Fan Cheng wrote:


   I use rxvt-unicode8.9+oxim, want to vi a text document in
tradictional chinese.


Pffft. I have used Japanese with FreeBSD years ago (I was in love
with a Japanese woman at the time, don't ask). If I can find how I
got everything working back then, I'll let you know.

I do remember it was a royal pain in the butt to get everything working...

Alphons

--
VISTA - Viruses Intruders Spyware Trojans Adware

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


7.0 installation problem

2008-01-30 Thread FreeBSD User
Hello,

I have tried installing FreeBSD 7.0-Current for amd64, and I am having
problems with my mouse and video card.

My hardware is as follows:

Gigabyte p35-ds3r motherboard
Intel Core 2 Quad 2.4GHz (Q6600)
NVidia 8400GS
Microsoft Comfort Optical 3000 mouse
Microsoft Natural Ergonomic Keyboard 4000

Problem 1:
The mouse is not working at all.  When I look at the output of dmesg,
I see the mouse (ums0), however no movement.  I have gone into sysinstall
and tried every available option under mouse configuration, but I can't get
it to work.

Problem 2:
I cannot get X started.  I get the following errors:

Failed to load module nv (module does not exist, 0)
Failed to load module mouse (module does not exist, 0)
Failed to load module kbd (module does not exist, 0)
No drivers available

Chris
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Dump and restore for Windows partitions

2008-01-30 Thread Martin Boulianne
Hi,
Maybe this is a dumb question, but I was wondering if I could use
dump (and restore) on Windows NTFS partitions.

Say I have a NTFS partition, ad0s1. Could I use:
   # dump -b 4 -f /backups/winxp.dump /dev/ad0s1

Or after a restore, Windows would be able to read the files? What about dd,
with something like:
   # dd if=/dev/ad0s1 of=/backups/winxp.bck bs=4k


Thanks!! =)
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Dump and restore for Windows partitions

2008-01-30 Thread Alex Zbyslaw

Martin Boulianne wrote:


Maybe this is a dumb question, but I was wondering if I could use
dump (and restore) on Windows NTFS partitions.

Say I have a NTFS partition, ad0s1. Could I use:
  # dump -b 4 -f /backups/winxp.dump /dev/ad0s1
 

No.  Dump is specific to ufs/ufs2 filesystems.  It specifically knows 
the format of the filesystem (superblocks, inodes, directories etc).  
You just get an error if you try:


(cartman)103% dump -0 -f /tmp/foo /windows
 DUMP: Date of this level 0 dump: Wed Jan 30 15:23:25 2008
 DUMP: Date of last level 0 dump: the epoch
 DUMP: Dumping /dev/ad4s1 (/windows) to /tmp/foo
 DUMP: Cannot find file system superblock
 DUMP: The ENTIRE dump is aborted.

I don't know if there are NTFS utils running on FreeBSD that could do 
similar - others may, or search the ports for NTFS related software and 
see what the pkg-descr files say.


--Alex

PS  A question is only dumb if you ask the same one repeatedly.  This 
question might demonstrate some ignorance, but we were all ignorant once 
and questions are one of the best cures!  IMHO, of course. (In the 
computer world, manuals are another cure but the page for dump was 
written when UFS was the *only* filesystem that worked on BSD, so fails 
to actually answer your question). 


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


Re: Dump and restore for Windows partitions

2008-01-30 Thread Jerry McAllister
On Wed, Jan 30, 2008 at 09:18:53AM -0500, Martin Boulianne wrote:

 Hi,
 Maybe this is a dumb question, but I was wondering if I could use
 dump (and restore) on Windows NTFS partitions.
 
 Say I have a NTFS partition, ad0s1. Could I use:
# dump -b 4 -f /backups/winxp.dump /dev/ad0s1

Well, I htink it would work for a FATnn slice, but I don't
know about NTFS.

 Or after a restore, Windows would be able to read the files? What about dd,
 with something like:
# dd if=/dev/ad0s1 of=/backups/winxp.bck bs=4k

The problem is that dd copies essentially byte-by-byte and so it
might not restore in the fashion you wish.   Label blocks and file
links would all have to be identical - which they might not be in
a real life situation.  But, give it a try.
Copy it with dd and then restore it with dd back to a different
slice and see what happens.

jerry

 
 Thanks!! =)
 ___
 freebsd-questions@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to [EMAIL PROTECTED]
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


From James Adamati

2008-01-30 Thread James Adamati
Hi, 


How are you doing today? My name is James Adamati I live in London and work in 
a financial institution here in United Kingdom. There is a potential 
transaction relating to a dormant account of one of our deceased customers, 
which I would like us to handle the fund actualization together. Secondly, I 
hope to relocate and acquire a home for my family with a view to establishing 
over there. I will be needing your assistance and co-operation in this 
endeavor. Let me know if I can trust you with the above and more information 
will be sent to you as quickly as possible.For further details,please contact 
me through my private email-
 
Respectfully,
James Adamati



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


Re: Network configuration in FreeBSD

2008-01-30 Thread Bhuvaneswari Ramkumar
I did have an IP address assigned to my ethernet interface( using the
ifconfig command)  but I'm unable to ping anybody in my LAN.

On Tue, Jan 29, 2008 at 10:38 AM, आशीष Ashish [EMAIL PROTECTED] wrote:

 ,--[ On Tuesday 29 Jan 2008, Giorgos Keramidas wrote:
 | On 2008-01-28 21:03, Bhuvaneswari Ramkumar [EMAIL PROTECTED] wrote:

 [...]

 | Hmmm.  There seems to be something very 'odd' about your interfaces.
 |
 |   * There is no `lo0' loopback interface, which commonly uses the
 | 127.0.0.1 address.

 Quoting Bhuvaneswari's output of ifconfig -a and netstat -nr:

 --
 #ifconfig -a

 em0: flags=8802BROADCAST, SIMPLEX, MULTICAST mtu 1500
 options=bRXSCUM, TXSCUM, VLAN_MTU
 ether :0d:56:f0:f1:ba
 media:Ethernet autoselect (100baseTX full-duplex)
 status: active

 plip0:flags=108810POINTTOPOINT,SIMPLEX,MULTICAST mtu 1500
 lo0:flags=8049UP, LOOPBACK,RUNNING,MULTICAST MTU 16384
 inet 127.0.0.1 netmask 0xff00
 inet ::1 prefixlen 128
 inet6 fe80 :: 1% lo0 prefixlen 64 scopeid 0x3
 --

 If you notice in the above there is already a lo0 interface, it is just
 that
 he missed a newline between plip0 and lo0 interface lines. So it seems you
 missed the lo0 interface :) .

 So all he has to do is just assign some inet address to 'em0' interface,
 and
 ping other nodes in his LAN :) . And then when done testing IP network in
 LAN, he can add a default route and try connecting to other hosts in the
 internet.

 HTH
 --
 Ashish Shukla आशीष शुक्ल
 http://wahjava.wordpress.com/
 ·-- ·-  ·--- ·- ···- ·- ·--·-· --· -- ·- ·· ·-·· ·-·-·- -·-· --- --

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

Automatic `nodump' flag?

2008-01-30 Thread Mikhail Teterin
Hello!

I'd like the entire contents of each user's .mozilla/firefox/*/Cache directory 
to be excluded from the regular filesystem dumps.

Running ``chflags -R nodump /home/*/.mozilla/firefox/*/Cache'' does the trick, 
but this needs to be redone daily -- prior to running the backup -- because 
new entries appear in the caches, obviously... The new entries don't have the 
nodump flag set.

Is there a way, the flag can be set automatically? For example, inherited from 
the directory? Thanks!

 -mi
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Network configuration in FreeBSD

2008-01-30 Thread आशीष Ashish
,--[ On Wednesday 30 Jan 2008, Bhuvaneswari Ramkumar wrote:
| I did have an IP address assigned to my ethernet interface( using the
| ifconfig command)  but I'm unable to ping anybody in my LAN.

In the 'ifconfig -a' output you posted earlier, the 'em0' (your desired 
interface) interface neither has any IP address assigned to it, nor its UP . 
So, if you've assigned an IP address to 'em0', then also make sure its UP, by 
doing 'ifconfig em0 up' .

HTH
-- 
Ashish Shukla आशीष शुक्ल  http://wahjava.wordpress.com/
·-- ·-  ·--- ·- ···- ·- ·--·-· --· -- ·- ·· ·-·· ·-·-·- -·-· --- --


signature.asc
Description: This is a digitally signed message part.


Re: Network configuration in FreeBSD

2008-01-30 Thread Bhuvaneswari Ramkumar
ifconfig em0 up also doesnt help ping my LAN.

the ifconfig -a output now reads the IP I just added, as well as the
net-mask  the 100 Mbps active linnk.

quick question :

I did an ifconfig em0 1.1.1.2  yday.should this be done everytime I restart
my application, is it some kind of a temporary address assignment, bcos
whatever I assigned was not visible today when I re-booted and I had to do
it again, probably I should set this in the conf file also ? maybe as
another user said my NIC is not enabled or something like that.


On Wed, Jan 30, 2008 at 12:14 PM, आशीष Ashish [EMAIL PROTECTED] wrote:

 ,--[ On Wednesday 30 Jan 2008, Bhuvaneswari Ramkumar wrote:
 | I did have an IP address assigned to my ethernet interface( using the
 | ifconfig command)  but I'm unable to ping anybody in my LAN.

 In the 'ifconfig -a' output you posted earlier, the 'em0' (your desired
 interface) interface neither has any IP address assigned to it, nor its UP
 .
 So, if you've assigned an IP address to 'em0', then also make sure its UP,
 by
 doing 'ifconfig em0 up' .

 HTH
 --
 Ashish Shukla आशीष शुक्ल
 http://wahjava.wordpress.com/
 ·-- ·-  ·--- ·- ···- ·- ·--·-· --· -- ·- ·· ·-·· ·-·-·- -·-· --- --

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

Re: 7.0 installation problem

2008-01-30 Thread Daniel Bye
On Wed, Jan 30, 2008 at 09:53:14AM -0500, FreeBSD User wrote:
 Hello,
 
 I have tried installing FreeBSD 7.0-Current for amd64, and I am having
 problems with my mouse and video card.
 
 My hardware is as follows:
 
 Gigabyte p35-ds3r motherboard
 Intel Core 2 Quad 2.4GHz (Q6600)
 NVidia 8400GS
 Microsoft Comfort Optical 3000 mouse
 Microsoft Natural Ergonomic Keyboard 4000
 
 Problem 1:
 The mouse is not working at all.  When I look at the output of dmesg,
 I see the mouse (ums0), however no movement.  I have gone into sysinstall
 and tried every available option under mouse configuration, but I can't get
 it to work.
 
 Problem 2:
 I cannot get X started.  I get the following errors:
 
 Failed to load module nv (module does not exist, 0)
 Failed to load module mouse (module does not exist, 0)
 Failed to load module kbd (module does not exist, 0)
 No drivers available

Try the following:

 # cd /usr/ports/x11-drivers/xorg-drivers
 # make config

Are the relevant items for mouse, keyboard and the nv driver checked?
If not, check them and try reinstalling the drivers package.

HTH

Dan

-- 
Daniel Bye
 _
  ASCII ribbon campaign ( )
 - against HTML, vCards and  X
- proprietary attachments in e-mail / \


pgphvcFMhFAuB.pgp
Description: PGP signature


Re: Network configuration in FreeBSD

2008-01-30 Thread Alphons Fonz van Werven

Bhuvaneswari Ramkumar wrote:


I did an ifconfig em0 1.1.1.2  yday.should this be done everytime I restart
my application, is it some kind of a temporary address assignment, bcos
whatever I assigned was not visible today when I re-booted and I had to do
it again, probably I should set this in the conf file also ? maybe as
another user said my NIC is not enabled or something like that.


Once it works, all this stuff can be put in /etc/rc.conf, don't worry
about that.

Alphons

--
VISTA - Viruses Intruders Spyware Trojans Adware

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


Re: Starting X - was Re: Vista / FreeBSD dual boot

2008-01-30 Thread doug

On Wed, 30 Jan 2008, Siraj Shaikh wrote:


On 29/01/2008, doug [EMAIL PROTECTED] wrote:

On Tue, 29 Jan 2008, Siraj Shaikh wrote:


On 29/01/2008, Siraj Shaikh [EMAIL PROTECTED] wrote:

On 29/01/2008, doug [EMAIL PROTECTED] wrote:

On Tue, 29 Jan 2008, Siraj Shaikh wrote:


One question: I have just installed FreeBSD 6.3, and tried startx
but it isnt coming up, giving some sort of error. Am I missing
something here? I did choose for Windows X during the FreeBSD setup
- shall I do a port upgrade?


[cut]


(EE) Failed to load module fbdev (module does not exist, 0)
(WW) I810: No matching Device section for instance (BusID PCI:0:2:1) found
(II) Module ddc already built-in
(EE) VESA(0): No matching modes
(EE) Screen(s) found, but none have a usable configuration

Fatal server error:
no screens found
X connection to :0.0 broken (explicit kill or server shutdown)


[cut x config stuff]


I did configure Xorg as it said in the handbook, but after that the
test didnt work, still gave me the same error. I then installed from a
port (I assume that will be the latest Xorg 7.3 is it? How can I check
what version do I have?

What is way forward now? uninstall this and install Xorg 6?


 1) Post xorg.conf.new as suggested.
 2) pkg_info | grep xorg  will show you whats installed
 3) check the hardware list to see if there are know issues
 4) Google the error and freebsd + xorg + your system

You will get the most (probably) from posting xorg.conf.new. along with
'uname -a' output. Don't edit it just send it to the list avoiding line 
wrapping.



_
Douglas Denault
http://www.safeport.com
[EMAIL PROTECTED]
Voice: 301-469-8766
  Fax: 301-469-0601
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Automatic `nodump' flag?

2008-01-30 Thread Alex Zbyslaw

Mikhail Teterin wrote:

I'd like the entire contents of each user's .mozilla/firefox/*/Cache directory 
to be excluded from the regular filesystem dumps.


Running ``chflags -R nodump /home/*/.mozilla/firefox/*/Cache'' does the trick, 
but this needs to be redone daily -- prior to running the backup -- because 
new entries appear in the caches, obviously... The new entries don't have the 
nodump flag set.


Is there a way, the flag can be set automatically? For example, inherited from 
the directory? Thanks!
 

Well, the nodump flag is sort of inherited from the directory, since if 
the directory has the flag neither it nor anything in it will be dumped 
(assuming correct use of -h flag.  -h 0 ensuring *never* dumped).


Have you tried just setting the flag on the directories?  It works for me...

--Alex

PS It's a slightly different problem if you do want the directory dumped 
but not any files in it; then you do have to resort to palaver like the 
above.  You could write a script or an alias that does the chflags and 
then runs the dump, though.


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


Re: Network configuration in FreeBSD

2008-01-30 Thread Jerry McAllister
On Wed, Jan 30, 2008 at 12:19:33PM -0500, Bhuvaneswari Ramkumar wrote:

 ifconfig em0 up also doesnt help ping my LAN.
 
 the ifconfig -a output now reads the IP I just added, as well as the
 net-mask  the 100 Mbps active linnk.
 
 quick question :
 
 I did an ifconfig em0 1.1.1.2  yday.should this be done everytime I restart
 my application, is it some kind of a temporary address assignment, bcos
 whatever I assigned was not visible today when I re-booted and I had to do
 it again, probably I should set this in the conf file also ? maybe as
 another user said my NIC is not enabled or something like that.

You have to put it in /etc/rc.conf so it will be taken care of during
network initialization each time you boot. Everything at startup
reads the /etc/rc.conf and finds variables it needs to do its startup
and network startup does that too.   So, you put in a line like:

  ifconfig_em0=inet 1.1.1.2  netmask 255.255.255.0
and
  defaultrouter=1.1.1.3

Amongst a number of other startup settings in /etc/rc.conf

network startup sees those and says 'oh, I know what to do with those'
and runs the ifconfig, etc.   
Note that putting it in rc.cong only causes a 'ifconfig_em0' variable 
to be set toinet 1.1.1.2  netmask 255.255.255.0
and the 'defaultrouter' variable to be set to 1.1.1.3
It is up to the startup programs to do something about it.

The startup programs are generally run from the /etc/rc script and
from other scripts that it runs.

jerry

 
 
 On Wed, Jan 30, 2008 at 12:14 PM,  Ashish [EMAIL PROTECTED] 
 wrote:
 
  ,--[ On Wednesday 30 Jan 2008, Bhuvaneswari Ramkumar wrote:
  | I did have an IP address assigned to my ethernet interface( using the
  | ifconfig command)  but I'm unable to ping anybody in my LAN.
 
  In the 'ifconfig -a' output you posted earlier, the 'em0' (your desired
  interface) interface neither has any IP address assigned to it, nor its UP
  .
  So, if you've assigned an IP address to 'em0', then also make sure its UP,
  by
  doing 'ifconfig em0 up' .
 
  HTH
  --
  Ashish Shukla  ???
  http://wahjava.wordpress.com/
  ·-- ·-  ·--- ·- ···- ·- ·--·-· --· -- ·- ·· ·-·· ·-·-·- -·-· --- --
 

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


Re: Network configuration in FreeBSD

2008-01-30 Thread Bhuvaneswari Ramkumar
with the above assigned IP address and net-mask I'm reading to make it work
and ping my LAN successfully ( which it doesn't now)  before I put them in
the rc.conf script.

On Wed, Jan 30, 2008 at 12:51 PM, Jerry McAllister [EMAIL PROTECTED] wrote:

 On Wed, Jan 30, 2008 at 12:19:33PM -0500, Bhuvaneswari Ramkumar wrote:

  ifconfig em0 up also doesnt help ping my LAN.
 
  the ifconfig -a output now reads the IP I just added, as well as the
  net-mask  the 100 Mbps active linnk.
 
  quick question :
 
  I did an ifconfig em0 1.1.1.2  yday.should this be done everytime I
 restart
  my application, is it some kind of a temporary address assignment, bcos
  whatever I assigned was not visible today when I re-booted and I had to
 do
  it again, probably I should set this in the conf file also ? maybe as
  another user said my NIC is not enabled or something like that.

 You have to put it in /etc/rc.conf so it will be taken care of during
 network initialization each time you boot. Everything at startup
 reads the /etc/rc.conf and finds variables it needs to do its startup
 and network startup does that too.   So, you put in a line like:

  ifconfig_em0=inet 1.1.1.2  netmask 255.255.255.0
 and
  defaultrouter=1.1.1.3

 Amongst a number of other startup settings in /etc/rc.conf

 network startup sees those and says 'oh, I know what to do with those'
 and runs the ifconfig, etc.
 Note that putting it in rc.cong only causes a 'ifconfig_em0' variable
 to be set toinet 1.1.1.2  netmask 255.255.255.0
 and the 'defaultrouter' variable to be set to 1.1.1.3
 It is up to the startup programs to do something about it.

 The startup programs are generally run from the /etc/rc script and
 from other scripts that it runs.

 jerry

 
 
  On Wed, Jan 30, 2008 at 12:14 PM,  Ashish 
 [EMAIL PROTECTED] wrote:
 
   ,--[ On Wednesday 30 Jan 2008, Bhuvaneswari Ramkumar wrote:
   | I did have an IP address assigned to my ethernet interface( using
 the
   | ifconfig command)  but I'm unable to ping anybody in my LAN.
  
   In the 'ifconfig -a' output you posted earlier, the 'em0' (your
 desired
   interface) interface neither has any IP address assigned to it, nor
 its UP
   .
   So, if you've assigned an IP address to 'em0', then also make sure its
 UP,
   by
   doing 'ifconfig em0 up' .
  
   HTH
   --
   Ashish Shukla  ???
   http://wahjava.wordpress.com/
   ?-- ?-  ?--- ?- ???- ?- ?--?-? --? -- ?- ?? ?-?? ?-?-?- -?-? ---
 --
  

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

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

Re: Network configuration in FreeBSD

2008-01-30 Thread Bhuvaneswari Ramkumar
Is it a cause of concern if I dont have any route marked as default ?
I see so when i use the netstat command

On Wed, Jan 30, 2008 at 12:57 PM, Bhuvaneswari Ramkumar 
[EMAIL PROTECTED] wrote:

 with the above assigned IP address and net-mask I'm reading to make it
 work and ping my LAN successfully ( which it doesn't now)  before I put them
 in the rc.conf script.


 On Wed, Jan 30, 2008 at 12:51 PM, Jerry McAllister [EMAIL PROTECTED]
 wrote:

  On Wed, Jan 30, 2008 at 12:19:33PM -0500, Bhuvaneswari Ramkumar wrote:
 
   ifconfig em0 up also doesnt help ping my LAN.
  
   the ifconfig -a output now reads the IP I just added, as well as the
   net-mask  the 100 Mbps active linnk.
  
   quick question :
  
   I did an ifconfig em0 1.1.1.2  yday.should this be done everytime I
  restart
   my application, is it some kind of a temporary address assignment,
  bcos
   whatever I assigned was not visible today when I re-booted and I had
  to do
   it again, probably I should set this in the conf file also ? maybe as
   another user said my NIC is not enabled or something like that.
 
  You have to put it in /etc/rc.conf so it will be taken care of during
  network initialization each time you boot. Everything at startup
  reads the /etc/rc.conf and finds variables it needs to do its startup
  and network startup does that too.   So, you put in a line like:
 
   ifconfig_em0=inet 1.1.1.2  netmask 255.255.255.0
  and
   defaultrouter=1.1.1.3
 
  Amongst a number of other startup settings in /etc/rc.conf
 
  network startup sees those and says 'oh, I know what to do with those'
  and runs the ifconfig, etc.
  Note that putting it in rc.cong only causes a 'ifconfig_em0' variable
  to be set toinet 1.1.1.2  netmask 255.255.255.0
  and the 'defaultrouter' variable to be set to 1.1.1.3
  It is up to the startup programs to do something about it.
 
  The startup programs are generally run from the /etc/rc script and
  from other scripts that it runs.
 
  jerry
 
  
  
   On Wed, Jan 30, 2008 at 12:14 PM,  Ashish 
  [EMAIL PROTECTED] wrote:
  
,--[ On Wednesday 30 Jan 2008, Bhuvaneswari Ramkumar wrote:
| I did have an IP address assigned to my ethernet interface( using
  the
| ifconfig command)  but I'm unable to ping anybody in my LAN.
   
In the 'ifconfig -a' output you posted earlier, the 'em0' (your
  desired
interface) interface neither has any IP address assigned to it, nor
  its UP
.
So, if you've assigned an IP address to 'em0', then also make sure
  its UP,
by
doing 'ifconfig em0 up' .
   
HTH
--
Ashish Shukla  ???
http://wahjava.wordpress.com/
?-- ?-  ?--- ?- ???- ?- ?--?-? --? -- ?- ?? ?-?? ?-?-?- -?-? ---
  --
   
 
   ___
   freebsd-questions@freebsd.org mailing list
   http://lists.freebsd.org/mailman/listinfo/freebsd-questions
   To unsubscribe, send any mail to 
  [EMAIL PROTECTED]
 


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

Re: 7.0 installation problem

2008-01-30 Thread Jonathan Chen
On Wed, Jan 30, 2008 at 09:53:14AM -0500, FreeBSD User wrote:

[...]
 Problem 2:
 I cannot get X started.  I get the following errors:
 
 Failed to load module nv (module does not exist, 0)
 Failed to load module mouse (module does not exist, 0)
 Failed to load module kbd (module does not exist, 0)

Make sure you install X by using the meta-port x11/xorg. You'll miss
stuff out if you install by hand.
-- 
Jonathan Chen [EMAIL PROTECTED]
---
One, with God, is always a majority, but many a martyr has been burned
   at the stake while the votes were being counted.  -- Thomas B. Reed
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Automatic `nodump' flag?

2008-01-30 Thread Dag-Erling Smørgrav
Mikhail Teterin [EMAIL PROTECTED] writes:
 I'd like the entire contents of each user's .mozilla/firefox/*/Cache
 directory to be excluded from the regular filesystem dumps.

 Running ``chflags -R nodump /home/*/.mozilla/firefox/*/Cache'' does
 the trick, but this needs to be redone daily -- prior to running the
 backup -- because new entries appear in the caches, obviously... The
 new entries don't have the nodump flag set.

 Is there a way, the flag can be set automatically? For example,
 inherited from the directory? Thanks!

Hmm, shoudn't whichever backup tool you're using stop when it encounters
a nodump directory?  You shouldn't need to set nodump on the files
themselves.

DES
-- 
Dag-Erling Smørgrav - [EMAIL PROTECTED]
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Network configuration in FreeBSD

2008-01-30 Thread Bhuvaneswari Ramkumar
An explicit call to /etc/netstart tells me that the route  devd with their
pids are already running - though I dont know if this takes into account the
new chages I've done  restarts the network.

On Wed, Jan 30, 2008 at 1:01 PM, Bhuvaneswari Ramkumar [EMAIL PROTECTED]
wrote:

 Is it a cause of concern if I dont have any route marked as default ?
 I see so when i use the netstat command


 On Wed, Jan 30, 2008 at 12:57 PM, Bhuvaneswari Ramkumar 
 [EMAIL PROTECTED] wrote:

  with the above assigned IP address and net-mask I'm reading to make it
  work and ping my LAN successfully ( which it doesn't now)  before I put them
  in the rc.conf script.
 
 
  On Wed, Jan 30, 2008 at 12:51 PM, Jerry McAllister [EMAIL PROTECTED]
  wrote:
 
   On Wed, Jan 30, 2008 at 12:19:33PM -0500, Bhuvaneswari Ramkumar wrote:
  
ifconfig em0 up also doesnt help ping my LAN.
   
the ifconfig -a output now reads the IP I just added, as well as the
net-mask  the 100 Mbps active linnk.
   
quick question :
   
I did an ifconfig em0 1.1.1.2  yday.should this be done everytime I
   restart
my application, is it some kind of a temporary address assignment,
   bcos
whatever I assigned was not visible today when I re-booted and I had
   to do
it again, probably I should set this in the conf file also ? maybe
   as
another user said my NIC is not enabled or something like that.
  
   You have to put it in /etc/rc.conf so it will be taken care of during
   network initialization each time you boot. Everything at startup
   reads the /etc/rc.conf and finds variables it needs to do its startup
   and network startup does that too.   So, you put in a line like:
  
ifconfig_em0=inet 1.1.1.2  netmask 255.255.255.0
   and
defaultrouter=1.1.1.3
  
   Amongst a number of other startup settings in /etc/rc.conf
  
   network startup sees those and says 'oh, I know what to do with those'
   and runs the ifconfig, etc.
   Note that putting it in rc.cong only causes a 'ifconfig_em0' variable
   to be set toinet 1.1.1.2  netmask 255.255.255.0
   and the 'defaultrouter' variable to be set to 1.1.1.3
   It is up to the startup programs to do something about it.
  
   The startup programs are generally run from the /etc/rc script and
   from other scripts that it runs.
  
   jerry
  
   
   
On Wed, Jan 30, 2008 at 12:14 PM,  Ashish 
   [EMAIL PROTECTED] wrote:
   
 ,--[ On Wednesday 30 Jan 2008, Bhuvaneswari Ramkumar wrote:
 | I did have an IP address assigned to my ethernet interface(
   using the
 | ifconfig command)  but I'm unable to ping anybody in my LAN.

 In the 'ifconfig -a' output you posted earlier, the 'em0' (your
   desired
 interface) interface neither has any IP address assigned to it,
   nor its UP
 .
 So, if you've assigned an IP address to 'em0', then also make sure
   its UP,
 by
 doing 'ifconfig em0 up' .

 HTH
 --
 Ashish Shukla  ???
 http://wahjava.wordpress.com/
 ?-- ?-  ?--- ?- ???- ?- ?--?-? --? -- ?- ?? ?-?? ?-?-?- -?-?
   --- --

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

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

Re: Automatic `nodump' flag?

2008-01-30 Thread Barry Pederson

Mikhail Teterin wrote:

Hello!

I'd like the entire contents of each user's .mozilla/firefox/*/Cache directory 
to be excluded from the regular filesystem dumps.


Running ``chflags -R nodump /home/*/.mozilla/firefox/*/Cache'' does the trick, 
but this needs to be redone daily -- prior to running the backup -- because 
new entries appear in the caches, obviously... The new entries don't have the 
nodump flag set.


Is there a way, the flag can be set automatically? For example, inherited from 
the directory? Thanks!


The dump man page for 6.2 says:

 Directories and regular files which have their ``nodump'' flag
 (UF_NODUMP) set will be omitted along with everything under such
 directories, subject to the -h option.

So if the Cache directories themselves are flagged, I think you'd be 
OK. Maybe


chflags nodump /home/*/.mozilla/firefox/*/Cache

(without the -R) would be a good thing to quickly make sure the 
directories are flagged in case the users delete/recreate the Cache 
folders, but wouldn't take as long as flagging each and every cache file.


You'd probably also want to add -h 0 to the dump args, otherwise the 
cache files would be included in level 0 dumps.


Barry
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


sendmail-1

2008-01-30 Thread sikhuomo

Hello,
Please, I am setting up an email system. I need advice.
How do it and where do I start from?
Thanks
Ikhu-Omoregbe, Smart
Helsinki University of Tcehnology,
Finland


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


Re: sendmail-1

2008-01-30 Thread Schiz0
On Jan 30, 2008 1:26 PM,  [EMAIL PROTECTED] wrote:
 Hello,
 Please, I am setting up an email system. I need advice.
 How do it and where do I start from?
 Thanks
 Ikhu-Omoregbe, Smart
 Helsinki University of Tcehnology,
 Finland


http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/sendmail.html
http://www.freebsd.org/cgi/man.cgi?query=sendmail
http://www.sendmail.org/doc/sendmail-current/doc/op/op.pdf
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Trying to setup a serial console on my desktop

2008-01-30 Thread आशीष Ashish
,--[ On Sunday 20 Jan 2008, WATANABE Kazuhiro wrote:
| Hello.

[...]

| loader.conf(5) says:
| | comconsole_speed
| |   (``9600'' or the value of the BOOT_COMCONSOLE_SPEED vari-
| |   able when loader(8) was compiled).  Sets the speed of the
| |   serial console.  If the previous boot loader stage speci-
| |   fied that a serial console is in use then the default
| |   speed is determined from the current serial port speed
| |   setting.
|
| If you specify to use a serial console via /boot.config and
| want to change the speed from 9600bps (default), you need to add
| the -S speed flag to your /boot.config.  See boot(8) for details.

By me specifying use of serial console via /boot.config, you mean '-D'
option, which I specified in /boot.config, hmm...?

If yes, then this means it'll override 'console' setting I specified
in loader.conf, hmm...? e.g. if I specified 'console=vidconsole' in
'loader.conf', but has '-D' in /boot.config, will I get output on both
serial and internal console, hmm...?

And BtW, if I specify anything at loader prompt, e.g. set
comconsole_speed=115200, it works, i.e. I can connect to serial
console at 115200 bps. So won't values specified at loader prompt have
same priority as values specified in loader.conf, hmm... ? Sorry I'm
bit confused regarding which gets priority, 'loader.conf' or
'boot.config'.

|  2. Keyboard doesn't work irrespective of '-P' being present in
|  /boot.config . So I can't login to any TTY or login to X via GDM.
| 
|  I'm following
|  http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/serialconsole-s
| etup.html
|
| Is a login prompt displayd to the video console?

I asked GDM service to start at startup. So I get a GDM GUI, but I
can't use my keyboard to enter my username there, not I'll be able to
switch TTYs, though mouse is working fine.

| If not, the system boot sequence may have been stopped at some kinds
| of daemon (sshd, sendmail, etc.).

I've all my hostname, and DNS stuff set up correctly, so there isn't
problem of any kind, as I see messages of sendmail, sshd starting on
my serial console at 9600bps. BtW, only 'dmesg' message appears on my
video console, whereas all kind of messages appear on serial console,
do I need some changes in syslog too to get all messages also on my
video console, hmm...?

TIA
-- 
Ashish Shukla आशीष शुक्ल  http://wahjava.wordpress.com/
·-- ·-  ·--- ·- ···- ·- ·--·-· --· -- ·- ·· ·-·· ·-·-·- -·-· --- --


signature.asc
Description: This is a digitally signed message part.


Re: Network configuration in FreeBSD

2008-01-30 Thread Bhuvaneswari Ramkumar
ok the local LAN ping works now

On Wed, Jan 30, 2008 at 1:52 PM, आशीष Ashish [EMAIL PROTECTED] wrote:

 ,--[ On Wednesday 30 Jan 2008, Bhuvaneswari Ramkumar wrote:
 | with the above assigned IP address and net-mask I'm reading to make it
 work
 | and ping my LAN successfully ( which it doesn't now)  before I put them
 in
 | the rc.conf script.

 BtW, what is your network prefix and subnet mask ? Also mention the IP
 address
 you're trying to ping and IP address and subnet mask, you assigned to your
 box ?

 --
 Ashish Shukla आशीष शुक्ल
 http://wahjava.wordpress.com/
 ·-- ·-  ·--- ·- ···- ·- ·--·-· --· -- ·- ·· ·-·· ·-·-·- -·-· --- --

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

Password file migration help

2008-01-30 Thread Sean Murphy
I have a FreeBSD 5.4 system and would like to migrate users in the 
password file with UIDs 3000 through 5000 to a FreeBSD 6.3 system on a 
running on a separate box.  Is there a way to export just those users?


Thanks
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Network configuration in FreeBSD

2008-01-30 Thread आशीष Ashish
,--[ On Wednesday 30 Jan 2008, Bhuvaneswari Ramkumar wrote:
| with the above assigned IP address and net-mask I'm reading to make it work
| and ping my LAN successfully ( which it doesn't now)  before I put them in
| the rc.conf script.

BtW, what is your network prefix and subnet mask ? Also mention the IP address 
you're trying to ping and IP address and subnet mask, you assigned to your 
box ?

-- 
Ashish Shukla आशीष शुक्ल  http://wahjava.wordpress.com/
·-- ·-  ·--- ·- ···- ·- ·--·-· --· -- ·- ·· ·-·· ·-·-·- -·-· --- --


signature.asc
Description: This is a digitally signed message part.


Re: Network configuration in FreeBSD

2008-01-30 Thread Reid Linnemann
Written by Bhuvaneswari Ramkumar on 01/30/08 13:02
 ok the local LAN ping works now
 

FYI, the handbook is very helpful.
 
(http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/config-network-setup.html)

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


Re: Password file migration help

2008-01-30 Thread Paul A. Procacci

Sean Murphy wrote:
I have a FreeBSD 5.4 system and would like to migrate users in the 
password file with UIDs 3000 through 5000 to a FreeBSD 6.3 system on a 
running on a separate box.  Is there a way to export just those users?


Thanks
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to 
[EMAIL PROTECTED]
Open vi/vim/etc on both machines via `vipw`, and copy 'n' paste.  Repeat 
for the group file in necessary.

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


unsubscribe is not working!

2008-01-30 Thread KAYVEN RIESE


is somebody trying to teach me a lesson?  {:P

*--*
  Kayven Riese, BSCS, MS (Physiology and Biophysics)
  (415) 902 5513 cellular
  http://kayve.net
  Webmaster http://ChessYoga.org
*--*
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Network configuration in FreeBSD

2008-01-30 Thread Michael Ross
On Wed, 30 Jan 2008 19:35:03 +0100, Bhuvaneswari Ramkumar  
[EMAIL PROTECTED] wrote:


An explicit call to /etc/netstart tells me that the route  devd with  
their
pids are already running - though I dont know if this takes into account  
the

new chages I've done  restarts the network.


Try
/etc/rc.d/netif restart

followed by
/etc/rc.d/routing restart


Michael


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


Re: Network configuration in FreeBSD

2008-01-30 Thread Alphons Fonz van Werven

Bhuvaneswari Ramkumar wrote:


ok the local LAN ping works now


At the risk of being obvious: please be so smart as to write down
the settings (and try to understand exactly why they are the way they
are) so you don't have to reinvent the wheel next time around.

Alphons

--
VISTA - Viruses Intruders Spyware Trojans Adware

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


WPA and static IP

2008-01-30 Thread Vince Hoffman

Hi all,
	I'm wondering if there is a way to specify WPA ad a static IP for an 
interface in /etc/rc.conf I've had a quick look though the handbook and 
google but all the examples use WPA and DHCP.


any suggestions welcome,
Cheers
Vince
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Password file migration help

2008-01-30 Thread Vince

Sean Murphy wrote:
I have a FreeBSD 5.4 system and would like to migrate users in the 
password file with UIDs 3000 through 5000 to a FreeBSD 6.3 system on a 
running on a separate box.  Is there a way to export just those users?



hmm very roughly just a
for uid in $(jot 2001 3000); do grep $uid /etc/master.passwd  
accountstokeep.txt ; done
should extract the accounts from the old server (no error checking 
though so if any other account has a gid in the range 3000 to 5000 it 
will also be caught.


Then in theory
cat accountstokeep.txt  /etc/master.passwd
followed by
pwd_mkdb -p /etc/master.passwd
should be enough.

Again care should be taken that there are no conflicting accounts 
already in the /etc/master.passwd file.

(a quick
for uid in $(jot 2001 3000); do grep $uid /etc/master.passwd ; done
on the new machine before adding to it should give you a quick check.)

dont forget to ensure shells and home directories are available as needed


Vince


Thanks
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to 
[EMAIL PROTECTED]


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


Re: DELIVERY FAILURE: 5.1.0 - Unknown address error 554-'5.7.1 [EMAIL PROTECTED]: Recipient address rejected: Access denied' (delivery attempts: 0)

2008-01-30 Thread KAYVEN RIESE


i'm not sure what has been happening exactly.  i am forwarding this
daemon bouncer.  i am trying to unsubscribe to the freeBSD-questions

On Wed, 30 Jan 2008, Mail Delivery System wrote:


Your message

 Subject: Re: mozilla cache partition mishap ?

was not delivered to:

 [EMAIL PROTECTED]

because:

 5.1.0 - Unknown address error 554-'5.7.1 [EMAIL PROTECTED]: Recipient 
address rejected: Access denied' (delivery attempts: 0)




*--*
  Kayven Riese, BSCS, MS (Physiology and Biophysics)
  (415) 902 5513 cellular
  http://kayve.net
  Webmaster http://ChessYoga.org
*--*
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Dump and restore for Windows partitions

2008-01-30 Thread Roland Smith
On Wed, Jan 30, 2008 at 09:18:53AM -0500, Martin Boulianne wrote:
 Hi,
 Maybe this is a dumb question, but I was wondering if I could use
 dump (and restore) on Windows NTFS partitions.
 
 Say I have a NTFS partition, ad0s1. Could I use:
# dump -b 4 -f /backups/winxp.dump /dev/ad0s1

Dump is only suited for FreeBSD's native UFS filesystem.
 
 Or after a restore, Windows would be able to read the files? What about dd,
 with something like:
# dd if=/dev/ad0s1 of=/backups/winxp.bck bs=4k

This should work, I think. But it will take up a lot of space, because
it will copy the every sector (even unused ones).

Unless there are special features of NTFS that you use, you could mount
the volume, and make a backup with zip(1) or tar(1). Note that with this method
you will probably lose any NTFS attributes. 

The port sysutils/ntfsprogs contains programs like ntfsclone and
ntfscp. Maybe those can be of use? 

Probably the best tool to completely backup an NTFS partition is a
windows-based tool.

Roland
-- 
R.F.Smith   http://www.xs4all.nl/~rsmith/
[plain text _non-HTML_ PGP/GnuPG encrypted/signed email much appreciated]
pgp: 1A2B 477F 9970 BA3C 2914  B7CE 1277 EFB0 C321 A725 (KeyID: C321A725)


pgpcUE6ka1gui.pgp
Description: PGP signature


Re: WPA and static IP

2008-01-30 Thread Peter Boosten

Vince Hoffman wrote:

Hi all,
I'm wondering if there is a way to specify WPA ad a static IP for an 
interface in /etc/rc.conf I've had a quick look though the handbook and 
google but all the examples use WPA and DHCP.




ifconfig_ath0=WPA inet 192.168.13.8 netmask 255.255.255.0

works for me.

Peter
--
http://www.boosten.org
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Wireless 3945ABG + conexa audio and FBSD 6.3R

2008-01-30 Thread Pietro Cerutti
Dead Line wrote:
 Hello All,
  
  May I ask the status of Intel PRO/Wireless 3945ABG driver with FreeBSD 6.3-R 
 ?
  I didnot find anything in the updated notes!

It's coming on 7-RELEASE.
You may want to check
http://www.clearchain.com/wiki/Wpi
it contains instructions to build the module from the perforce repository...

  
  Thank you,
Hope this helps,


  Marwan.


-- 
Pietro Cerutti

PGP Public Key:
http://gahr.ch/pgp



signature.asc
Description: OpenPGP digital signature


Re: Network configuration in FreeBSD

2008-01-30 Thread Jerry McAllister
On Wed, Jan 30, 2008 at 12:57:59PM -0500, Bhuvaneswari Ramkumar wrote:

 with the above assigned IP address and net-mask I'm reading to make it work
 and ping my LAN successfully ( which it doesn't now)  before I put them in
 the rc.conf script.

I am not quite sure what you are asking here, but you do have to
have the correct IP address and netmask and default router configured.
You can't just pick numbers out of the air. I just used your
example numbers in my response.

jerry

 
 On Wed, Jan 30, 2008 at 12:51 PM, Jerry McAllister [EMAIL PROTECTED] wrote:
 
  On Wed, Jan 30, 2008 at 12:19:33PM -0500, Bhuvaneswari Ramkumar wrote:
 
   ifconfig em0 up also doesnt help ping my LAN.
  
   the ifconfig -a output now reads the IP I just added, as well as the
   net-mask  the 100 Mbps active linnk.
  
   quick question :
  
   I did an ifconfig em0 1.1.1.2  yday.should this be done everytime I
  restart
   my application, is it some kind of a temporary address assignment, bcos
   whatever I assigned was not visible today when I re-booted and I had to
  do
   it again, probably I should set this in the conf file also ? maybe as
   another user said my NIC is not enabled or something like that.
 
  You have to put it in /etc/rc.conf so it will be taken care of during
  network initialization each time you boot. Everything at startup
  reads the /etc/rc.conf and finds variables it needs to do its startup
  and network startup does that too.   So, you put in a line like:
 
   ifconfig_em0=inet 1.1.1.2  netmask 255.255.255.0
  and
   defaultrouter=1.1.1.3
 
  Amongst a number of other startup settings in /etc/rc.conf
 
  network startup sees those and says 'oh, I know what to do with those'
  and runs the ifconfig, etc.
  Note that putting it in rc.cong only causes a 'ifconfig_em0' variable
  to be set toinet 1.1.1.2  netmask 255.255.255.0
  and the 'defaultrouter' variable to be set to 1.1.1.3
  It is up to the startup programs to do something about it.
 
  The startup programs are generally run from the /etc/rc script and
  from other scripts that it runs.
 
  jerry
 
  
  
   On Wed, Jan 30, 2008 at 12:14 PM,  Ashish 
  [EMAIL PROTECTED] wrote:
  
,--[ On Wednesday 30 Jan 2008, Bhuvaneswari Ramkumar wrote:
| I did have an IP address assigned to my ethernet interface( using
  the
| ifconfig command)  but I'm unable to ping anybody in my LAN.
   
In the 'ifconfig -a' output you posted earlier, the 'em0' (your
  desired
interface) interface neither has any IP address assigned to it, nor
  its UP
.
So, if you've assigned an IP address to 'em0', then also make sure its
  UP,
by
doing 'ifconfig em0 up' .
   
HTH
--
Ashish Shukla  ???
http://wahjava.wordpress.com/
?-- ?-  ?--- ?- ???- ?- ?--?-? --? -- ?- ?? ?-?? ?-?-?- -?-? ---
  --
   
 
   ___
   freebsd-questions@freebsd.org mailing list
   http://lists.freebsd.org/mailman/listinfo/freebsd-questions
   To unsubscribe, send any mail to 
  [EMAIL PROTECTED]
 
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Any way to configure VIA Chrome9?

2008-01-30 Thread Tore Lund
My new motherboard has the built-in VIA Chrome9 graphics processor,
which seems to use the xf86-video-via driver.  The driver works, no
doubt about that, but I badly want to configure gamma, contrast, etc.

There is supposedly a configuraton utility for Linux, but the few
comments I can find about it are not very encouraging.  After all, even
the s3gamma utility for Windows is rather clunky and lackluster.

I may simply have to buy yet another grahics card (there is no AGP slot
on this board).  But it seems odd that there is no way to configure this
processor, which otherwise seems fairly capable (unlike, say, the nv
driver).  Being able to somehow set gamma independently on the RGB
channels might be all I need.  Thanks for any hints.
-- 
Tore


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


MacBook FreeBSD

2008-01-30 Thread philip
as far as inspiration for mac from bsd have a look at this interview  
with jordan hubbard... he is the director of UNIX services at apple  
and a founder of freebsd:  http://kerneltrap.org/node/278


phil

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


Re: Network configuration in FreeBSD

2008-01-30 Thread Bhuvaneswari Ramkumar
oh yes, I did use the right IP, netmask and interface to be configured.
Now thankfully the LAN pings work, the thing I have to find out now is how
to make ftp work which still keeps saying that hostname or servname not
known

Thanks a lot
Bhuvana


On Wed, Jan 30, 2008 at 2:50 PM, Jerry McAllister [EMAIL PROTECTED] wrote:

 On Wed, Jan 30, 2008 at 12:57:59PM -0500, Bhuvaneswari Ramkumar wrote:

  with the above assigned IP address and net-mask I'm reading to make it
 work
  and ping my LAN successfully ( which it doesn't now)  before I put them
 in
  the rc.conf script.

 I am not quite sure what you are asking here, but you do have to
 have the correct IP address and netmask and default router configured.
 You can't just pick numbers out of the air. I just used your
 example numbers in my response.

 jerry

 
  On Wed, Jan 30, 2008 at 12:51 PM, Jerry McAllister [EMAIL PROTECTED]
 wrote:
 
   On Wed, Jan 30, 2008 at 12:19:33PM -0500, Bhuvaneswari Ramkumar wrote:
  
ifconfig em0 up also doesnt help ping my LAN.
   
the ifconfig -a output now reads the IP I just added, as well as the
net-mask  the 100 Mbps active linnk.
   
quick question :
   
I did an ifconfig em0 1.1.1.2  yday.should this be done everytime I
   restart
my application, is it some kind of a temporary address assignment,
 bcos
whatever I assigned was not visible today when I re-booted and I had
 to
   do
it again, probably I should set this in the conf file also ? maybe
 as
another user said my NIC is not enabled or something like that.
  
   You have to put it in /etc/rc.conf so it will be taken care of during
   network initialization each time you boot. Everything at startup
   reads the /etc/rc.conf and finds variables it needs to do its startup
   and network startup does that too.   So, you put in a line like:
  
ifconfig_em0=inet 1.1.1.2  netmask 255.255.255.0
   and
defaultrouter=1.1.1.3
  
   Amongst a number of other startup settings in /etc/rc.conf
  
   network startup sees those and says 'oh, I know what to do with those'
   and runs the ifconfig, etc.
   Note that putting it in rc.cong only causes a 'ifconfig_em0' variable
   to be set toinet 1.1.1.2  netmask 255.255.255.0
   and the 'defaultrouter' variable to be set to 1.1.1.3
   It is up to the startup programs to do something about it.
  
   The startup programs are generally run from the /etc/rc script and
   from other scripts that it runs.
  
   jerry
  
   
   
On Wed, Jan 30, 2008 at 12:14 PM,  Ashish 
   [EMAIL PROTECTED] wrote:
   
 ,--[ On Wednesday 30 Jan 2008, Bhuvaneswari Ramkumar wrote:
 | I did have an IP address assigned to my ethernet interface(
 using
   the
 | ifconfig command)  but I'm unable to ping anybody in my LAN.

 In the 'ifconfig -a' output you posted earlier, the 'em0' (your
   desired
 interface) interface neither has any IP address assigned to it,
 nor
   its UP
 .
 So, if you've assigned an IP address to 'em0', then also make sure
 its
   UP,
 by
 doing 'ifconfig em0 up' .

 HTH
 --
 Ashish Shukla  ???
 http://wahjava.wordpress.com/
 ?-- ?-  ?--- ?- ???- ?- ?--?-? --? -- ?- ?? ?-?? ?-?-?- -?-?
 ---
   --

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

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


Re: Starting X - was Re: Vista / FreeBSD dual boot

2008-01-30 Thread Siraj Shaikh
On 30/01/2008, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:
 On Wed, 30 Jan 2008, Siraj Shaikh wrote:

  On 29/01/2008, doug [EMAIL PROTECTED] wrote:
  On Tue, 29 Jan 2008, Siraj Shaikh wrote:
 
  On 29/01/2008, Siraj Shaikh [EMAIL PROTECTED] wrote:
  On 29/01/2008, doug [EMAIL PROTECTED] wrote:
  On Tue, 29 Jan 2008, Siraj Shaikh wrote:
 
  One question: I have just installed FreeBSD 6.3, and tried startx
  but it isnt coming up, giving some sort of error. Am I missing
  something here? I did choose for Windows X during the FreeBSD setup
  - shall I do a port upgrade?

 [cut]

  (EE) Failed to load module fbdev (module does not exist, 0)
  (WW) I810: No matching Device section for instance (BusID PCI:0:2:1) found
  (II) Module ddc already built-in
  (EE) VESA(0): No matching modes
  (EE) Screen(s) found, but none have a usable configuration
 
  Fatal server error:
  no screens found
  X connection to :0.0 broken (explicit kill or server shutdown)

 [cut x config stuff]

  I did configure Xorg as it said in the handbook, but after that the
  test didnt work, still gave me the same error. I then installed from a
  port (I assume that will be the latest Xorg 7.3 is it? How can I check
  what version do I have?
 
  What is way forward now? uninstall this and install Xorg 6?

  1) Post xorg.conf.new as suggested.
  2) pkg_info | grep xorg  will show you whats installed
  3) check the hardware list to see if there are know issues
  4) Google the error and freebsd + xorg + your system

 You will get the most (probably) from posting xorg.conf.new. along with
 'uname -a' output. Don't edit it just send it to the list avoiding line
 wrapping.


Following is the result of pkg_info | grep xorg


xorg-7.3_1  X.Org complete distribution metaport
xorg-apps-7.3   X.org apps meta-port
xorg-cf-files-1.0.2_2 X.org cf files for use with imake builds
xorg-docs-1.4,1 X.org documentation files
xorg-drivers-7.3X.org drivers meta-port
xorg-fonts-100dpi-7.3 X.Org 100dpi bitmap fonts
xorg-fonts-7.3  X.org fonts meta-port
xorg-fonts-75dpi-7.3 X.Org 75dpi bitmap fonts
xorg-fonts-cyrillic-7.3 X.Org Cyrillic bitmap fonts
xorg-fonts-miscbitmaps-7.3 X.Org miscellaneous bitmap fonts
xorg-fonts-truetype-7.3 X.Org TrueType fonts
xorg-fonts-type1-7.3 X.Org Type1 fonts
xorg-libraries-7.3_1 X.org libraries meta-port
xorg-nestserver-1.4,1 Nesting X server from X.Org
xorg-protos-7.3 X.org protos meta-port
xorg-server-1.4_4,1 X.Org X server and related programs
xorg-vfbserver-1.4,1 X virtual framebuffer server from X.Org


The contents of my xorg.conf.new file are below


Section ServerLayout
Identifier X.org Configured
Screen  0  Screen0 0 0
InputDeviceMouse0 CorePointer
InputDeviceKeyboard0 CoreKeyboard
EndSection

Section Files
RgbPath  /usr/local/share/X11/rgb
ModulePath   /usr/local/lib/xorg/modules
FontPath /usr/local/lib/X11/fonts/misc/
FontPath /usr/local/lib/X11/fonts/TTF/
FontPath /usr/local/lib/X11/fonts/OTF
FontPath /usr/local/lib/X11/fonts/Type1/
FontPath /usr/local/lib/X11/fonts/100dpi/
FontPath /usr/local/lib/X11/fonts/75dpi/
EndSection

Section Module
Load  extmod
Load  record
Load  dbe
Load  glx
Load  GLcore
Load  xtrap
Load  dri
Load  freetype
Load  type1
EndSection

Section InputDevice
Identifier  Keyboard0
Driver  kbd
EndSection

Section InputDevice
Identifier  Mouse0
Driver  mouse
Option  Protocol auto
Option  Device /dev/sysmouse
Option  ZAxisMapping 4 5 6 7
EndSection

Section Monitor
Identifier   Monitor0
VendorName   Monitor Vendor
ModelNameMonitor Model
EndSection

Section Device
### Available Driver options are:-
### Values: i: integer, f: float, bool: True/False,
### string: String, freq: f Hz/kHz/MHz
### [arg]: arg optional
#Option ShadowFB  # [bool]
#Option DefaultRefresh# [bool]
#Option ModeSetClearScreen# [bool]
Identifier  Card0
Driver  vesa
VendorName  Intel Corporation
BoardName   Mobile GM965/GL960 Integrated Graphics Controller
BusID   PCI:0:2:0
EndSection

Section Screen
Identifier Screen0
Device Card0
MonitorMonitor0
SubSection Display
Viewport   0 0
Depth 1
EndSubSection
SubSection Display
Viewport   0 0
Depth 4
EndSubSection
SubSection Display
Viewport   0 0
Depth 8
EndSubSection
SubSection Display
Viewport   0 0
Depth 15
EndSubSection
SubSection Display

Wireless 3945ABG + conexa audio and FBSD 6.3R

2008-01-30 Thread Dead Line

Hello All,
 
 May I ask the status of Intel PRO/Wireless 3945ABG driver with FreeBSD 6.3-R ?
 I didnot find anything in the updated notes!
 
 Additionaly, I have tried to install sound driver for conexanet HD audio 
driver but i had a complete failure!
 I tried to load all drivers..but same..no luck any help?
 
 Thank you,
 Marwan.
_
Express yourself instantly with MSN Messenger! Download today it's FREE!
http://messenger.msn.click-url.com/go/onm00200471ave/direct/01/
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Dump and restore for Windows partitions

2008-01-30 Thread Martin Boulianne
On Jan 30, 2008 2:08 PM, Roland Smith [EMAIL PROTECTED] wrote:
 On Wed, Jan 30, 2008 at 09:18:53AM -0500, Martin Boulianne wrote:
  Hi,
  Maybe this is a dumb question, but I was wondering if I could use
  dump (and restore) on Windows NTFS partitions.
 
  Say I have a NTFS partition, ad0s1. Could I use:
 # dump -b 4 -f /backups/winxp.dump /dev/ad0s1

 Dump is only suited for FreeBSD's native UFS filesystem.

  Or after a restore, Windows would be able to read the files? What about dd,
  with something like:
 # dd if=/dev/ad0s1 of=/backups/winxp.bck bs=4k

 This should work, I think. But it will take up a lot of space, because
 it will copy the every sector (even unused ones).

 Unless there are special features of NTFS that you use, you could mount
 the volume, and make a backup with zip(1) or tar(1). Note that with this 
 method
 you will probably lose any NTFS attributes.

 The port sysutils/ntfsprogs contains programs like ntfsclone and
 ntfscp. Maybe those can be of use?

 Probably the best tool to completely backup an NTFS partition is a
 windows-based tool.

 Roland
 --
 R.F.Smith   http://www.xs4all.nl/~rsmith/
 [plain text _non-HTML_ PGP/GnuPG encrypted/signed email much appreciated]
 pgp: 1A2B 477F 9970 BA3C 2914  B7CE 1277 EFB0 C321 A725 (KeyID: C321A725)


Hi Roland,
Well, from its man pages, ntfsclone seems very promising!!
If it is restored to a different partition than the one it was backuped from,
Windows won't boot. But that's easy to fix...

Anyway it's for backup purpose, so I shall use it on the same partition.
Moreover, I use FreeBSD's boot manager, so I don't give a crap =P


Thanks! =)
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Network configuration in FreeBSD

2008-01-30 Thread Jerry McAllister
On Wed, Jan 30, 2008 at 12:57:59PM -0500, Bhuvaneswari Ramkumar wrote:

 with the above assigned IP address and net-mask I'm reading to make it work
 and ping my LAN successfully ( which it doesn't now)  before I put them in
 the rc.conf script.

I should mention that the line changes if you are using DHCP for
dynamic IP assignment.Then, your system will query the net for
a DHCP server to assign an IP and other DNS information.  I only
have fixed IPs right now, so I don't know the syntax for that off
the top of my head.   You can look it up.

jerry




 
 On Wed, Jan 30, 2008 at 12:51 PM, Jerry McAllister [EMAIL PROTECTED] wrote:
 
  On Wed, Jan 30, 2008 at 12:19:33PM -0500, Bhuvaneswari Ramkumar wrote:
 
   ifconfig em0 up also doesnt help ping my LAN.
  
   the ifconfig -a output now reads the IP I just added, as well as the
   net-mask  the 100 Mbps active linnk.
  
   quick question :
  
   I did an ifconfig em0 1.1.1.2  yday.should this be done everytime I
  restart
   my application, is it some kind of a temporary address assignment, bcos
   whatever I assigned was not visible today when I re-booted and I had to
  do
   it again, probably I should set this in the conf file also ? maybe as
   another user said my NIC is not enabled or something like that.
 
  You have to put it in /etc/rc.conf so it will be taken care of during
  network initialization each time you boot. Everything at startup
  reads the /etc/rc.conf and finds variables it needs to do its startup
  and network startup does that too.   So, you put in a line like:
 
   ifconfig_em0=inet 1.1.1.2  netmask 255.255.255.0
  and
   defaultrouter=1.1.1.3
 
  Amongst a number of other startup settings in /etc/rc.conf
 
  network startup sees those and says 'oh, I know what to do with those'
  and runs the ifconfig, etc.
  Note that putting it in rc.cong only causes a 'ifconfig_em0' variable
  to be set toinet 1.1.1.2  netmask 255.255.255.0
  and the 'defaultrouter' variable to be set to 1.1.1.3
  It is up to the startup programs to do something about it.
 
  The startup programs are generally run from the /etc/rc script and
  from other scripts that it runs.
 
  jerry
 
  
  
   On Wed, Jan 30, 2008 at 12:14 PM,  Ashish 
  [EMAIL PROTECTED] wrote:
  
,--[ On Wednesday 30 Jan 2008, Bhuvaneswari Ramkumar wrote:
| I did have an IP address assigned to my ethernet interface( using
  the
| ifconfig command)  but I'm unable to ping anybody in my LAN.
   
In the 'ifconfig -a' output you posted earlier, the 'em0' (your
  desired
interface) interface neither has any IP address assigned to it, nor
  its UP
.
So, if you've assigned an IP address to 'em0', then also make sure its
  UP,
by
doing 'ifconfig em0 up' .
   
HTH
--
Ashish Shukla  ???
http://wahjava.wordpress.com/
?-- ?-  ?--- ?- ???- ?- ?--?-? --? -- ?- ?? ?-?? ?-?-?- -?-? ---
  --
   
 
   ___
   freebsd-questions@freebsd.org mailing list
   http://lists.freebsd.org/mailman/listinfo/freebsd-questions
   To unsubscribe, send any mail to 
  [EMAIL PROTECTED]
 
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Any way to configure VIA Chrome9?

2008-01-30 Thread John Nielsen

Quoting Tore Lund [EMAIL PROTECTED]:

My new motherboard has the built-in VIA Chrome9 graphics processor,
which seems to use the xf86-video-via driver.  The driver works, no
doubt about that, but I badly want to configure gamma, contrast, etc.

There is supposedly a configuraton utility for Linux, but the few
comments I can find about it are not very encouraging.  After all, even
the s3gamma utility for Windows is rather clunky and lackluster.

I may simply have to buy yet another grahics card (there is no AGP slot
on this board).  But it seems odd that there is no way to configure this
processor, which otherwise seems fairly capable (unlike, say, the nv
driver).  Being able to somehow set gamma independently on the RGB
channels might be all I need.  Thanks for any hints.


I haven't used it, but you may want to check out the openchrome project 
(http://www.openchrome.org). There is a FreeBSD port available in the 
ports tree under x11-drivers/xf86-video-openchrome.


JN

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


Re: Network configuration in FreeBSD

2008-01-30 Thread Jerry McAllister
On Wed, Jan 30, 2008 at 01:35:03PM -0500, Bhuvaneswari Ramkumar wrote:

 An explicit call to /etc/netstart tells me that the route  devd with their
 pids are already running - though I dont know if this takes into account the
 new chages I've done  restarts the network.

You will have to do a restart or a -HUP rather than a full start
if things are already up and running.

jerry

 
 On Wed, Jan 30, 2008 at 1:01 PM, Bhuvaneswari Ramkumar [EMAIL PROTECTED]
 wrote:
 
  Is it a cause of concern if I dont have any route marked as default ?
  I see so when i use the netstat command
 
 
  On Wed, Jan 30, 2008 at 12:57 PM, Bhuvaneswari Ramkumar 
  [EMAIL PROTECTED] wrote:
 
   with the above assigned IP address and net-mask I'm reading to make it
   work and ping my LAN successfully ( which it doesn't now)  before I put 
   them
   in the rc.conf script.
  
  
   On Wed, Jan 30, 2008 at 12:51 PM, Jerry McAllister [EMAIL PROTECTED]
   wrote:
  
On Wed, Jan 30, 2008 at 12:19:33PM -0500, Bhuvaneswari Ramkumar wrote:
   
 ifconfig em0 up also doesnt help ping my LAN.

 the ifconfig -a output now reads the IP I just added, as well as the
 net-mask  the 100 Mbps active linnk.

 quick question :

 I did an ifconfig em0 1.1.1.2  yday.should this be done everytime I
restart
 my application, is it some kind of a temporary address assignment,
bcos
 whatever I assigned was not visible today when I re-booted and I had
to do
 it again, probably I should set this in the conf file also ? maybe
as
 another user said my NIC is not enabled or something like that.
   
You have to put it in /etc/rc.conf so it will be taken care of during
network initialization each time you boot. Everything at startup
reads the /etc/rc.conf and finds variables it needs to do its startup
and network startup does that too.   So, you put in a line like:
   
 ifconfig_em0=inet 1.1.1.2  netmask 255.255.255.0
and
 defaultrouter=1.1.1.3
   
Amongst a number of other startup settings in /etc/rc.conf
   
network startup sees those and says 'oh, I know what to do with those'
and runs the ifconfig, etc.
Note that putting it in rc.cong only causes a 'ifconfig_em0' variable
to be set toinet 1.1.1.2  netmask 255.255.255.0
and the 'defaultrouter' variable to be set to 1.1.1.3
It is up to the startup programs to do something about it.
   
The startup programs are generally run from the /etc/rc script and
from other scripts that it runs.
   
jerry
   


 On Wed, Jan 30, 2008 at 12:14 PM,  Ashish 
[EMAIL PROTECTED] wrote:

  ,--[ On Wednesday 30 Jan 2008, Bhuvaneswari Ramkumar wrote:
  | I did have an IP address assigned to my ethernet interface(
using the
  | ifconfig command)  but I'm unable to ping anybody in my LAN.
 
  In the 'ifconfig -a' output you posted earlier, the 'em0' (your
desired
  interface) interface neither has any IP address assigned to it,
nor its UP
  .
  So, if you've assigned an IP address to 'em0', then also make sure
its UP,
  by
  doing 'ifconfig em0 up' .
 
  HTH
  --
  Ashish Shukla  ???
  http://wahjava.wordpress.com/
  ?-- ?-  ?--- ?- ???- ?- ?--?-? --? -- ?- ?? ?-?? ?-?-?- -?-?
--- --
 
   
 ___
 freebsd-questions@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to 
[EMAIL PROTECTED]
   
  
  
 
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Network configuration in FreeBSD

2008-01-30 Thread Bhuvaneswari Ramkumar
strangely my /etc has no resolv.conf file at all !

On Wed, Jan 30, 2008 at 2:56 PM, Jerry McAllister [EMAIL PROTECTED] wrote:

 On Wed, Jan 30, 2008 at 01:01:18PM -0500, Bhuvaneswari Ramkumar wrote:

  Is it a cause of concern if I dont have any route marked as default ?
  I see so when i use the netstat command

 Yes.  You need a default router specified because that is the
 address that becomes your gateway to the rest of the network.

 You also need a nameserver specified in your /etc/resolv.conf file
 unless you plan to manually specify every other host you wish to talk to.

 jerry

 
  On Wed, Jan 30, 2008 at 12:57 PM, Bhuvaneswari Ramkumar 
  [EMAIL PROTECTED] wrote:
 
   with the above assigned IP address and net-mask I'm reading to make it
   work and ping my LAN successfully ( which it doesn't now)  before I
 put them
   in the rc.conf script.
  
  
   On Wed, Jan 30, 2008 at 12:51 PM, Jerry McAllister [EMAIL PROTECTED]
   wrote:
  
On Wed, Jan 30, 2008 at 12:19:33PM -0500, Bhuvaneswari Ramkumar
 wrote:
   
 ifconfig em0 up also doesnt help ping my LAN.

 the ifconfig -a output now reads the IP I just added, as well as
 the
 net-mask  the 100 Mbps active linnk.

 quick question :

 I did an ifconfig em0 1.1.1.2  yday.should this be done everytime
 I
restart
 my application, is it some kind of a temporary address assignment,
bcos
 whatever I assigned was not visible today when I re-booted and I
 had
to do
 it again, probably I should set this in the conf file also ? maybe
 as
 another user said my NIC is not enabled or something like that.
   
You have to put it in /etc/rc.conf so it will be taken care of
 during
network initialization each time you boot. Everything at startup
reads the /etc/rc.conf and finds variables it needs to do its
 startup
and network startup does that too.   So, you put in a line like:
   
 ifconfig_em0=inet 1.1.1.2  netmask 255.255.255.0
and
 defaultrouter=1.1.1.3
   
Amongst a number of other startup settings in /etc/rc.conf
   
network startup sees those and says 'oh, I know what to do with
 those'
and runs the ifconfig, etc.
Note that putting it in rc.cong only causes a 'ifconfig_em0'
 variable
to be set toinet 1.1.1.2  netmask 255.255.255.0
and the 'defaultrouter' variable to be set to 1.1.1.3
It is up to the startup programs to do something about it.
   
The startup programs are generally run from the /etc/rc script and
from other scripts that it runs.
   
jerry
   


 On Wed, Jan 30, 2008 at 12:14 PM,  Ashish 
[EMAIL PROTECTED] wrote:

  ,--[ On Wednesday 30 Jan 2008, Bhuvaneswari Ramkumar wrote:
  | I did have an IP address assigned to my ethernet interface(
 using
the
  | ifconfig command)  but I'm unable to ping anybody in my LAN.
 
  In the 'ifconfig -a' output you posted earlier, the 'em0' (your
desired
  interface) interface neither has any IP address assigned to it,
 nor
its UP
  .
  So, if you've assigned an IP address to 'em0', then also make
 sure
its UP,
  by
  doing 'ifconfig em0 up' .
 
  HTH
  --
  Ashish Shukla  ???
  http://wahjava.wordpress.com/
  ?-- ?-  ?--- ?- ???- ?- ?--?-? --? -- ?- ?? ?-?? ?-?-?- -?-?
 ---
--
 
   
 ___
 freebsd-questions@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to 
[EMAIL PROTECTED]
   
  
  

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


Re: Starting X - was Re: Vista / FreeBSD dual boot

2008-01-30 Thread KAYVEN RIESE



On Wed, 30 Jan 2008, Siraj Shaikh wrote:

On 30/01/2008, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:

On Wed, 30 Jan 2008, Siraj Shaikh wrote:

On 29/01/2008, doug [EMAIL PROTECTED] wrote:

On Tue, 29 Jan 2008, Siraj Shaikh wrote:

On 29/01/2008, Siraj Shaikh [EMAIL PROTECTED] wrote:

On 29/01/2008, doug [EMAIL PROTECTED] wrote:

On Tue, 29 Jan 2008, Siraj Shaikh wrote:



Just to repeat. I installed FreeBSD 6.3, its a new Toshiba notebook. I
chose to install X Windows during sysinstall. The very first time I
ran startx it didnt work. Then I did the Xorg -configure and tried
again, and still doesnt work. Please help 


startx is lame.  most ppl apparently use either KDE or gnome. i used
to use xfce4 that was started with the command starxfce4 but i ended
up being pursuaded out of it because i couldn't do flash and multimedia
plugins.  have you tried running the following command at the
root prompt:

#pkg_add -r gnome2

i think that is what i used.

here is a webpage for gnome:

http://www.gnome.org/start/2.20/notes/en/

have you familiarized yourself with the freeBSD pkg_add pkg_delete
and ports systems /usr/ports ?  the -r directive means that it goes
out to the web to find things to install and at the same time installs
it.  really easy.  for the ports system

http://www.freebsd.org/ports/index.html

you merely figure out what port you want.. do a command something
like (as root)

#cd /usr/ports/path/to/a/kewl/app

and then

#make install clean

the ports system figures out all the dependencies.. also there is a
kewl thing called portsnap that updates the ports directories

http://www.freebsd.org/cgi/man.cgi?query=portsnapapropos=0sektion=0manpath=FreeBSD+6.2-RELEASEformat=html




Thanks
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]



*--*
  Kayven Riese, BSCS, MS (Physiology and Biophysics)
  (415) 902 5513 cellular
  http://kayve.net
  Webmaster http://ChessYoga.org
*--*
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Starting X - was Re: Vista / FreeBSD dual boot

2008-01-30 Thread Siraj Shaikh
On 30/01/2008, KAYVEN RIESE [EMAIL PROTECTED] wrote:


 On Wed, 30 Jan 2008, Siraj Shaikh wrote:
  On 30/01/2008, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:
  On Wed, 30 Jan 2008, Siraj Shaikh wrote:
  On 29/01/2008, doug [EMAIL PROTECTED] wrote:
  On Tue, 29 Jan 2008, Siraj Shaikh wrote:
  On 29/01/2008, Siraj Shaikh [EMAIL PROTECTED] wrote:
  On 29/01/2008, doug [EMAIL PROTECTED] wrote:
  On Tue, 29 Jan 2008, Siraj Shaikh wrote:
 
 
  Just to repeat. I installed FreeBSD 6.3, its a new Toshiba notebook. I
  chose to install X Windows during sysinstall. The very first time I
  ran startx it didnt work. Then I did the Xorg -configure and tried
  again, and still doesnt work. Please help 

 startx is lame.  most ppl apparently use either KDE or gnome. i used
 to use xfce4 that was started with the command starxfce4 but i ended
 up being pursuaded out of it because i couldn't do flash and multimedia
 plugins.  have you tried running the following command at the
 root prompt:

 #pkg_add -r gnome2

 i think that is what i used.

 here is a webpage for gnome:

 http://www.gnome.org/start/2.20/notes/en/

 have you familiarized yourself with the freeBSD pkg_add pkg_delete
 and ports systems /usr/ports ?  the -r directive means that it goes
 out to the web to find things to install and at the same time installs
 it.  really easy.  for the ports system

 http://www.freebsd.org/ports/index.html

 you merely figure out what port you want.. do a command something
 like (as root)

 #cd /usr/ports/path/to/a/kewl/app

 and then

 #make install clean

 the ports system figures out all the dependencies.. also there is a
 kewl thing called portsnap that updates the ports directories


Do I need to get Xorg working first? before I deploy gnome2? I do plan
to install gnome 2 -certainly at some stage - would that solve my
problems?

I am a bit confused nowplease help! I thought gnome 2 wouldnt work
if I dont get xorg to work.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Network configuration in FreeBSD

2008-01-30 Thread KAYVEN RIESE


i got my ISP's IP address from some webpage.  i am at home
running DSL  here is what my file looks like

kv_bsd#
kv_bsd# cat /etc/resolv.conf
nameserver  192.168.0.1
kv_bsd#


i just had to create that file

On Wed, 30 Jan 2008, Bhuvaneswari Ramkumar wrote:


strangely my /etc has no resolv.conf file at all !

On Wed, Jan 30, 2008 at 2:56 PM, Jerry McAllister [EMAIL PROTECTED] wrote:


On Wed, Jan 30, 2008 at 01:01:18PM -0500, Bhuvaneswari Ramkumar wrote:


Is it a cause of concern if I dont have any route marked as default ?
I see so when i use the netstat command


Yes.  You need a default router specified because that is the
address that becomes your gateway to the rest of the network.

You also need a nameserver specified in your /etc/resolv.conf file
unless you plan to manually specify every other host you wish to talk to.

jerry



On Wed, Jan 30, 2008 at 12:57 PM, Bhuvaneswari Ramkumar 
[EMAIL PROTECTED] wrote:


with the above assigned IP address and net-mask I'm reading to make it
work and ping my LAN successfully ( which it doesn't now)  before I

put them

in the rc.conf script.


On Wed, Jan 30, 2008 at 12:51 PM, Jerry McAllister [EMAIL PROTECTED]
wrote:


On Wed, Jan 30, 2008 at 12:19:33PM -0500, Bhuvaneswari Ramkumar

wrote:



ifconfig em0 up also doesnt help ping my LAN.

the ifconfig -a output now reads the IP I just added, as well as

the

net-mask  the 100 Mbps active linnk.

quick question :

I did an ifconfig em0 1.1.1.2  yday.should this be done everytime

I

restart

my application, is it some kind of a temporary address assignment,

bcos

whatever I assigned was not visible today when I re-booted and I

had

to do

it again, probably I should set this in the conf file also ? maybe

as

another user said my NIC is not enabled or something like that.


You have to put it in /etc/rc.conf so it will be taken care of

during

network initialization each time you boot. Everything at startup
reads the /etc/rc.conf and finds variables it needs to do its

startup

and network startup does that too.   So, you put in a line like:

 ifconfig_em0=inet 1.1.1.2  netmask 255.255.255.0
and
 defaultrouter=1.1.1.3

Amongst a number of other startup settings in /etc/rc.conf

network startup sees those and says 'oh, I know what to do with

those'

and runs the ifconfig, etc.
Note that putting it in rc.cong only causes a 'ifconfig_em0'

variable

to be set toinet 1.1.1.2  netmask 255.255.255.0
and the 'defaultrouter' variable to be set to 1.1.1.3
It is up to the startup programs to do something about it.

The startup programs are generally run from the /etc/rc script and
from other scripts that it runs.

jerry




On Wed, Jan 30, 2008 at 12:14 PM,  Ashish 

[EMAIL PROTECTED] wrote:



,--[ On Wednesday 30 Jan 2008, Bhuvaneswari Ramkumar wrote:
| I did have an IP address assigned to my ethernet interface(

using

the

| ifconfig command)  but I'm unable to ping anybody in my LAN.

In the 'ifconfig -a' output you posted earlier, the 'em0' (your

desired

interface) interface neither has any IP address assigned to it,

nor

its UP

.
So, if you've assigned an IP address to 'em0', then also make

sure

its UP,

by
doing 'ifconfig em0 up' .

HTH
--
Ashish Shukla  ???
http://wahjava.wordpress.com/
?-- ?-  ?--- ?- ???- ?- ?--?-? --? -- ?- ?? ?-?? ?-?-?- -?-?

---

--





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

[EMAIL PROTECTED]







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



*--*
  Kayven Riese, BSCS, MS (Physiology and Biophysics)
  (415) 902 5513 cellular
  http://kayve.net
  Webmaster http://ChessYoga.org
*--*
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: WPA and static IP

2008-01-30 Thread Vince Hoffman

Peter Boosten wrote:

Vince Hoffman wrote:

Hi all,
I'm wondering if there is a way to specify WPA ad a static IP for 
an interface in /etc/rc.conf I've had a quick look though the handbook 
and google but all the examples use WPA and DHCP.




ifconfig_ath0=WPA inet 192.168.13.8 netmask 255.255.255.0

works for me.

Peter


Doh that simple eh?

Thanks,
Vince
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


acrobat reader (7 or 8) on 7.0-RC1

2008-01-30 Thread Vince Hoffman

Hi,
	Has anyone else had any issues getting this working? my laptop runs 
acrobat reader7 fine while my desktop doesnt like it at all (see error 
below.) I am using compat.linux.osrelease=2.6.16 and linux_base-fc6-6_5 
I have linux procf mounted.


any suggestion?

[EMAIL PROTECTED]
(20:16:58 /usr/src) 0 $ acroread
*** glibc detected *** /usr/local/Adobe/Acrobat7.0/ENU/bin/acroread: 
double free or corruption (!prev): 0x09632cd8 ***

=== Backtrace: =
/lib/libc.so.6[0x2a07ec88]
/lib/libc.so.6(cfree+0x90)[0x2a082230]
/lib/libc.so.6(closedir+0x28)[0x2a0a2cf8]
/usr/lib/libfontconfig.so.1(FcDirScan+0x1f2)[0x2a22b21d]
/usr/lib/libfontconfig.so.1(FcConfigBuildFonts+0x94)[0x2a225d51]
/usr/lib/libfontconfig.so.1(FcInitLoadConfigAndFonts+0x26)[0x2a22d0b3]
/usr/lib/libfontconfig.so.1(FcInit+0x2e)[0x2a22d2b0]
/usr/lib/libfontconfig.so.1(FcConfigGetCurrent+0x29)[0x2a225c7a]
/usr/lib/libfontconfig.so.1(FcConfigSubstituteWithPat+0x6f4)[0x2a227ab3]
/usr/lib/libfontconfig.so.1(FcConfigSubstitute+0x33)[0x2a227af8]
/usr/lib/libpangoxft-1.0.so.0[0x2a174455]
/usr/lib/libpangoft2-1.0.so.0[0x2a262f43]
/usr/lib/libpangoft2-1.0.so.0[0x2a262ffc]
/usr/lib/libpangoft2-1.0.so.0[0x2a263434]
/usr/lib/libpango-1.0.so.0(pango_font_map_load_fontset+0x4a)[0x29f0df6f]
/usr/lib/libpango-1.0.so.0[0x29f0c51b]
/usr/lib/libpango-1.0.so.0(pango_itemize_with_base_dir+0x98)[0x29f0c9ae]
/usr/lib/libpango-1.0.so.0[0x29f13cb0]
/usr/lib/libpango-1.0.so.0[0x29f14892]
/usr/lib/libgtk-x11-2.0.so.0[0x29c44060]
/lib/libgobject-2.0.so.0(g_cclosure_marshal_VOID__BOXED+0x59)[0x29f4c769]
/lib/libgobject-2.0.so.0[0x29f3e589]
/lib/libgobject-2.0.so.0(g_closure_invoke+0x12b)[0x29f3fd9b]
/lib/libgobject-2.0.so.0[0x29f508ca]
/lib/libgobject-2.0.so.0(g_signal_emit_valist+0x8c7)[0x29f51957]
/lib/libgobject-2.0.so.0(g_signal_emit_by_name+0xee)[0x29f53cee]
/usr/lib/libgtk-x11-2.0.so.0[0x29c98e92]
/usr/lib/libgtk-x11-2.0.so.0[0x29c99191]
/usr/lib/libgtk-x11-2.0.so.0(gtk_widget_size_request+0x48)[0x29d2e2a4]
/usr/local/Adobe/Acrobat7.0/ENU/bin/acroread(UnixGtkWidgetGetSize+0xba)[0x83739aa]
/usr/local/Adobe/Acrobat7.0/ENU/bin/acroread(UnixShowAboutDialog+0x7ff)[0x86ce95f]
/usr/local/Adobe/Acrobat7.0/ENU/bin/acroread(_Z12UNIX_Startupv+0xd)[0x838743d]
/usr/local/Adobe/Acrobat7.0/ENU/bin/acroread(AVDlgStartup+0x22)[0x858ff02]
/usr/local/Adobe/Acrobat7.0/ENU/bin/acroread(wcsftime+0x2678)[0x8369808]
/usr/local/Adobe/Acrobat7.0/ENU/bin/acroread(AVAppInit+0xf5)[0x8496c85]
/usr/local/Adobe/Acrobat7.0/ENU/bin/acroread(UnixAppInitUI+0xb6)[0x8369906]
/usr/local/Adobe/Acrobat7.0/ENU/bin/acroread(UnixAppMain+0x1fb)[0x836937b]
/usr/local/Adobe/Acrobat7.0/ENU/bin/acroread(main+0x3a)[0x8367daa]
/lib/libc.so.6(__libc_start_main+0xdc)[0x2a02cdec]
/usr/local/Adobe/Acrobat7.0/ENU/bin/acroread(gtk_widget_grab_focus+0x31)[0x8367cd1]
=== Memory map: 


cheers,
vince
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: acrobat reader (7 or 8) on 7.0-RC1

2008-01-30 Thread KAYVEN RIESE


Did you install that acrobat port?

On Wed, 30 Jan 2008, Vince Hoffman wrote:


Hi,
	Has anyone else had any issues getting this working? my laptop runs 
acrobat reader7 fine while my desktop doesnt like it at all (see error 
below.) I am using compat.linux.osrelease=2.6.16 and linux_base-fc6-6_5 I 
have linux procf mounted.


any suggestion?

[EMAIL PROTECTED]
(20:16:58 /usr/src) 0 $ acroread
*** glibc detected *** /usr/local/Adobe/Acrobat7.0/ENU/bin/acroread: double 
free or corruption (!prev): 0x09632cd8 ***

=== Backtrace: =
/lib/libc.so.6[0x2a07ec88]
/lib/libc.so.6(cfree+0x90)[0x2a082230]
/lib/libc.so.6(closedir+0x28)[0x2a0a2cf8]
/usr/lib/libfontconfig.so.1(FcDirScan+0x1f2)[0x2a22b21d]
/usr/lib/libfontconfig.so.1(FcConfigBuildFonts+0x94)[0x2a225d51]
/usr/lib/libfontconfig.so.1(FcInitLoadConfigAndFonts+0x26)[0x2a22d0b3]
/usr/lib/libfontconfig.so.1(FcInit+0x2e)[0x2a22d2b0]
/usr/lib/libfontconfig.so.1(FcConfigGetCurrent+0x29)[0x2a225c7a]
/usr/lib/libfontconfig.so.1(FcConfigSubstituteWithPat+0x6f4)[0x2a227ab3]
/usr/lib/libfontconfig.so.1(FcConfigSubstitute+0x33)[0x2a227af8]
/usr/lib/libpangoxft-1.0.so.0[0x2a174455]
/usr/lib/libpangoft2-1.0.so.0[0x2a262f43]
/usr/lib/libpangoft2-1.0.so.0[0x2a262ffc]
/usr/lib/libpangoft2-1.0.so.0[0x2a263434]
/usr/lib/libpango-1.0.so.0(pango_font_map_load_fontset+0x4a)[0x29f0df6f]
/usr/lib/libpango-1.0.so.0[0x29f0c51b]
/usr/lib/libpango-1.0.so.0(pango_itemize_with_base_dir+0x98)[0x29f0c9ae]
/usr/lib/libpango-1.0.so.0[0x29f13cb0]
/usr/lib/libpango-1.0.so.0[0x29f14892]
/usr/lib/libgtk-x11-2.0.so.0[0x29c44060]
/lib/libgobject-2.0.so.0(g_cclosure_marshal_VOID__BOXED+0x59)[0x29f4c769]
/lib/libgobject-2.0.so.0[0x29f3e589]
/lib/libgobject-2.0.so.0(g_closure_invoke+0x12b)[0x29f3fd9b]
/lib/libgobject-2.0.so.0[0x29f508ca]
/lib/libgobject-2.0.so.0(g_signal_emit_valist+0x8c7)[0x29f51957]
/lib/libgobject-2.0.so.0(g_signal_emit_by_name+0xee)[0x29f53cee]
/usr/lib/libgtk-x11-2.0.so.0[0x29c98e92]
/usr/lib/libgtk-x11-2.0.so.0[0x29c99191]
/usr/lib/libgtk-x11-2.0.so.0(gtk_widget_size_request+0x48)[0x29d2e2a4]
/usr/local/Adobe/Acrobat7.0/ENU/bin/acroread(UnixGtkWidgetGetSize+0xba)[0x83739aa]
/usr/local/Adobe/Acrobat7.0/ENU/bin/acroread(UnixShowAboutDialog+0x7ff)[0x86ce95f]
/usr/local/Adobe/Acrobat7.0/ENU/bin/acroread(_Z12UNIX_Startupv+0xd)[0x838743d]
/usr/local/Adobe/Acrobat7.0/ENU/bin/acroread(AVDlgStartup+0x22)[0x858ff02]
/usr/local/Adobe/Acrobat7.0/ENU/bin/acroread(wcsftime+0x2678)[0x8369808]
/usr/local/Adobe/Acrobat7.0/ENU/bin/acroread(AVAppInit+0xf5)[0x8496c85]
/usr/local/Adobe/Acrobat7.0/ENU/bin/acroread(UnixAppInitUI+0xb6)[0x8369906]
/usr/local/Adobe/Acrobat7.0/ENU/bin/acroread(UnixAppMain+0x1fb)[0x836937b]
/usr/local/Adobe/Acrobat7.0/ENU/bin/acroread(main+0x3a)[0x8367daa]
/lib/libc.so.6(__libc_start_main+0xdc)[0x2a02cdec]
/usr/local/Adobe/Acrobat7.0/ENU/bin/acroread(gtk_widget_grab_focus+0x31)[0x8367cd1]
=== Memory map: 


cheers,
vince
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]



*--*
  Kayven Riese, BSCS, MS (Physiology and Biophysics)
  (415) 902 5513 cellular
  http://kayve.net
  Webmaster http://ChessYoga.org
*--*
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: acrobat reader (7 or 8) on 7.0-RC1

2008-01-30 Thread Vince Hoffman

KAYVEN RIESE wrote:


Did you install that acrobat port?



yes

[EMAIL PROTECTED]
(20:22:36 ~) 0 # pkg_info -Ix acroread
acroread7-7.0.9_2,1 Adobe Reader for view, print, and search PDF 
documents (ENU

acroreadwrapper-0.0.20071020 Wrapper script for Adobe Reader






On Wed, 30 Jan 2008, Vince Hoffman wrote:


Hi,
Has anyone else had any issues getting this working? my laptop 
runs acrobat reader7 fine while my desktop doesnt like it at all (see 
error below.) I am using compat.linux.osrelease=2.6.16 and 
linux_base-fc6-6_5 I have linux procf mounted.


any suggestion?

[EMAIL PROTECTED]
(20:16:58 /usr/src) 0 $ acroread
*** glibc detected *** /usr/local/Adobe/Acrobat7.0/ENU/bin/acroread: 
double free or corruption (!prev): 0x09632cd8 ***

=== Backtrace: =
/lib/libc.so.6[0x2a07ec88]
/lib/libc.so.6(cfree+0x90)[0x2a082230]
/lib/libc.so.6(closedir+0x28)[0x2a0a2cf8]
/usr/lib/libfontconfig.so.1(FcDirScan+0x1f2)[0x2a22b21d]
/usr/lib/libfontconfig.so.1(FcConfigBuildFonts+0x94)[0x2a225d51]
/usr/lib/libfontconfig.so.1(FcInitLoadConfigAndFonts+0x26)[0x2a22d0b3]
/usr/lib/libfontconfig.so.1(FcInit+0x2e)[0x2a22d2b0]
/usr/lib/libfontconfig.so.1(FcConfigGetCurrent+0x29)[0x2a225c7a]
/usr/lib/libfontconfig.so.1(FcConfigSubstituteWithPat+0x6f4)[0x2a227ab3]
/usr/lib/libfontconfig.so.1(FcConfigSubstitute+0x33)[0x2a227af8]
/usr/lib/libpangoxft-1.0.so.0[0x2a174455]
/usr/lib/libpangoft2-1.0.so.0[0x2a262f43]
/usr/lib/libpangoft2-1.0.so.0[0x2a262ffc]
/usr/lib/libpangoft2-1.0.so.0[0x2a263434]
/usr/lib/libpango-1.0.so.0(pango_font_map_load_fontset+0x4a)[0x29f0df6f]
/usr/lib/libpango-1.0.so.0[0x29f0c51b]
/usr/lib/libpango-1.0.so.0(pango_itemize_with_base_dir+0x98)[0x29f0c9ae]
/usr/lib/libpango-1.0.so.0[0x29f13cb0]
/usr/lib/libpango-1.0.so.0[0x29f14892]
/usr/lib/libgtk-x11-2.0.so.0[0x29c44060]
/lib/libgobject-2.0.so.0(g_cclosure_marshal_VOID__BOXED+0x59)[0x29f4c769]
/lib/libgobject-2.0.so.0[0x29f3e589]
/lib/libgobject-2.0.so.0(g_closure_invoke+0x12b)[0x29f3fd9b]
/lib/libgobject-2.0.so.0[0x29f508ca]
/lib/libgobject-2.0.so.0(g_signal_emit_valist+0x8c7)[0x29f51957]
/lib/libgobject-2.0.so.0(g_signal_emit_by_name+0xee)[0x29f53cee]
/usr/lib/libgtk-x11-2.0.so.0[0x29c98e92]
/usr/lib/libgtk-x11-2.0.so.0[0x29c99191]
/usr/lib/libgtk-x11-2.0.so.0(gtk_widget_size_request+0x48)[0x29d2e2a4]
/usr/local/Adobe/Acrobat7.0/ENU/bin/acroread(UnixGtkWidgetGetSize+0xba)[0x83739aa] 

/usr/local/Adobe/Acrobat7.0/ENU/bin/acroread(UnixShowAboutDialog+0x7ff)[0x86ce95f] 

/usr/local/Adobe/Acrobat7.0/ENU/bin/acroread(_Z12UNIX_Startupv+0xd)[0x838743d] 

/usr/local/Adobe/Acrobat7.0/ENU/bin/acroread(AVDlgStartup+0x22)[0x858ff02] 


/usr/local/Adobe/Acrobat7.0/ENU/bin/acroread(wcsftime+0x2678)[0x8369808]
/usr/local/Adobe/Acrobat7.0/ENU/bin/acroread(AVAppInit+0xf5)[0x8496c85]
/usr/local/Adobe/Acrobat7.0/ENU/bin/acroread(UnixAppInitUI+0xb6)[0x8369906] 

/usr/local/Adobe/Acrobat7.0/ENU/bin/acroread(UnixAppMain+0x1fb)[0x836937b] 


/usr/local/Adobe/Acrobat7.0/ENU/bin/acroread(main+0x3a)[0x8367daa]
/lib/libc.so.6(__libc_start_main+0xdc)[0x2a02cdec]
/usr/local/Adobe/Acrobat7.0/ENU/bin/acroread(gtk_widget_grab_focus+0x31)[0x8367cd1] 


=== Memory map: 


cheers,
vince
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to 
[EMAIL PROTECTED]




*--*
  Kayven Riese, BSCS, MS (Physiology and Biophysics)
  (415) 902 5513 cellular
  http://kayve.net
  Webmaster http://ChessYoga.org
*--*


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


Re: Network configuration in FreeBSD

2008-01-30 Thread Jerry McAllister
On Wed, Jan 30, 2008 at 01:01:18PM -0500, Bhuvaneswari Ramkumar wrote:

 Is it a cause of concern if I dont have any route marked as default ?
 I see so when i use the netstat command

Yes.  You need a default router specified because that is the 
address that becomes your gateway to the rest of the network.

You also need a nameserver specified in your /etc/resolv.conf file
unless you plan to manually specify every other host you wish to talk to.

jerry

 
 On Wed, Jan 30, 2008 at 12:57 PM, Bhuvaneswari Ramkumar 
 [EMAIL PROTECTED] wrote:
 
  with the above assigned IP address and net-mask I'm reading to make it
  work and ping my LAN successfully ( which it doesn't now)  before I put them
  in the rc.conf script.
 
 
  On Wed, Jan 30, 2008 at 12:51 PM, Jerry McAllister [EMAIL PROTECTED]
  wrote:
 
   On Wed, Jan 30, 2008 at 12:19:33PM -0500, Bhuvaneswari Ramkumar wrote:
  
ifconfig em0 up also doesnt help ping my LAN.
   
the ifconfig -a output now reads the IP I just added, as well as the
net-mask  the 100 Mbps active linnk.
   
quick question :
   
I did an ifconfig em0 1.1.1.2  yday.should this be done everytime I
   restart
my application, is it some kind of a temporary address assignment,
   bcos
whatever I assigned was not visible today when I re-booted and I had
   to do
it again, probably I should set this in the conf file also ? maybe as
another user said my NIC is not enabled or something like that.
  
   You have to put it in /etc/rc.conf so it will be taken care of during
   network initialization each time you boot. Everything at startup
   reads the /etc/rc.conf and finds variables it needs to do its startup
   and network startup does that too.   So, you put in a line like:
  
ifconfig_em0=inet 1.1.1.2  netmask 255.255.255.0
   and
defaultrouter=1.1.1.3
  
   Amongst a number of other startup settings in /etc/rc.conf
  
   network startup sees those and says 'oh, I know what to do with those'
   and runs the ifconfig, etc.
   Note that putting it in rc.cong only causes a 'ifconfig_em0' variable
   to be set toinet 1.1.1.2  netmask 255.255.255.0
   and the 'defaultrouter' variable to be set to 1.1.1.3
   It is up to the startup programs to do something about it.
  
   The startup programs are generally run from the /etc/rc script and
   from other scripts that it runs.
  
   jerry
  
   
   
On Wed, Jan 30, 2008 at 12:14 PM,  Ashish 
   [EMAIL PROTECTED] wrote:
   
 ,--[ On Wednesday 30 Jan 2008, Bhuvaneswari Ramkumar wrote:
 | I did have an IP address assigned to my ethernet interface( using
   the
 | ifconfig command)  but I'm unable to ping anybody in my LAN.

 In the 'ifconfig -a' output you posted earlier, the 'em0' (your
   desired
 interface) interface neither has any IP address assigned to it, nor
   its UP
 .
 So, if you've assigned an IP address to 'em0', then also make sure
   its UP,
 by
 doing 'ifconfig em0 up' .

 HTH
 --
 Ashish Shukla  ???
 http://wahjava.wordpress.com/
 ?-- ?-  ?--- ?- ???- ?- ?--?-? --? -- ?- ?? ?-?? ?-?-?- -?-? ---
   --

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


Re: Starting X - was Re: Vista / FreeBSD dual boot

2008-01-30 Thread KAYVEN RIESE



On Wed, 30 Jan 2008, Siraj Shaikh wrote:

On 30/01/2008, KAYVEN RIESE [EMAIL PROTECTED] wrote:

On Wed, 30 Jan 2008, Siraj Shaikh wrote:

On 30/01/2008, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:

On Wed, 30 Jan 2008, Siraj Shaikh wrote:

On 29/01/2008, doug [EMAIL PROTECTED] wrote:

On Tue, 29 Jan 2008, Siraj Shaikh wrote:

On 29/01/2008, Siraj Shaikh [EMAIL PROTECTED] wrote:

On 29/01/2008, doug [EMAIL PROTECTED] wrote:

On Tue, 29 Jan 2008, Siraj Shaikh wrote:



Just to repeat. I installed FreeBSD 6.3, its a new Toshiba notebook. I
chose to install X Windows during sysinstall. The very first time I
ran startx it didnt work. Then I did the Xorg -configure and tried
again, and still doesnt work. Please help 


startx is lame.  most ppl apparently use either KDE or gnome. i used
to use xfce4 that was started with the command starxfce4 but i ended
up being pursuaded out of it because i couldn't do flash and multimedia
plugins.  have you tried running the following command at the
root prompt:

#pkg_add -r gnome2

i think that is what i used.

here is a webpage for gnome:

http://www.gnome.org/start/2.20/notes/en/

have you familiarized yourself with the freeBSD pkg_add pkg_delete
and ports systems /usr/ports ?  the -r directive means that it goes
out to the web to find things to install and at the same time installs
it.  really easy.  for the ports system

http://www.freebsd.org/ports/index.html

you merely figure out what port you want.. do a command something
like (as root)

#cd /usr/ports/path/to/a/kewl/app

and then

#make install clean

the ports system figures out all the dependencies.. also there is a
kewl thing called portsnap that updates the ports directories



Do I need to get Xorg working first? before I deploy gnome2? I do plan
to install gnome 2 -certainly at some stage - would that solve my
problems?


the pkg_add utility worries about alll that nonsense for you.
just try it.



I am a bit confused nowplease help! I thought gnome 2 wouldnt work
if I dont get xorg to work.



that's true, but xorg i think you don't necessarily have to worry
about.  the pkg_add command will be thinking for a looongg loonngg
time.  go see a movie while it is chugging away.



*--*
  Kayven Riese, BSCS, MS (Physiology and Biophysics)
  (415) 902 5513 cellular
  http://kayve.net
  Webmaster http://ChessYoga.org
*--*
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: WPA and static IP

2008-01-30 Thread KAYVEN RIESE


On Wed, 30 Jan 2008, Vince Hoffman wrote:

Peter Boosten wrote:

Vince Hoffman wrote:



Hi all,
I'm wondering if there is a way to specify WPA ad a static IP for an 
interface in /etc/rc.conf I've had a quick look though the handbook and 
google but all the examples use WPA and DHCP.




ifconfig_ath0=WPA inet 192.168.13.8 netmask 255.255.255.0


i, on the other hand need a different line:

kv_bsd# tail -5 /etc/rc.conf
usbd_enable=YES
ifconfig_bge0=inet 192.168.0.2 netmask 255.255.255.0
defaultrouter=192.168.0.1
hostname=kv_bsd
tcp_extensions=YES
kv_bsd#

there is a commmand called dmesg that shows you what your OS does during
startup.  i did the command piped to bge0 to find what this is about

kv_bsd# dmesg | grep bge0
bge0: Broadcom BCM5705 A3, ASIC rev. 0x3003 mem 0xff9f-0xff9f 
irq 4 at device 0.0 on pci2

miibus0: MII bus on bge0
bge0: Ethernet address: 00:11:d8:22:c9:91
bge0: link state changed to UP
kv_bsd#

if i were you, i would try the command dmesg | grep Ethernet and
see what you get





works for me.

Peter


Doh that simple eh?

Thanks,
Vince
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]



*--*
  Kayven Riese, BSCS, MS (Physiology and Biophysics)
  (415) 902 5513 cellular
  http://kayve.net
  Webmaster http://ChessYoga.org
*--*
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Starting X - was Re: Vista / FreeBSD dual boot

2008-01-30 Thread doug

On Wed, 30 Jan 2008, Siraj Shaikh wrote:


On 30/01/2008, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:

On Wed, 30 Jan 2008, Siraj Shaikh wrote:


On 29/01/2008, doug [EMAIL PROTECTED] wrote:

On Tue, 29 Jan 2008, Siraj Shaikh wrote:


On 29/01/2008, Siraj Shaikh [EMAIL PROTECTED] wrote:

On 29/01/2008, doug [EMAIL PROTECTED] wrote:

On Tue, 29 Jan 2008, Siraj Shaikh wrote:


One question: I have just installed FreeBSD 6.3, and tried startx
but it isnt coming up, giving some sort of error. Am I missing
something here? I did choose for Windows X during the FreeBSD setup
- shall I do a port upgrade?


[cut]


(EE) Failed to load module fbdev (module does not exist, 0)
(WW) I810: No matching Device section for instance (BusID PCI:0:2:1) found
(II) Module ddc already built-in
(EE) VESA(0): No matching modes
(EE) Screen(s) found, but none have a usable configuration

Fatal server error:
no screens found
X connection to :0.0 broken (explicit kill or server shutdown)


[cut x config stuff]


I did configure Xorg as it said in the handbook, but after that the
test didnt work, still gave me the same error. I then installed from a
port (I assume that will be the latest Xorg 7.3 is it? How can I check
what version do I have?

What is way forward now? uninstall this and install Xorg 6?


 1) Post xorg.conf.new as suggested.
 2) pkg_info | grep xorg  will show you whats installed
 3) check the hardware list to see if there are know issues
 4) Google the error and freebsd + xorg + your system

You will get the most (probably) from posting xorg.conf.new. along with
'uname -a' output. Don't edit it just send it to the list avoiding line
wrapping.



Following is the result of pkg_info | grep xorg


xorg-7.3_1  X.Org complete distribution metaport
xorg-apps-7.3   X.org apps meta-port
xorg-cf-files-1.0.2_2 X.org cf files for use with imake builds
xorg-docs-1.4,1 X.org documentation files
xorg-drivers-7.3X.org drivers meta-port
xorg-fonts-100dpi-7.3 X.Org 100dpi bitmap fonts
xorg-fonts-7.3  X.org fonts meta-port
xorg-fonts-75dpi-7.3 X.Org 75dpi bitmap fonts 
xorg-fonts-cyrillic-7.3 X.Org Cyrillic bitmap fonts

xorg-fonts-miscbitmaps-7.3 X.Org miscellaneous bitmap fonts
xorg-fonts-truetype-7.3 X.Org TrueType fonts
xorg-fonts-type1-7.3 X.Org Type1 fonts
xorg-libraries-7.3_1 X.org libraries meta-port
xorg-nestserver-1.4,1 Nesting X server from X.Org
xorg-protos-7.3 X.org protos meta-port
xorg-server-1.4_4,1 X.Org X server and related programs
xorg-vfbserver-1.4,1 X virtual framebuffer server from X.Org


The contents of my xorg.conf.new file are below


Section ServerLayout
Identifier X.org Configured
Screen  0  Screen0 0 0
InputDeviceMouse0 CorePointer
InputDeviceKeyboard0 CoreKeyboard
EndSection

Section Files
RgbPath  /usr/local/share/X11/rgb
ModulePath   /usr/local/lib/xorg/modules
FontPath /usr/local/lib/X11/fonts/misc/
FontPath /usr/local/lib/X11/fonts/TTF/
FontPath /usr/local/lib/X11/fonts/OTF
FontPath /usr/local/lib/X11/fonts/Type1/
FontPath /usr/local/lib/X11/fonts/100dpi/
FontPath /usr/local/lib/X11/fonts/75dpi/
EndSection

Section Module
Load  extmod
Load  record
Load  dbe
Load  glx
Load  GLcore
Load  xtrap
Load  dri
Load  freetype
Load  type1
EndSection

Section InputDevice
Identifier  Keyboard0
Driver  kbd
EndSection

Section InputDevice
Identifier  Mouse0
Driver  mouse
Option  Protocol auto
Option  Device /dev/sysmouse
Option  ZAxisMapping 4 5 6 7
EndSection

Section Monitor
Identifier   Monitor0
VendorName   Monitor Vendor
ModelNameMonitor Model
EndSection

Section Device
   ### Available Driver options are:-
   ### Values: i: integer, f: float, bool: True/False,
   ### string: String, freq: f Hz/kHz/MHz
   ### [arg]: arg optional
   #Option ShadowFB # [bool]
   #Option DefaultRefresh   # [bool]
   #Option ModeSetClearScreen   # [bool]
Identifier  Card0
Driver  vesa
VendorName  Intel Corporation
BoardName   Mobile GM965/GL960 Integrated Graphics Controller
BusID   PCI:0:2:0
EndSection

Section Screen
Identifier Screen0
Device Card0
MonitorMonitor0
SubSection Display
Viewport   0 0
Depth 1
EndSubSection
SubSection Display
Viewport   0 0
Depth 4
EndSubSection
SubSection Display
Viewport   0 0
Depth 8
EndSubSection
SubSection Display
Viewport   0 0
Depth 15
EndSubSection
SubSection Display
Viewport   0 0
  

Re: Starting X - was Re: Vista / FreeBSD dual boot

2008-01-30 Thread Jonathan Chen
On Wed, Jan 30, 2008 at 08:16:31PM +, Siraj Shaikh wrote:

[...]
 Do I need to get Xorg working first? before I deploy gnome2? I do plan
 to install gnome 2 -certainly at some stage - would that solve my
 problems?
 
 I am a bit confused nowplease help! I thought gnome 2 wouldnt work
 if I dont get xorg to work.

What you are doing is correct. You do need to get XOrg working first,
and startx is the easiest way to test it. There is no point
building/downloading the big list of GNOME2 packages until you get
XOrg working.

Cheers.
-- 
Jonathan Chen [EMAIL PROTECTED]
--
If you wish your merit to be known, acknowledge that of other people
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Starting X - was Re: Vista / FreeBSD dual boot

2008-01-30 Thread Frank Shute
On Wed, Jan 30, 2008 at 07:59:09PM +, Siraj Shaikh wrote:

 On 30/01/2008, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:
  On Wed, 30 Jan 2008, Siraj Shaikh wrote:
 
snip
 
 (EE) Failed to load module fbdev (module does not exist, 0)
 (WW) I810: No matching Device section for instance (BusID PCI:0:2:1) found
 (II) Module ddc already built-in
 (EE) VESA(0): No matching modes
 (EE) Screen(s) found, but none have a usable configuration

 Fatal server error:
 no screens found
 X connection to :0.0 broken (explicit kill or server shutdown)
 
  [cut x config stuff]
 
   I did configure Xorg as it said in the handbook, but after that the
   test didnt work, still gave me the same error. I then installed from a
   port (I assume that will be the latest Xorg 7.3 is it? How can I check
   what version do I have?
  
   What is way forward now? uninstall this and install Xorg 6?
 
   1) Post xorg.conf.new as suggested.
   2) pkg_info | grep xorg  will show you whats installed
   3) check the hardware list to see if there are know issues
   4) Google the error and freebsd + xorg + your system
 
  You will get the most (probably) from posting xorg.conf.new. along with
  'uname -a' output. Don't edit it just send it to the list avoiding line
  wrapping.
 
 
 Following is the result of pkg_info | grep xorg
 
 
 xorg-7.3_1  X.Org complete distribution metaport
 xorg-apps-7.3   X.org apps meta-port
 xorg-cf-files-1.0.2_2 X.org cf files for use with imake builds
 xorg-docs-1.4,1 X.org documentation files
 xorg-drivers-7.3X.org drivers meta-port
 xorg-fonts-100dpi-7.3 X.Org 100dpi bitmap fonts
 xorg-fonts-7.3  X.org fonts meta-port
 xorg-fonts-75dpi-7.3 X.Org 75dpi bitmap fonts
 xorg-fonts-cyrillic-7.3 X.Org Cyrillic bitmap fonts
 xorg-fonts-miscbitmaps-7.3 X.Org miscellaneous bitmap fonts
 xorg-fonts-truetype-7.3 X.Org TrueType fonts
 xorg-fonts-type1-7.3 X.Org Type1 fonts
 xorg-libraries-7.3_1 X.org libraries meta-port
 xorg-nestserver-1.4,1 Nesting X server from X.Org
 xorg-protos-7.3 X.org protos meta-port
 xorg-server-1.4_4,1 X.Org X server and related programs
 xorg-vfbserver-1.4,1 X virtual framebuffer server from X.Org

Looks like you've got everything, from a glance.

 
 
 The contents of my xorg.conf.new file are below
 
 
 Section ServerLayout
   Identifier X.org Configured
   Screen  0  Screen0 0 0
   InputDeviceMouse0 CorePointer
   InputDeviceKeyboard0 CoreKeyboard
 EndSection
 
 Section Files
   RgbPath  /usr/local/share/X11/rgb
   ModulePath   /usr/local/lib/xorg/modules
   FontPath /usr/local/lib/X11/fonts/misc/
   FontPath /usr/local/lib/X11/fonts/TTF/
   FontPath /usr/local/lib/X11/fonts/OTF
   FontPath /usr/local/lib/X11/fonts/Type1/
   FontPath /usr/local/lib/X11/fonts/100dpi/
   FontPath /usr/local/lib/X11/fonts/75dpi/
 EndSection
 
 Section Module
   Load  extmod
   Load  record
   Load  dbe
   Load  glx
   Load  GLcore
   Load  xtrap
   Load  dri
   Load  freetype
   Load  type1
 EndSection
 
 Section InputDevice
   Identifier  Keyboard0
   Driver  kbd
 EndSection

You'll need to edit the above if you're using a non-US keyboard.
E.g:

Section InputDevice
Identifier  Keyboard0
Driver  kbd
Option XkbRules   xfree86
Option XkbModel pc102
Option XkbLayout gb
EndSection

If you tell us which country your keyboard is for, we could provide
more help. 

I think you want:

Option XkbModel pc101

for a laptop.

 
 Section InputDevice
   Identifier  Mouse0
   Driver  mouse
   Option  Protocol auto
   Option  Device /dev/sysmouse
   Option  ZAxisMapping 4 5 6 7
 EndSection
 
 Section Monitor
   Identifier   Monitor0
   VendorName   Monitor Vendor
   ModelNameMonitor Model
 EndSection
 
 Section Device
 ### Available Driver options are:-
 ### Values: i: integer, f: float, bool: True/False,
 ### string: String, freq: f Hz/kHz/MHz
 ### [arg]: arg optional
 #Option ShadowFB# [bool]
 #Option DefaultRefresh  # [bool]
 #Option ModeSetClearScreen  # [bool]
   Identifier  Card0
   Driver  vesa
   VendorName  Intel Corporation
   BoardName   Mobile GM965/GL960 Integrated Graphics Controller
   BusID   PCI:0:2:0
 EndSection

Bad news. i810 doesn't support your graphics chip yet and you have to use
crappy old vesa. 

 
 Section Screen
   Identifier Screen0
   Device Card0
   MonitorMonitor0

Add here:

DefaultColorDepth 24

   SubSection Display
   Viewport   0 0
   Depth 1
   EndSubSection
   SubSection Display
   Viewport   0 0
   Depth 4
   EndSubSection
   SubSection Display
   Viewport   0 0
   Depth 

Re: Automatic `nodump' flag?

2008-01-30 Thread Kirk McKusick
 From: =?utf-8?Q?Dag-Erling_Sm=C3=B8rgrav?= [EMAIL PROTECTED]
 To: Mikhail Teterin [EMAIL PROTECTED]
 Date: Wed, 30 Jan 2008 18:54:02 +0100
 Cc: [EMAIL PROTECTED], [EMAIL PROTECTED]
 Subject: Re: Automatic `nodump' flag?
 
 Mikhail Teterin [EMAIL PROTECTED] writes:
  I'd like the entire contents of each user's .mozilla/firefox/*/Cache
  directory to be excluded from the regular filesystem dumps.
 
  Running ``chflags -R nodump /home/*/.mozilla/firefox/*/Cache'' does
  the trick, but this needs to be redone daily -- prior to running the
  backup -- because new entries appear in the caches, obviously... The
  new entries don't have the nodump flag set.
 
  Is there a way, the flag can be set automatically? For example,
  inherited from the directory? Thanks!
 
 Hmm, shoudn't whichever backup tool you're using stop when it encounters
 a nodump directory?  You shouldn't need to set nodump on the files
 themselves.
 
 DES
 -- 
 Dag-Erling Smørgrav - [EMAIL PROTECTED]

The dump program runs on the raw disk partition dumping sequentially
by inode number. So, it has no idea of the file-tree hierarchy. Thus
any propagation of the nodump flag would have to be done by the
filesystem (or by using a different archiving program). It seems to
me that possible changes that could be made would be to update the
semantics of the existing nodump flag to say that if it is set
on a directory, then any new files or directories created within 
that directory would also have the nodump flag set. Or a new
nodumpall flag could be added that when set on a directory would
propagate to any new files or directories created within that
directory. Both of these would be easy to implement.

Kirk McKusick
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Starting X - was Re: Vista / FreeBSD dual boot

2008-01-30 Thread Siraj Shaikh
On 30/01/2008, Frank Shute [EMAIL PROTECTED] wrote:
 On Wed, Jan 30, 2008 at 07:59:09PM +, Siraj Shaikh wrote:
 
  On 30/01/2008, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:
   On Wed, 30 Jan 2008, Siraj Shaikh wrote:
  
 snip
  
  (EE) Failed to load module fbdev (module does not exist, 0)
  (WW) I810: No matching Device section for instance (BusID PCI:0:2:1) found
  (II) Module ddc already built-in
  (EE) VESA(0): No matching modes
  (EE) Screen(s) found, but none have a usable configuration
 
  Fatal server error:
  no screens found
  X connection to :0.0 broken (explicit kill or server shutdown)
  
   [cut x config stuff]
  
I did configure Xorg as it said in the handbook, but after that the
test didnt work, still gave me the same error. I then installed from a
port (I assume that will be the latest Xorg 7.3 is it? How can I check
what version do I have?
   
What is way forward now? uninstall this and install Xorg 6?
  
1) Post xorg.conf.new as suggested.
2) pkg_info | grep xorg  will show you whats installed
3) check the hardware list to see if there are know issues
4) Google the error and freebsd + xorg + your system
  
   You will get the most (probably) from posting xorg.conf.new. along with
   'uname -a' output. Don't edit it just send it to the list avoiding line
   wrapping.
  
 
  Following is the result of pkg_info | grep xorg
 
 
  xorg-7.3_1  X.Org complete distribution metaport
  xorg-apps-7.3   X.org apps meta-port
  xorg-cf-files-1.0.2_2 X.org cf files for use with imake builds
  xorg-docs-1.4,1 X.org documentation files
  xorg-drivers-7.3X.org drivers meta-port
  xorg-fonts-100dpi-7.3 X.Org 100dpi bitmap fonts
  xorg-fonts-7.3  X.org fonts meta-port
  xorg-fonts-75dpi-7.3 X.Org 75dpi bitmap fonts
  xorg-fonts-cyrillic-7.3 X.Org Cyrillic bitmap fonts
  xorg-fonts-miscbitmaps-7.3 X.Org miscellaneous bitmap fonts
  xorg-fonts-truetype-7.3 X.Org TrueType fonts
  xorg-fonts-type1-7.3 X.Org Type1 fonts
  xorg-libraries-7.3_1 X.org libraries meta-port
  xorg-nestserver-1.4,1 Nesting X server from X.Org
  xorg-protos-7.3 X.org protos meta-port
  xorg-server-1.4_4,1 X.Org X server and related programs
  xorg-vfbserver-1.4,1 X virtual framebuffer server from X.Org

 Looks like you've got everything, from a glance.

 
 
  The contents of my xorg.conf.new file are below
 
 
  Section ServerLayout
Identifier X.org Configured
Screen  0  Screen0 0 0
InputDeviceMouse0 CorePointer
InputDeviceKeyboard0 CoreKeyboard
  EndSection
 
  Section Files
RgbPath  /usr/local/share/X11/rgb
ModulePath   /usr/local/lib/xorg/modules
FontPath /usr/local/lib/X11/fonts/misc/
FontPath /usr/local/lib/X11/fonts/TTF/
FontPath /usr/local/lib/X11/fonts/OTF
FontPath /usr/local/lib/X11/fonts/Type1/
FontPath /usr/local/lib/X11/fonts/100dpi/
FontPath /usr/local/lib/X11/fonts/75dpi/
  EndSection
 
  Section Module
Load  extmod
Load  record
Load  dbe
Load  glx
Load  GLcore
Load  xtrap
Load  dri
Load  freetype
Load  type1
  EndSection
 
  Section InputDevice
Identifier  Keyboard0
Driver  kbd
  EndSection

 You'll need to edit the above if you're using a non-US keyboard.
 E.g:

 Section InputDevice
Identifier  Keyboard0
Driver  kbd
Option XkbRules   xfree86
Option XkbModel pc102
Option XkbLayout gb
 EndSection

 If you tell us which country your keyboard is for, we could provide
 more help.

 I think you want:

Option XkbModel pc101

 for a laptop.

 
  Section InputDevice
Identifier  Mouse0
Driver  mouse
Option  Protocol auto
Option  Device /dev/sysmouse
Option  ZAxisMapping 4 5 6 7
  EndSection
 
  Section Monitor
Identifier   Monitor0
VendorName   Monitor Vendor
ModelNameMonitor Model
  EndSection
 
  Section Device
  ### Available Driver options are:-
  ### Values: i: integer, f: float, bool: True/False,
  ### string: String, freq: f Hz/kHz/MHz
  ### [arg]: arg optional
  #Option ShadowFB# [bool]
  #Option DefaultRefresh  # [bool]
  #Option ModeSetClearScreen  # [bool]
Identifier  Card0
Driver  vesa
VendorName  Intel Corporation
BoardName   Mobile GM965/GL960 Integrated Graphics Controller
BusID   PCI:0:2:0
  EndSection

 Bad news. i810 doesn't support your graphics chip yet and you have to use
 crappy old vesa.

 
  Section Screen
Identifier Screen0
Device Card0
MonitorMonitor0

 Add here:

DefaultColorDepth 24

SubSection Display
Viewport   0 0
Depth 1
EndSubSection
 

Re: Starting X - was Re: Vista / FreeBSD dual boot

2008-01-30 Thread Jonathan Chen
On Wed, Jan 30, 2008 at 09:29:02PM +, Siraj Shaikh wrote:

[...]
 (--) PCI: (0:2:1) Intel Corporation Mobile GM965/GL960 Integrated
 Graphics Controller rev 3, Mem @ 0xf010/20
 New driver is i810

The i810 driver doesn't quite support laptop screens that well. Try using
the intel driver (x11-drivers/xf86-video-intel) instead. This driver
will conflict with the i180 driver, so you will have to remove the old
one first.

Cheers.
-- 
Jonathan Chen [EMAIL PROTECTED]
--
Don't worry about avoiding temptation,
as you grow older, it starts avoiding you.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Starting X - was Re: Vista / FreeBSD dual boot

2008-01-30 Thread Siraj Shaikh
On 30/01/2008, Jonathan Chen [EMAIL PROTECTED] wrote:
 On Wed, Jan 30, 2008 at 09:29:02PM +, Siraj Shaikh wrote:

 [...]
  (--) PCI: (0:2:1) Intel Corporation Mobile GM965/GL960 Integrated
  Graphics Controller rev 3, Mem @ 0xf010/20
  New driver is i810

 The i810 driver doesn't quite support laptop screens that well. Try using
 the intel driver (x11-drivers/xf86-video-intel) instead. This driver
 will conflict with the i180 driver, so you will have to remove the old
 one first.

 Cheers.
 --
 Jonathan Chen [EMAIL PROTECTED]
 --
Don't worry about avoiding temptation,
as you grow older, it starts avoiding you.

How do I do this? what do I change? Thanks
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Network configuration in FreeBSD

2008-01-30 Thread Jerry McAllister
On Wed, Jan 30, 2008 at 03:09:00PM -0500, Bhuvaneswari Ramkumar wrote:

 strangely my /etc has no resolv.conf file at all !

It will only have one if you make one by setting up networking.
sysinstall makes one if you set up a static IP.  I think DHCP makes
it if you do dynamic, but I don't have much experience with DHCP.

jerry

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


Re: acrobat reader (7 or 8) on 7.0-RC1

2008-01-30 Thread Philip M. Gollucci

Vince Hoffman wrote:

KAYVEN RIESE wrote:

Did you install that acrobat port?

You sir are missing the FREEBSD6_COMPAT config in your kernel.
--

Philip M. Gollucci ([EMAIL PROTECTED])
o:703.549.2050x206
Senior System Admin - Riderway, Inc.
http://riderway.com / http://ridecharge.com
1024D/EC88A0BF 0DE5 C55C 6BF3 B235 2DAB  B89E 1324 9B4F EC88 A0BF

Work like you don't need the money,
love like you'll never get hurt,
and dance like nobody's watching.

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


Re: Network configuration in FreeBSD

2008-01-30 Thread Bhuvaneswari Ramkumar
no mine is not dynamic and I have the resolv.conf file set-up. It works fine
now.
I had some issues with FTP ing and some address conflict message for
ssh/tcp.  I sysinstalled and disabled SSH there, I guess probably cos inetd
takes care of it and ftp also works fine now, i guess after etc/rc.conf 
resolve.conf were modified

Thanks a lot
Bhuvana

On Wed, Jan 30, 2008 at 5:07 PM, Alphons Fonz van Werven 
[EMAIL PROTECTED] wrote:

 Jerry McAllister wrote:

 [/etc/resolv.conf]

  I think DHCP makes it if you do dynamic

 It did so in 6.1-RELEASE and it's not likely that this has changed.
 In fact, I had to explicitly config DHCP to not overwrite my resolv.conf
 (because I wanted my own DNS server to be queried before the ISP's).

 Alphons

 --
 VISTA - Viruses Intruders Spyware Trojans Adware

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

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


Re: Network configuration in FreeBSD

2008-01-30 Thread Alphons Fonz van Werven

Jerry McAllister wrote:

[/etc/resolv.conf]


I think DHCP makes it if you do dynamic


It did so in 6.1-RELEASE and it's not likely that this has changed.
In fact, I had to explicitly config DHCP to not overwrite my resolv.conf
(because I wanted my own DNS server to be queried before the ISP's).

Alphons

--
VISTA - Viruses Intruders Spyware Trojans Adware

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


Re: Automatic `nodump' flag?

2008-01-30 Thread Barry Pederson

Kirk McKusick wrote:


The dump program runs on the raw disk partition dumping sequentially
by inode number. So, it has no idea of the file-tree hierarchy. 


I was just looking at the source to dump, specifically traverse.c and 
from what I can see, doesn't dump pass #2 scan through all directories 
and then in the searchdir() function remove a directory's children from 
the list of inodes to backup if the directory has the nodump flag?


-
414 if (nodump) {
415 ip = getino(dp-d_ino, mode);
416 if (TSTINO(dp-d_ino, dumpinomap)) {
417 CLRINO(dp-d_ino, dumpinomap);
418 *tapesize -= blockest(ip);
-

Barry
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Automatic `nodump' flag?

2008-01-30 Thread Wojciech Puchar

The dump program runs on the raw disk partition dumping sequentially
by inode number. So, it has no idea of the file-tree hierarchy. Thus
any propagation of the nodump flag would have to be done by the


Yes, dump DO descend to check for nodump flags - while doing backup for 
raw filesystem. there is enough to set nodump flag to directory, and no 
files in it will be backed up

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


Re: Starting X - was Re: Vista / FreeBSD dual boot

2008-01-30 Thread Jonathan Chen
On Wed, Jan 30, 2008 at 09:51:11PM +, Siraj Shaikh wrote:
 On 30/01/2008, Jonathan Chen [EMAIL PROTECTED] wrote:
  On Wed, Jan 30, 2008 at 09:29:02PM +, Siraj Shaikh wrote:
 
  [...]
   (--) PCI: (0:2:1) Intel Corporation Mobile GM965/GL960 Integrated
   Graphics Controller rev 3, Mem @ 0xf010/20
   New driver is i810
 
  The i810 driver doesn't quite support laptop screens that well. Try using
  the intel driver (x11-drivers/xf86-video-intel) instead. This driver
  will conflict with the i180 driver, so you will have to remove the old
  one first.
...
 
 How do I do this? what do I change? Thanks

There should be a more elegant way to do this, but the way I did it
was to:

# pkg_delete -f xf86-video-i810-1.7.4
# cd /usr/ports/x11-drivers/xorg-drivers
# make rmconfig
# make config
[untick i180 and tick intel]
# portupgrade -f xorg-drivers

After which, X on my laptop started behaving as it should.
-- 
Jonathan Chen [EMAIL PROTECTED]
--
 Power corrupts, Absolute Power is pretty neat
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: acrobat reader (7 or 8) on 7.0-RC1

2008-01-30 Thread Vince Hoffman

Philip M. Gollucci wrote:

Vince Hoffman wrote:

KAYVEN RIESE wrote:

Did you install that acrobat port?

You sir are missing the FREEBSD6_COMPAT config in your kernel.

Just for a second I thought you had it, but sadly not

[EMAIL PROTECTED]
(22:45:02 /usr/src/sys/i386/conf) 0 # uname -a
FreeBSD crab.unsane.co.uk 7.0-RC1 FreeBSD 7.0-RC1 #18: Thu Jan 17 
12:27:35 GMT 2008 [EMAIL PROTECTED]:/usr/obj/usr/src/sys/CRAB  i386

[EMAIL PROTECTED]
(22:45:05 /usr/src/sys/i386/conf) 0 # grep FREEBSD6 
/usr/src/sys/i386/conf/CRAB

options COMPAT_FREEBSD6 # Compatible with FreeBSD6

However I'm going to try updating and recompiling to see if that fixes it.


Vince
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


High thread usage ... where ... ?

2008-01-30 Thread Hub Support
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1


USER  PID %CPU %MEM   VSZ   RSS  TT  STAT STARTED  TIME COMMAND
root5 90.9  0.0 0 8  ??  DL   Thu09PM 1552:04.60 [thread taskq]
root   11 30.4  0.0 0 8  ??  RL   Thu09PM 5076:24.00 [idle: cpu0]
root   10  8.5  0.0 0 8  ??  RL   Thu09PM 4399:13.30 [idle: cpu1]

But I'm not finding any processes that are using any unusual CPU ... this is a 
6-STABLE machine:

FreeBSD 6.3-STABLE #12: Mon Jan 21 08:45:17 AST 2008

Is there some way of find out what process is using up all the CPU?

- 
Marc G. Fournier   Hub.Org Networking Services (http://www.hub.org)
Email . [EMAIL PROTECTED]  MSN . [EMAIL PROTECTED]
Yahoo . yscrappy   Skype: hub.orgICQ . 7615664
-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.4 (FreeBSD)

iD8DBQFHoQBn4QvfyHIvDvMRAjRUAKC2DRZu9qZhpJKZ33kjyGCZBnh9JACggs3m
dYIdVlJQCqGyo5meL8kUfdU=
=BT4+
-END PGP SIGNATURE-

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


Re: Any way to configure VIA Chrome9?

2008-01-30 Thread Tore Lund
John Nielsen wrote:
 Quoting Tore Lund [EMAIL PROTECTED]:
 My new motherboard has the built-in VIA Chrome9 graphics processor,
 which seems to use the xf86-video-via driver.  The driver works, no
 doubt about that, but I badly want to configure gamma, contrast, etc.

 There is supposedly a configuraton utility for Linux, but the few
 comments I can find about it are not very encouraging.  After all, even
 the s3gamma utility for Windows is rather clunky and lackluster.

 I may simply have to buy yet another grahics card (there is no AGP slot
 on this board).  But it seems odd that there is no way to configure this
 processor, which otherwise seems fairly capable (unlike, say, the nv
 driver).  Being able to somehow set gamma independently on the RGB
 channels might be all I need.  Thanks for any hints.
 
 I haven't used it, but you may want to check out the openchrome project 
 (http://www.openchrome.org). There is a FreeBSD port available in the 
 ports tree under x11-drivers/xf86-video-openchrome.

Thanks, John.  I wasn't sure about this port.  I first tried to download
it as a package and started X with the driver via (according to the
documentation), but X did not find it.  I then got rid of the package as
well as the old via driver and installed xf86-video-openchrome as a
port.  It still did not work.  However, studying the new error message,
I decided to correct the driver to openchrome, which DID work.

I must have come across some stale documentation.  At any rate, I can
now start X, and it responds to the Gamma line.  To some extent it also
works with xvidtune.  Screen size and placement is not perfect, but I
hope this can be improved when I have studied the caveats mentioned at
the openchrome site.  Things look promising now.
-- 
Tore

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


Serial port question

2008-01-30 Thread Mario Lobo
Hi guys;

I am doing some experiments with the WL5460AP. I doesn't have a serial 
connector but the RTL8186 does have a UART and the circuit board has a 4 pin 
connector (4-3.3V, 3-TXD, 2-RXD, 1-GND) to the UART. The idea here is to 
rewrite its firmware. 

For a better debuging (and possibly de-bricking), I need to access its console 
screen (which it DOES have).

The (lots of) info I gathered says that the connection to the WL5460AP console 
should be at 38400, 8N1, no-flow ctl.

I have set up a proper cable and a line in /etc/ttys like:
ttyd0   /usr/libexec/getty 3wire.38400 vt100  on  secure 

Using kermit I type:

SET CARRIER-WATCH OFF
set duplex full
set session-log binary
set modem type none
set line /dev/ttyd0
set speed 38400
set flow none
set serial 8n1
set terminal echo local
set terminal newline-mode on
set terminal debug on
connect

but I get nothing back. 

Before I start digging for hardware errors, I want to check if my connection 
attempt is being done right and understand better what is going on.

1) how does this work? ttyd0 goes through cuad0 or does it simply grabs it 
and sets its speed to 38400. Originally, cuad0 is set to 9600.

2) if it goes through cuad0, how do I set it to 38400, 8N1, no-flow ctl?

3) is my ttys line correct?

Thanks !
-- 
Mario Lobo
http://www.mallavoodoo.com.br
FreeBSD since version 2.2.8 [not Pro-Audio YET!!] (99,7% winedows FREE)
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Starting X - was Re: Vista / FreeBSD dual boot

2008-01-30 Thread Siraj Shaikh
On 30/01/2008, Jonathan Chen [EMAIL PROTECTED] wrote:
 On Wed, Jan 30, 2008 at 09:51:11PM +, Siraj Shaikh wrote:
  On 30/01/2008, Jonathan Chen [EMAIL PROTECTED] wrote:
   On Wed, Jan 30, 2008 at 09:29:02PM +, Siraj Shaikh wrote:
  
   [...]
(--) PCI: (0:2:1) Intel Corporation Mobile GM965/GL960 Integrated
Graphics Controller rev 3, Mem @ 0xf010/20
New driver is i810
  
   The i810 driver doesn't quite support laptop screens that well. Try using
   the intel driver (x11-drivers/xf86-video-intel) instead. This driver
   will conflict with the i180 driver, so you will have to remove the old
   one first.
 ...
  
  How do I do this? what do I change? Thanks

 There should be a more elegant way to do this, but the way I did it
 was to:

# pkg_delete -f xf86-video-i810-1.7.4
# cd /usr/ports/x11-drivers/xorg-drivers
# make rmconfig
# make config
[untick i180 and tick intel]
# portupgrade -f xorg-drivers

 After which, X on my laptop started behaving as it should.
 --
 Jonathan Chen [EMAIL PROTECTED]

Jonathan

I followed your instructions but still doesnt work.

Now, all this is really disappointing. Would you suggest I reinstall
FreeBSD 6.3? Perhaps I reinstall it without choosing Xorg during
sysinstall and then install it later through package or port?

If you think this wont make a difference, then I am prepared to just
leave it as it is for now I think.

Thanks
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: acrobat reader (7 or 8) on 7.0-RC1

2008-01-30 Thread Boris Samorodov
On Wed, 30 Jan 2008 20:25:47 + Vince Hoffman wrote:

   Has anyone else had any issues getting this working? my laptop
 runs acrobat reader7 fine while my desktop doesnt like it at all (see
 error below.) I am using compat.linux.osrelease=2.6.16 and
 linux_base-fc6-6_5 I have linux procf mounted.

Have you read /usr/ports/UPDATING?

 any suggestion?

Restore default linux base port and sysctl setting(s).


WBR
-- 
bsam
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


looking for MzScheme (for Arc)

2008-01-30 Thread Chad Perrin
Some of you may be aware that Paul Graham and Robert Morris released a
development version of Arc (yes, really -- it's not vaporware).  It is
implemented on top of MzScheme.

I wanted to play with it, but quickly ran into trouble finding an
MzScheme port.  Is there one that I just haven't been able to find?  I'd
rather use MzScheme from ports, if it exists there, than install it
outside the ports system -- though I'll install it separately if need be.

-- 
CCD CopyWrite Chad Perrin [ http://ccd.apotheon.org ]
They always say that when life gives you lemons you should make lemonade. 
I always wonder -- isn't the lemonade going to suck if life doesn't give
you any sugar?
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Network configuration in FreeBSD

2008-01-30 Thread Giorgos Keramidas
On 2008-01-30 22:07, Alphons Fonz van Werven [EMAIL PROTECTED] wrote:
 Jerry McAllister wrote:
 [/etc/resolv.conf]
 
 I think DHCP makes it if you do dynamic
 
 It did so in 6.1-RELEASE and it's not likely that this has changed.
 In fact, I had to explicitly config DHCP to not overwrite my resolv.conf
 (because I wanted my own DNS server to be queried before the ISP's).

FWIW, there's an option which may help with this:

[ in dhclient.conf ]

interface ath0 {
prepend domain-name-servers 196.168.1.1;
}

That's what I currently use :)

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


broadcom wireless card on FB7 using ndisgen, no ndis0 after kldload

2008-01-30 Thread Kemian Dang

Hi, everyone,

I have a laptop which using the broadcom wireless card.
I download the bcmwl5a.inf/.sys and use ndisgen to generate the .ko 
file, then I kldload it as the doc said.
I can see ndis,if_ndis and bcmwl using kldstat, but there are no ndis0 
when ifconfig.

I have tried add the bcmwl to the /boot/loader.conf, but still no ndis0.
And there no message in the dmesg about the ndis.

Have anyone installed this wireless driver and please give me some 
advice on how to make it work, thanks in advance.


Best wishes,
Kemian
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Starting X - was Re: Vista / FreeBSD dual boot

2008-01-30 Thread Jonathan Chen
On Wed, Jan 30, 2008 at 11:29:02PM +, Siraj Shaikh wrote:
 On 30/01/2008, Jonathan Chen [EMAIL PROTECTED] wrote:

[...]
  There should be a more elegant way to do this, but the way I did it
  was to:
 
 # pkg_delete -f xf86-video-i810-1.7.4
 # cd /usr/ports/x11-drivers/xorg-drivers
 # make rmconfig
 # make config
 [untick i180 and tick intel]
 # portupgrade -f xorg-drivers
 
...
 Jonathan
 
 I followed your instructions but still doesnt work.
 
 Now, all this is really disappointing. Would you suggest I reinstall
 FreeBSD 6.3? Perhaps I reinstall it without choosing Xorg during
 sysinstall and then install it later through package or port?

A reinstallation of 6.3 wouldn't really solve anything, as your
problem isn't with the base system; it's with XOrg. Could you repost
the results of your latest /var/log/XOrg.log with the new intel
video driver? You may have to submit its contents to XOrg for a better
diagnosis.

Cheers.
-- 
Jonathan Chen [EMAIL PROTECTED]
--
   Do not take life too seriously.
   You will never get out of it alive.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: broadcom wireless card on FB7 using ndisgen, no ndis0 after kldload

2008-01-30 Thread Glen Barber
On Wednesday 30 January 2008 07:18:51 pm Kemian Dang wrote:

 I have a laptop which using the broadcom wireless card.
 I download the bcmwl5a.inf/.sys and use ndisgen to generate the .ko
 file, then I kldload it as the doc said.
 I can see ndis,if_ndis and bcmwl using kldstat, but there are no ndis0
 when ifconfig.
 I have tried add the bcmwl to the /boot/loader.conf, but still no ndis0.
 And there no message in the dmesg about the ndis.


Did you copy the bcmxxx.ko file to /book/kernel/ ?  If you did, make sure you 
have an entry in your /boot/loader.conf: 
bcmxxx_load=YES

I have my bcm driver called 'bcmwl5_sys.ko' and 'bcmwl5_sys_load=YES in 
my /boot/loader.conf.

Hope that helps

-- 
Glen Barber

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


Re: Automatic `nodump' flag?

2008-01-30 Thread Kirk McKusick
 Date: Wed, 30 Jan 2008 16:13:54 -0600
 From: Barry Pederson [EMAIL PROTECTED]
 To: Kirk McKusick [EMAIL PROTECTED]
 CC: =?ISO-8859-1?Q?Dag-Erling_Sm=F8rgrav?= [EMAIL PROTECTED], [EMAIL 
 PROTECTED],
 [EMAIL PROTECTED]
 Subject: Re: Automatic `nodump' flag?
 X-ASK-Info: Message Queued (2008/01/30 14:14:17)
 X-ASK-Info: Confirmed by User (2008/01/30 16:37:01)
 
 Kirk McKusick wrote:
 
  The dump program runs on the raw disk partition dumping sequentially
  by inode number. So, it has no idea of the file-tree hierarchy. 
 
 I was just looking at the source to dump, specifically traverse.c and 
 from what I can see, doesn't dump pass #2 scan through all directories 
 and then in the searchdir() function remove a directory's children from 
 the list of inodes to backup if the directory has the nodump flag?
 
 -
 414 if (nodump) {
 415 ip = getino(dp-d_ino, mode);
 416 if (TSTINO(dp-d_ino, dumpinomap)) {
 417 CLRINO(dp-d_ino, dumpinomap);
 418 *tapesize -= blockest(ip);
 -
 
   Barry

You are completely correct. This does prune out everything below a
directory marked `nodump' even if those files are not also marked
`nodump'. Note that by default, level 0 dumps will ignore the
`nodump' flag. You have to use `-h 0' if you want a level 0 dump
to honor the `nodump' flag.

You would think I would remember code that I wrote (though in my
defense it was written over 20 years ago :-)

Kirk McKusick
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: High thread usage ... where ... ?

2008-01-30 Thread Glen Barber
On Wednesday 30 January 2008 05:55:35 pm Hub Support wrote:

 Is there some way of find out what process is using up all the CPU?

This may seem obvious, but I have to ask:  Did you try 'top' ?

-- 
Glen Barber
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Network configuration in FreeBSD

2008-01-30 Thread Alphons Fonz van Werven

Giorgos Keramidas wrote:


[ in dhclient.conf ]

interface ath0 {
prepend domain-name-servers 196.168.1.1;
}


Neat. I used another workaround (don't remember exactly what) back then,
but this sure looks tidier.

Something to remember...

Alphons

--
VISTA - Viruses Intruders Spyware Trojans Adware

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


Re: Serial port question

2008-01-30 Thread Warren Block

On Wed, 30 Jan 2008, Mario Lobo wrote:

I am doing some experiments with the WL5460AP. I doesn't have a serial
connector but the RTL8186 does have a UART and the circuit board has a 4 pin
connector (4-3.3V, 3-TXD, 2-RXD, 1-GND) to the UART. The idea here is to
rewrite its firmware.


You may have to swap TXD and RXD (null-modem).


For a better debuging (and possibly de-bricking), I need to access its console
screen (which it DOES have).

The (lots of) info I gathered says that the connection to the WL5460AP console
should be at 38400, 8N1, no-flow ctl.

I have set up a proper cable and a line in /etc/ttys like:
ttyd0   /usr/libexec/getty 3wire.38400 vt100on  secure


I would set that back to default.  /dev/cuad0 is the callout port.


Using kermit I type:

SET CARRIER-WATCH OFF
set duplex full
set session-log binary
set modem type none
set line /dev/ttyd0
set speed 38400
set flow none
set serial 8n1
set terminal echo local
set terminal newline-mode on
set terminal debug on
connect

but I get nothing back.


Try again with /dev/cuad0.  Again, you may have to reverse TXD and RXD 
at one end of the cable.



Before I start digging for hardware errors, I want to check if my connection
attempt is being done right and understand better what is going on.

1) how does this work? ttyd0 goes through cuad0 or does it simply grabs it
and sets its speed to 38400. Originally, cuad0 is set to 9600.


See sio(4).  ttyd0 is a callin port, while cuad0 is a callout port.


2) if it goes through cuad0, how do I set it to 38400, 8N1, no-flow ctl?


You're telling kermit to set the speed and flow control.  For this 
application, you could probably use cu/tip also:


cu -l /dev/cuad0 -s 38400


3) is my ttys line correct?


I don't think so.

-Warren Block * Rapid City, South Dakota USA
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Serial port question

2008-01-30 Thread Mario Lobo
On Wednesday 30 January 2008 21:42:28 you wrote:
 On Wed, 30 Jan 2008, Mario Lobo wrote:
  I am doing some experiments with the WL5460AP. I doesn't have a serial
  connector but the RTL8186 does have a UART and the circuit board has a 4
  pin connector (4-3.3V, 3-TXD, 2-RXD, 1-GND) to the UART. The idea here is
  to rewrite its firmware.

 You may have to swap TXD and RXD (null-modem).

I tried that. 


  For a better debuging (and possibly de-bricking), I need to access its
  console screen (which it DOES have).
 
  The (lots of) info I gathered says that the connection to the WL5460AP
  console should be at 38400, 8N1, no-flow ctl.
 
  I have set up a proper cable and a line in /etc/ttys like:
  ttyd0   /usr/libexec/getty 3wire.38400 vt100  on  secure

 I would set that back to default.  /dev/cuad0 is the callout port.

I'll try that.


  Using kermit I type:
 
  SET CARRIER-WATCH OFF
  set duplex full
  set session-log binary
  set modem type none
  set line /dev/ttyd0
  set speed 38400
  set flow none
  set serial 8n1
  set terminal echo local
  set terminal newline-mode on
  set terminal debug on
  connect
 
  but I get nothing back.

 Try again with /dev/cuad0.  Again, you may have to reverse TXD and RXD
 at one end of the cable.

ok


  Before I start digging for hardware errors, I want to check if my
  connection attempt is being done right and understand better what is
  going on.
 
  1) how does this work? ttyd0 goes through cuad0 or does it simply
  grabs it and sets its speed to 38400. Originally, cuad0 is set to 9600.

 See sio(4).  ttyd0 is a callin port, while cuad0 is a callout port.

  2) if it goes through cuad0, how do I set it to 38400, 8N1, no-flow
  ctl?

 You're telling kermit to set the speed and flow control.  For this
 application, you could probably use cu/tip also:

 cu -l /dev/cuad0 -s 38400

I tried that. It says connected and hangs. I have to open another console to 
kill -9 it


  3) is my ttys line correct?

 I don't think so.

 -Warren Block * Rapid City, South Dakota USA

Warren, I found this discussion on the inet.

Could you comment on it? 

http://fixunix.com/bsd/86444-serial-ports-control-peripherals-w-3-wire-interface-okay-5-x-isn-t-working-6-x.html

Maybe my plans to access the serial port will have to wait.

I know my cuad0 is ok because I can fax with an external Genius modem.

Thanks for replying !


-- 
Mario Lobo
http://www.mallavoodoo.com.br
FreeBSD since version 2.2.8 [not Pro-Audio YET!!] (99,7% winedows FREE)
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: High thread usage ... where ... ?

2008-01-30 Thread Marc G. Fournier
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1



- --On Wednesday, January 30, 2008 19:42:57 -0500 Glen Barber 
[EMAIL PROTECTED] wrote:

 On Wednesday 30 January 2008 05:55:35 pm Hub Support wrote:

 Is there some way of find out what process is using up all the CPU?

 This may seem obvious, but I have to ask:  Did you try 'top' ?

Actually, figured out that top does show threads, but killed off all the 
processes using 1 thread, and the thread process continued to run a % of CPU 
... so was hoping there was something else that I might try ...

thanks though, I had tried top, but it wasn't until after I sent this that I 
noticed the 'THR' column ...

- 
Marc G. Fournier   Hub.Org Networking Services (http://www.hub.org)
Email . [EMAIL PROTECTED]  MSN . [EMAIL PROTECTED]
Yahoo . yscrappy   Skype: hub.orgICQ . 7615664
-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.4 (FreeBSD)

iD8DBQFHoTqk4QvfyHIvDvMRAiBWAJ9PAMcAXEBi/tY4ywqEhvQYJYK8TwCg0SN7
iSpUQaTSHo5TPnUej5EUw4M=
=gnaI
-END PGP SIGNATURE-

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


  1   2   >