Re: Contents, bootable, etc...

2005-10-21 Thread Tobias Fendin

IgnesAndros wrote:

Is the boot-only CD simply for installing? If it functions as a live CD,
does it include httpd and webmin? If not to either, can you help me find a
BSD-based distro that does?


Well, you can do some stuff from the boot-only CD, but not too much...
Take a look at FreeSBIE
http://freesbie.org

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


Re: Configuring sound

2005-09-25 Thread Tobias Fendin

Michał Masłowski wrote:


Mixer rec  is currently set to   0:0


maybe you should change rec's value to something bigger..


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


Re: where are the missing libraries from the kernel source code

2005-09-20 Thread Tobias Fendin

Alexandru Gabor wrote:

[snip]

Iwdent  HOSSU


[snip]


#device ppbus   # Parallel port bus (required)

[snip]

The Iwdent seems misspelled.
And the comment for ppbus says it's required, so I guess you should not 
remove it.



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


Re: change mediaopt of NIC to full-duplex

2005-07-25 Thread Tobias Fendin

Gavin McDougall wrote:

Hi there,

I need to set my network cards (Intel Pro 1000) to full-duplex.

I tried using ifconfig with the mediaopt option which worked, but only 
temporarily.


I then downloaded mii-tool 'cos it wasn't in the ports collection but it 
just gives me critical errors when I try to compile it.


Is there possibly another method that I can use on my FreeBSD server to 
permanently change my NIC settings to full-duplex?


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




set the mediaopt in your rc.conf
example:
ifconfig_xl0=blah blah mediaopt full-duplex

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


Re: pppOe 1000baseTX config

2005-07-25 Thread Tobias Fendin

Lane wrote:


Notice that bge0 media is 10baseT/UTP and re0 is 100baseTX



What kind of network cables are you using?
UTP stands for unshielded twisted pair, which doesn't work so well with 
higher bandwidths.

I think 1000baseTX requiers CAT6 cables.

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


Re: pppOe 1000baseTX config

2005-07-25 Thread Tobias Fendin

albi wrote:

On Mon, Jul 25, 2005 at 03:24:44PM -0500, Chris Haulmark wrote:


On Mon, 2005-07-25 at 15:30 -0500, Lane wrote:


I think 1000baseTX requiers CAT6 cables.


Cat5e supports gigabit speeds.



a few days ago i bought a crosslink cat 5e cable 
saying shielded RJ45 10-100MBPS,

(and it would not do 1 Gigabit transfers after setting it up with 2 1Gigabit
cards between 2 FreeBSD-boxes point-to-point)

..i'd like to know The Truth (TM) now :-)


Sorry, I was wrong, 1000baseTX works on CAT5e cabels.

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


Re: password expire

2005-07-21 Thread Tobias Fendin

Joe Stuart wrote:
I have a whole group of users with weak passwords. Is there a way that I can force a password change at next login?  


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



pw usermod [name|uid] -p date should do the trick.
Check the pw(8) man-page for more details.

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


Re: password expire

2005-07-21 Thread Tobias Fendin

Gayn Winters wrote:



-Original Message-
From: [EMAIL PROTECTED] 
[mailto:[EMAIL PROTECTED] On Behalf Of 
Tobias Fendin

Sent: Thursday, July 21, 2005 11:31 AM
To: Joe Stuart
Cc: freebsd-questions@freebsd.org
Subject: Re: password expire


Joe Stuart wrote:

I have a whole group of users with weak passwords. Is there 


a way that I can force a password change at next login?  



pw usermod [name|uid] -p date should do the trick.
Check the pw(8) man-page for more details.

   -Tobias



OK, but if a whole group is many many users, how can one pipe-in the
list of users?  I have a similar problem updating one of my user groups,
and typing in a pw for each user is a little painful.  Maybe one of the
shell wizards out there can give us a lesson.  TIA,

-gayn




well, this might not be nice, but hey, it's a hack :)

for USER in `pw groupshow your group |awk -F : '{print $4}'| sed 
's/,/ /1'`

do
pw usermod $USER -p date
done

 -Tobias


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


Re: sysctl

2005-06-23 Thread Tobias Fendin

fbsd_user wrote:

Please do your home work and read the man sysctl page before just
posting messages.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Sadashiv
Kulthe
Sent: Thursday, June 23, 2005 11:15 AM
To: freebsd-questions@freebsd.org
Subject: sysctl


Hello,

Sorry! I say syslog is not there but it is there with problems !!!

-bash-2.05b# /usr/sbin/syslogd
syslogd: child pid 39793 exited with return code 1

My System do not have Sysctl .. how can I bring sysctl to my
system.

Sadashiv
___
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]


Hello

Syslogd quits with return code 1 if an other syslogd is already running. 
To check the status of syslogd try this: /etc/rc.d/syslogd status



