Re: Install problems on Dell Vostro

2007-11-09 Thread McCy Ron



Jerahmy Pocott wrote:


Hello,

I'm having difficulties getting 6.2 installed on these new Dell  
'Vostro' systems.


The BIOS is a Phoenix - AwardBIOS and it reports the version as 1.0.3.

With the SATA controller set to IDE mode (default) in the BIOS  
booting FreeBSD
will hang just before entering sysinstall, booting with ACPI disabled  
stops this
but then no disk drives are found! I got around this by setting the  
SATA mode to
RAID in the BIOS (this seems to make the disk appear as SCSI), then  
it doesn't
crash with ACPI enabled (with ACPI disabled no disks are found still)  
and the

disk is found.

The system only has USB inputs (8 of them) and with the USB  
Controller set
to 'High Speed' in the BIOS, the keyboard stops working once  
sysinstall starts
(though it works in the boot menu), however setting it to 'Full/Low  
Speed' makes
it work in sysinstall. I probably don't care about using High Speed  
USB devices
any way, but it would be nice if they could work, but this isn't the  
major issue.


Now finally I can get into sysinstall and partition the disk, but the  
network interface
is not detected. It says it is an 'Intel 82562V-2' (on board), but I  
see no probes about
it on booting FreeBSD. Is this interface supported? Any ideas on  
getting it detected?


I feel the ACPI might be a problem? On booting it is reported as  
'ACPI: Dell FX 09'


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




I was able to get 6.2 to install on a Vostro with stock BIOS settings 
but couldn't get the system to recognize the network card. network.  
Just for reference - Knoppix, Ubuntu, FreesBie live CDs, and a straight 
install of Ubuntu 7.04 didn't work either. There is something strange 
about this computer.Windows XP, ofcourse, works.

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


Wav from sound card line in

2005-03-15 Thread McCy Ron
I'm using FreeBSD 4.10 and would like to make WAV format recordings from 
my sound card's line in channel
with some sort of command line utility. I've been successful in 
finding other sorts of ports and packages to rip CDs
and play Wavs and MP3s but have yet to find anything in the software 
descriptions that address this need.

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


Re: beastie.4th language ?

2005-03-08 Thread McCy Ron
Starting Forth by Leo Brodie is a good book on Forth.
http://www.forth.org/   will offer other tutorialsl.
Jerry McAllister wrote:
Hi,
My question might seem basic. Nevertheless I didn't find the answer on
the net. Excuse me in case I did look seriously enough, which might
afterall, be the case.
The files under the /boot directory on FreeBSD : beastie.4th and the
included ones screen.4th and frames.4th are obviously written in a
certain scripting language.
What is this language ?
Can I get a turorial for this scripting language ?
Or even a reference manual ?
   

I believe the language is Forth.   It is a fairly esotheric language
that is used because it has a very small footprint and is still
quite flexible.   I don't know about tutorials, but I have seen 
an occasional book on it.  I had one and actually installed Forth
on a machine and tried to learn it once, several years ago but the 
rewards/effort ratio got to me and I haven't gone back to it.

jerry
 

Any URL or suggestion would be appreciated.
Thanks in advance.
Michel
   

___
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: samba printing

2005-01-24 Thread McCy Ron
The pass-through script, and the idea to use it, came from FreeBSD 
Unleashed. I didn't know you could get away with not having a filter in 
printcap.
I'll try your idea to see if it works. I'm using the same idea for 
other remote Ethernet printers this computer serves.
Warren Block wrote:

On Sun, 23 Jan 2005, McCy Ron wrote:
I've got a printcap setting that uses a pass-through filter.
Windows provides the drivers that talk to the printer correctly. BSD 
need only pass the bytes through.

###
### printcap setup for Samba printer share..
broxima|hplj4|Samba Laser:\
  :sh:\
  :lp=/dev/lpt0:sd=/var/spool/output/broxima:\
  :lf=/var/log/smbprt-errs:\
  :if=/usr/libexec/pass-prt:\
### pass-prt ..Pass through filter
#!/bin/sh
/bin/cat  exit 0
exit

That looks like it is the same as having no input filter at all, i.e.:
 broxima|hplj4|Samba Laser:\
   :sh:\
   :lp=/dev/lpt0:sd=/var/spool/output/broxima:\
   :lf=/var/log/smbprt-errs:
-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: samba printing

