Re: Upgrading from 6.2 to 7.0

2008-02-29 Thread Dustin Coates
http://www.freebsd.org/releases/7.0R/relnotes.html#UPGRADE


On Fri, 2008-02-29 at 19:01 -0600, Jay Deiman wrote:
 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA1
 
 I have a couple of 6.2 machines that I would like to upgrade to the 7.0
 release.  Is there an official set of instructions for this process?
 
 Thanks,
 
 Jay Deiman
 -BEGIN PGP SIGNATURE-
 Version: GnuPG v1.4.6 (GNU/Linux)
 Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org
 
 iD8DBQFHyKsCQ0lr+ZVKSBgRAg9WAJ9p4/0BxGR2OOeLfLFjNjrYmOCengCfSdHg
 y0ZelWPJPoQuThZqm09Jogc=
 =+YOc
 -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]


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


RE: Can't log in a root from anywhere but the console screen.

2006-09-28 Thread Dustin Coates


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Jim Borland
Sent: Thursday, September 28, 2006 4:22 AM
To: freebsd-questions@FreeBSD.org
Subject: RE: Can't log in a root from anywhere but the console screen.




Jim Borland

Unit 2  Wallace Studios
27 Wallace Avenue
LisburnBT27 4AE
mail: [EMAIL PROTECTED]
www: www.meridiansystems.co.uk
tel: +44 (0)28 9260 5060
fax: +44 (0)28 9264 0700
mob: 

-Original Message-

From: Erik Norgaard [mailto:[EMAIL PROTECTED] 
Sent: 28 September 2006 09:42
To: Jim Borland
Cc: freebsd-questions@FreeBSD.org
Subject: Re: Can't log in a root from anywhere but the console screen.

Jim Borland wrote:
 I want to use a PC to telnet to the freeBSD server and login as root 
 but it won't let me! Can you help? I can login as a normal user just 
 not as root, I can't key in su to get in as superuser either.

1) Don't use telnet, use ssh, for security.
2) Are you in the wheel group?

Erik suggested I use ssh, I've never used ssh before and when I do it
says the connection has been refused. 
The root user is in the wheel group, I have a user called jim which
is in a group called group he is able to login using telnet.



The best thing to do is to add the user jim to the wheel group, then you
should be able to login as him over ssh, then su to superuser, and do
virtually everything root can do. It is considered a security risk to allow
root access to ssh. But it's your server. So if you want root to be able to
login despite my warning.  Edit /etc/ssh/sshd_config and find
#PermitRootLogin no, remove the hash, and change the no to yes


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


Re: compiling ports to packages on fast system, installing on slower one

2006-06-08 Thread Dustin Coates

Dave wrote:

Hello,


Hi


   I was wondering if this was possible? I've got a box that i'd like 
to install the latest gnome 2.14 desktop on, as well as some very 
intense apps to build. I would like to compile the needed apps on my 
fastest machine as packages, then transfer all the packages to the 
slower box, and do a pkg_add * and they're all installed. My catch is 
i don't want to install everything on my fastest box to pull this off. 
I am using portupgrade and was wondering if this was doable?

Thanks.
Dave.

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




man pkg_create

Also check out: 
http://www.onlamp.com/pub/a/bsd/2006/04/13/freebsd-build-system.html


This is a pretty good guide to creating a build server, from your 
fastest machine, so it does all the work, from updating world and kernel 
source, to ports. Bascially it involves NFS and mounting the faster 
computers /usr/src  /usr/ports after thier compiled on the faster 
machine.



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


Re: ndis problem

2006-05-30 Thread Dustin Coates

Lorin Lund wrote:

I'm running 6.1-RELEASE i386.  Generic kernel.
The wireless 'card' is a built-in Broadcom 802.11 b/g
My PC is a Compaq V2607CL Turion based notebook

I downloaded a driver kit from HP.  It created
 c:\SWSetup\SP32158A\
In that folder I found
 bcmwl5.inf
 bcmwl5.sys
 bcmwl5npf.sys
and lots of other files.

The .INF file was UNICODE.  But as far as I can tell the only
special characters were in the
[strings]
section for various countries.  I cut off all the other countries 
leaving just US and

forced it to ASCII.
ndiscvt gave no error messages.

The
 make
 make install
gave no error messages.

I added an ndis linen to loader.conf to load the .ko

dmesg shows no error messages.  But it doesn't show ndis0: being 
recognized either.


When I manually try
 kldload ndis
it says it is already loaded.

When I try
 ifconfig -a
there is no ndis:
When I try
 ifconfig ndis0:
it says there is no interface.

I don't know what else to try.
Try using ndisgen to make the wrapper. ndisgen should create a 
bcwml5_sys.ko file in the directory, then you need to copy that file to 
/boot/kernel/
After that in your loader.conf add bcmwl5_sys_load=YES along with the 
ndis_load=YES. I beleive that the old way of creating the ndis drivers 
is either broken, or being faded out for ndisgen.


I have the same wireless cards and this is the way i did it. So it 
should work.

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