Concerning the sysctl problem: Are you sure sysctl is gone, or could it 
be your PATH which is corrupt? sysctl resides in /sbin.


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


Dell Latitude C640, very hot!

2005-06-22 Thread Tobias Fendin

Hi

I've got a Dell Latitude C640, with FreeBSD 5.4 stable.
It works well, except for this:
After a cuple of hours up and running it gets really hot. My fingers 
almost gets burned when I touch the harddirve, memory etc!
According to `sysctl hw.acpi.thermal.tz0.temperature` the 
cpu-temperature is usually about 50-60 degrees C.
Which I consider i normal, but is it normal for the rest of the devices 
to be so hot?


Is there someone else who has the same problem which I do with a simular 
computer?


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


burncd, eject before read

2005-06-09 Thread Tobias Fendin

Hi folks.

I've just burned an iso to a cd successfully.
But before I could mount it, I had to eject the cd-tray and then close 
it, before I could mount it.


I got this error message from mount:
cd9660: /dev/acd0: Input/output error

I wonder if it's a bug or feature.

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


Re: ftp server frustrating

2005-05-31 Thread Tobias Fendin

Vizion wrote:


Hi

When I need to log on to  ftp.freebsd.org manually 15 seconds (the allowed 
login time) is insufficient  (especially when I am using my tablet) -- and I 
sometimes get logged out if I have a long file name to get. This seems to 
happen when there is a long file name to enter.


Please can you raise the limits so they are reasonable for manual ftp access. 
It is sometimes needed when for one reason or another one cannot obtain the
file automatically. There are also occasions when the server drops connections 
on automatic access due to network delays.


My experience is that the time settings are overly tight.
 



Why don't you try a mirror site?
You can find them in the handbook.

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


Re: procfs in 5.4

2005-05-22 Thread Tobias Fendin

Chris Radlinski wrote:


I should have procfs.  However, my /proc directory is empty.

What gives?
 


You have to mount it. Add this line to /etc/fstab:

proc/proc   procfs  rw 0 0

And then run:

mount /proc

You might also check out the man-page: procfs(9)


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


Re: Working X - Anyone?

2005-05-02 Thread Tobias Fendin
Subhro wrote:
Hello Folks,
I had been trying to get Xorg 6.8.2  working on a 5.4-STABLE 
installation. I had compiled Xoeg from an updated ports tree. But 
while running Xorg -configure it complains that the module pcidata 
is missing. I have uninstalled and reinstalled Xorg but without any 
success. Anyone can guide me where I am going wrong? Has anyone got 
Xorg 6.8.2  working from ports? I have preciously posted but didnt get 
any replies :-(.

Regards
S.
Yes, I've got Xorg 6.8.2 working on 5.4-STABLE.
This might give you some hints:
[EMAIL PROTECTED] ~ $ grep pcidata /var/log/Xorg.0.log
(II) LoadModule: pcidata
(II) Loading /usr/X11R6/lib/modules/libpcidata.a
(II) Module pcidata: vendor=X.Org Foundation
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: hostname problem on a local network

2005-05-02 Thread Tobias Fendin
Bill Schmitt (SW) wrote:
I have a FreeBSD 4.9 system on a private network, connected to the 
internet through a Netgear router/firewall which acts as a DHCP server 
and receives its names through netbios. I'm trying to set it to 
respond to the fully qualified name schfrbsd.lan. In my rc.conf, I 
have the line:

hostname=schfrbsd.lan
I've also tried adding a dot to the end of it:
hostname=schfrbsd.lan.
Whatever I do, I cannot get the machine to register itself on the 
network (though Samba) as schfrbsd.lan. It always shows up as 
schfrbsd. hostname -s returns the same value.

Can someone tell me what I'm doing wrong?
Bill
Though it shouldn't be needed, you could try to set Sambas netbios name. 
See smb.conf(5) for more details.

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


Re: DHCP using ifconfig doesn't work ...

2005-05-01 Thread Tobias Fendin
Kiffin Gish wrote:
I want to use DHCP for my wireless connection by placing the following
lines in my /etc/rc.conf file:
ifconfig_wi0=DHCP
ifconfig_wi0=ssid GISH mode auto wepmode on wepkey 0x1234567890
I have also tried running sysinstall again and reconfiguring my wireless
connection by answering 'yes' to DHCP.
However, these do not work for some weird reason. When I login as root
and run 'dhclient wi0' then all is a-okay.
How can I have this happen automatically during boot without having
manually to run this command as root everytime?
Thanks alot in advance as usual.
 

If you do like that, first ifconfig_wi0 will be set to DHCP, then it
will be overwritten and set to ssid GISH mode auto wepmode on wepkey
0x1234567890. You should only have one line with ifconfig_wi0.
//Tobias
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]