2005-01-23 Thread McCy Ron
I have/had the same problem - couldn't print to the Samba shared printer 
until I found in the
Handbook a couple of line of code that were missing in my smb.conf

[printers]
  comment = Guttenburgs Pride
  printable = yes
  printing = BSD
  printcap name = /etc/printcap
  print command = /usr/bin/lpr -P%p -r %s
  path = /var/spool/samba
  min print space = 2000
  public = yes
I've got a printcap setting that uses a pass-through filter.
Windows provides the drivers that talk to the printer correctly. BSD 
need only pass the bytes through.

###
### printcap setup for Samba printer share..
broxima|hplj4|Samba Laser:\
   :sh:\
   :lp=/dev/lpt0:sd=/var/spool/output/broxima:\
   :lf=/var/log/smbprt-errs:\
   :if=/usr/libexec/pass-prt:\
### pass-prt ..Pass through filter
#!/bin/sh
/bin/cat  exit 0
exit
Mikko Heiskanen wrote:
Hi list,
I'm having hard time getting printing working from samba winXP client to
a printer parallelport connected to my FreeBSD-4.10-release box.
I have a HP Laserjet 1200 -printer, and am using LPD and apsfilter with
postscript driver as suggested by linuxprinting.org.
Everything works real well under BSD, but I am unable to get any output
to printer from the Windows box.
I have gathered different bits and pieces from around the net and
manuals, and have come up with the following:
/etc/printcap:
lp|PS;r=1200x1200;q=medium;c=full;p=a4;m=auto:\
   :lp=/dev/lpt0:\
   :if=/usr/local/etc/apsfilter/basedir/bin/apsfilter:\
   :sd=/var/spool/lpd/lp:\
   :lf=/var/spool/lpd/lp/log:\
   :af=/var/spool/lpd/lp/acct:\
   :mx#0:\
   :sh:
raw|hp|HP LaserJet 1200:\
   :lp=/dev/lpt0:\
   :sd=/var/spool/raw:\
   :lf=/var/spool/raw/log:\
   :af=/var/spool/raw/acct:\
   :mx#0:\
   :sf:\
   :sh:
$ ls -ld /var/spool/lpd/lp
drwxr-xr-x  2 root  daemon  512 Jan 23 19:59 /var/spool/lpd/lp
$ ls -ld /var/spool/raw/  
drwxr-xr-x  2 root  wheel  512 Jan 23 19:57 /var/spool/raw/

/usr/local/etc/smb.conf:
[global]
   hosts allow 10.0.0.
   security = user
   encrypt passwords = yes
   socket options = TCP_NODELAY 
   client code page=850
   wins support = yes
   printing = bsd
   printcap name = /etc/printcap
[lp]
   comment = Laserjet 1200
   path = /var/spool/samba
   printer name = raw
   public = yes
   writeable = no
   printable = yes

$ ls -ld /var/spool/samba/
drwxrwxrwt  2 root  wheel  512 Jan 23 20:03 /var/spool/samba/
In the Windows box, I've added a local printer with the Add new printer
wizard pointing it to lpt1-port. After that, I have opened a command
prompt, and typed net use lpt1: \\10.0.0.1\lp.
I have filesharing also in samba, and that works without problems.
My windows username and password are same as samba username and
password.
However, as said, nothing gets printed. No files are in the
spooldirectories. I do not know how to proceed, and would love some
guidance. Thanks,
Mikko
ps. would hate to have to put it into windows box, as printer supports
PS.
___
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]


4.8 - / out of space

2005-01-03 Thread McCy Ron
System: FreeBSD 4.8 with standard config on PII/400...used mainly as a 
backup server.

df shows...
Filesystem  1K-blocksUsed   Avail Capacity  Mounted on
/dev/ad0s1a128990  119660-988   101%/
/dev/ad0s1f257998   4  237356 0%/tmp
/dev/ad0s1g   7426528 2109420 472298631%/usr
/dev/ad0s1e257998   15888  221472 7%/var
procfs  4   4   0   100%/proc
My root file system is full and I can't account for why this is so. I 
used du on all of the directories on / and could only come up with 
28000K of usage - far short of what it's supposed to hold. The User 
Manual suggests that there my be some files not accounted for by du 
actually residing on the system. What is the best way to reclaim this space?

The computer still runs despite this file system being full so I'm no 
panicking YET.

Thanks

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