Re: configuracion en la red

2005-02-09 Thread Martin Paredes

Gustavo:

Esta es una lista en ingles, si se te dificulta el ingles, existe una lista 
que se escribe en español : [EMAIL PROTECTED]

On Wednesday 09 February 2005 05:10, Gustavo Granados wrote:
 como se configura en la red ?

Tu pregunta es algo ambigua, ya que no dices que es lo que has realizado, pero 
en pocas palabras, lo que tienes que hacer es saber que marca y modelo de 
tarjeta tienes y si la soporta FreeBSD.

Usa el comando dmesg | grep thernet para saber si FreeBSD reconocio una 
tarjeta ethernet.

usa el comando ifconfig para ver la configuracion de tu red.

empieza una pregunta nueva en [EMAIL PROTECTED] usando la salida de los 
comandos anteriores.


 Gracias
 Gustavo
 ___
 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: port source list from www.freebsd.org

2005-02-09 Thread Martin Paredes
On Wednesday 09 February 2005 00:02, Vikash Badal wrote:
 Greetings,

  I have looked at the following url :

 http://www.freebsd.org/cgi/pds.cgi?ports/www/squid

 and the sources are no longer listed, is this the default or is there
 a problem with the pages

 I have tried several different ports and all produce the same result:

   Sorry, did not find the sources for ports/category/portname  


http://www.freebsd.org/cgi/ports.cgi?query=%5Esquidstype=all

 Thanks

 vikash



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


find printers with problems

2004-11-06 Thread Martin Paredes

Hi listers.

I need to make a script to find the printers with problems, queuing is 
disabled or printing is disabled, but the problem is how the lpc command 
print the information.

# lpc status all
prtsin2114:
        queuing is enabled
        printing is enabled
        1 entry in spool area
        printer idle
prtsin2111:
        queuing is disabled
        printing is enabled
        no entries in spool area
        printer idle
prtsin2112:
        queuing is enabled
        printing is disabled
        no entries in spool area
        printer idle
prtsin2113:
        queuing is enabled
        printing is enabled
        no entries in spool area
        printer idle

I had been trying to use awk, sed and grep to produce something like :

prtsin2111::queuing is disabled:printing is enabled
prtsin2112::queuing is enabled:printing is disabled

but my problem is how to substitute the string (new line and tab) \n\t by 
:.

TIA
maps

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


Re: How to print to hp JetDirect/LaserJet 1300 Network printer?

2004-10-31 Thread Martin Paredes
On Saturday 30 October 2004 12:56, Jay O'Brien wrote:
 I'm a new user of 4.10. I want to print to my hp 1300 LaserJet,
 which has a JetDirect network server and is connected to my LAN.

 The printer is assigned the fixed IP 192.168.1.40. I can ping
 that address from my FreeBSD computer.


make an entry in their /etc/printcap files with the following:

1.- Name the entry anything you want. For simplicity, though, you probably 
want to use the same name and aliases as on the printer host.

2.- Leave the lp capability blank, explicitly (:lp=:).

3.- Make a spooling directory and specify its location in the sd capability. 
LPD will store jobs here before they get sent to the printer host.

4.- Place the ip of the jetdirect in the rm capability.

5.- Place the string raw or text in the rp capability.

Tip: If you are using a Hewlett Packard Laserjet then the printer name rp=text 
will automatically perform the LF to CRLF conversion for you.

maps

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


error in whereis command

2004-10-22 Thread Martin Paredes

I just set the LANG enviroment variable, and i have this problem, how can i 
install this locale.

[EMAIL PROTECTED] ~ whereis whereis
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
LC_ALL = (unset),
LANG = es_MX.ISO8859-1
are supported and installed on your system.
perl: warning: Falling back to the standard locale (C).
whereis: /usr/bin/whereis /usr/share/man/man1/whereis.1.gz /usr/src/usr.bin/
whereis
[EMAIL PROTECTED] ~

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


read variable with numeric values in tcsh

2004-10-21 Thread Martin Paredes

Hi:

in a script I wan to read from the user the strin 1 2 3 but I always get an 
error

[EMAIL PROTECTED] ~ set var $
1 2 3
set: Variable name must begin with a letter.

any ideas?

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


Re: Binary/ASCII File upload issues

2004-10-21 Thread Martin Paredes
On Monday 18 October 2004 02:43, nocturnal wrote:
 if i do file index.php on a file i uploaded that works just
 fine with php ran as cgi i get /path/index.php: a
 /usr/local/bin/php script text executable and if i do file
 index.php on a customers index.php file which i think they
 uploaded using binary transfer mode i get script text
 executable/bin/php only, the second file doesn't work using
 php as cgi, i get an internal server error, i know how to
 fix this but i'm wondering if anyone could explain why this
 happens on freebsd and if it's related to the ftp transfer

if you transfer a file from unix to unix system, always use binary.
but if you transfer from window to unix, you need to know if the file is text 
or binary

In windows, make a file that contain the next line and transfer in binary
Line1
Line2

In the unix edit the file with vi an you will see
Line1^M
Line2

In windows, the new line is conformed with 2 characters (10 and 13) and in 
unix with 1 character (13)

when you tranfer in ascii, the strings [10][13] are converted to [13]

maybe this extra character is the problem.

maps

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


Default router in a PPP conection was: [Re:]

2004-10-19 Thread Martin Paredes
On Saturday 16 October 2004 08:29, Ming Zhang wrote:
 I want to know how to set the Default Gateway to be the pppoe server's ip.
 Or it's impossible?

add default HISADDR

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


Re: IP address conflicts

2004-10-03 Thread Martin Paredes
 
  Well, you could move all of the servers onto a separate network to any
  of the individual client machines (and make sure that the server
  network isn't accessible from any of the network ports your clients
  have access to, clearly).  That way, even if one of your pet idiots
  decides to 'borrow' a server IP address, the network routing means
  that all they are going to do is hurt themselves.

 Think of this for a second.  Right now he has maybe 4-5 different servers
 that
 people are putting the IP numbers on.  Once you move all those servers onto
 a
 separate subnet, now all the little twits have to do is put the IP number
 of the gateway router onto their systems, then the entire subnet that ALL
 the servers are on becomes inaccessible.


if you have 20 buildings, you must create 20 subnets as minimun.

try to isolate the public ports (any one can conect) like computers labs rooms 
from the used by people that work in the school (administratives offices)

also, try to isolate floors or rooms so you can arrive to this room and review 
the pc that are connected (the subnet may be of 32 or 64 hosts)

put an special area  (on his own subnet) by building to allow students to 
connect his cumputers.

request help from the labs administrators and the workers of the school to 
watch for person that get pc or laptop inside labs (maybe must search inside 
bags) and if the problem happen, at least you know some faces.

maps

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


Re: cannot see Windows after installing FreeBSD

2004-09-26 Thread Martin Paredes
On Friday 24 September 2004 22:48, Saccheen Martin wrote:
 Hi,

 I am a newbie to FreeBSD. I have a Pentium 3, 5oo IBM
 computer that I put two hard drives in. I added a 4.3G
 hard drive (master) and an 80G hard drive (slave).
 Initially, windows XP was installed on both hard
 drives.

 you mean that you used the 2 disk for windows, but wich one was C:


 Last night, I decided to install FreeBSD 4.10 on the
 4.3G hard drive and keep windows on the 80G. Anyway,

the 4.3G disk is the master (i suspect it was C:)

 after I installed FreeBSD, I couldn't gain any access
 to Windows XP on the 80G hard drive. What happened? Do
 I have to reinstall windows? Is there a way to set the

put the 80G disk in other machine with XP and back up what is left.

can you put a listing of the files in D:\ (all files, include hiden ones)
to see if there are the one used in boot proces.

 BIOS so that I can boot from a particular operating
 system?

 Also, a second question-I have tried to access the
 BIOS by typing different combinations of Fs and
 ALT-CTRL-INS and I am unable to access my BIOS. Help!

maybe with DEL, try pressing it in the moment you turn on the pc.




 __
 Do you Yahoo!?
 Yahoo! Mail is new and improved - Check it out!
 http://promotions.yahoo.com/new_mail
 ___
 [EMAIL PROTECTED] mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to
 [EMAIL PROTECTED]

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


Re: MBR problem.

2004-09-22 Thread Martin Paredes
if you have the FAQ installed, check the question 3.9. Windows 95/98 killed my 
boot manager! How do I get it back?

file:/usr/share/doc/faq/install.html#WIN95-DAMAGED-BOOT-MANAGER

or

give a try to the question 9.10. How can I use the NT loader to boot FreeBSD?

file:/usr/share/doc/faq/disks.html#NT-BOOTLOADER

-HTH
maps

On Wednesday 22 September 2004 19:12, Eric Boucher wrote:
 Hi,

 I have this problem. I was using FreeBSD 5.1 along
 with Windows XP for a while. I had to re-install
 Windows for some reasons. Before the re-installation,
 I was using the dual boot system from FreeBSD (the one
 with which you have to choose with the F keys the OS
 you want to boot). But when I re-installed Windows,
 the MBR seems to be reseted so that now, I can only
 boot Windows (even if my FreeBSD is still on my
 machine, because I re-installed Windows on the same
 partition it was). Is there a way, with the FreeBSD CD
 or something, to re-initialise the MBR so that I can
 see both FreeBSD and Windows (or to be like when you
 install a fresh copy of FreeBSD after installing it
 after Windows )?

 Thanks,

 Eric



 __
 Do you Yahoo!?
 Read only the mail you want - Yahoo! Mail SpamGuard.
 http://promotions.yahoo.com/new_mail
 ___
 [EMAIL PROTECTED] mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to
 [EMAIL PROTECTED]

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


Re: sound in a MPU-401

2003-10-30 Thread Martin Paredes
On Monday 27 October 2003 08:45, Lowell Gilbert wrote:
 Martin Paredes [EMAIL PROTECTED] writes:
  how can i enable a multifuncion card Basking Combo from Shark
  Multimedia wich is compatible with a MPU-401.

 What happened when you tried the usual method?

Hi Lowell:

Thanks for answering, I build a new kernel (from GENERIC) adding device pcm 
and all indications in file:/usr/share/doc/handbook/sound-setup.html

dmesg give me the next line

pcm0: AD1816 at port 0x220-0x22f,0x388-0x38b,0x100-0x10f irq 5 drq 1,0 on 
isa0

but the speakers make an agud sound from the boot (I asume it beging when the 
kernel load the pcm0 driver).

This sound dosn't appear in windows.

when I use cdcontrol -f /dev/acd0c play 1 I hear the miusic.

Did I make something wrong?

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


sound in a MPU-401

2003-10-26 Thread Martin Paredes

Hi

how can i enable a multifuncion card Basking Combo from Shark Multimedia wich 
is compatible with a MPU-401.

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


Re: is there a freebsd live cd or boot floppy?

2003-10-02 Thread Martin Paredes
On Thursday 02 October 2003 09:55, Daniel Elliott wrote:
 is there a freebsd live cd or boot floppy? the reason
 i want a bootable freebsd cd/floppy is i dont want to
 reformat my hard drive or anything if you know what i
 mean. thx


The second ISO image is a Live CD

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