Hello user,
This worked for me:
xargs -I% rm % < file
Björn
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Jose Borquez schrieb:
I am attempting to create a mysql database so that I can install Group
Office using
mysqladmin create groupoffice and I keep getting the following errors:
mysqladmin: connect to server at 'localhost' failed
error: 'Can't connect to local MySQL server through socket
'/tmp/
Jose Borquez schrieb:
When attempting to install php5 from ports it attempts to download, but
I get the following errors:
Attempting to fetch from
ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/.
fetch:
ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/php-5.1.1.tar.bz2:
File unavailable
in message <[EMAIL PROTECTED]>,
wrote Chuck Swiger thusly...
>
> Parv wrote:
...
> > Is there a way to find out the amount of traffic (in & out)
> > since a network interface has been up (not since the OS has been
> > up)?
>
> There are lots of solutions to this problem, it kinda depends on
> what
I am attempting to create a mysql database so that I can install Group
Office using
mysqladmin create groupoffice and I keep getting the following errors:
mysqladmin: connect to server at 'localhost' failed
error: 'Can't connect to local MySQL server through socket
'/tmp/mysql.sock' (2)'
Check
Hello Family,
I have been trying to export four mounted iso images under /mnt on my
FreeBSD-5.4 box via nfs and I can export everything under /mnt but the
iso's don't show up on the client, only the directories.
First I mounted all the iso's with the following series of
commands.
mdconfig -a -t
Hi guys
This is Anirban. I have a doubts on the following question.
How to write a shell program that will check whether a server is up or down
(on ping) and log the report to a file.
Hope i will receive my answer soon.
With regards
Anirban.
___
freebs
YairNet LinuxServ wrote:
> Hello
> we Compay WebHosting (Www.linuxserv.co.il)
> You need to mirror freebsd from israel ,if yes give me help so mirror
> good day.
It's likely that this document will tell you all about mirroring FreeBSD:
http://www.freebsd.org/doc/en_US.ISO8859-1/articles/hubs/art
Michael Dexter wrote:
[ ... ]
> However, I am not clear if:
>
> 1. It is permitted to use "M" and "G" notation (kern.maxsiz="1G")? -
> some say yes, some say no and I would prefer not risk the system not
> booting.
Using "1G" or some number followed by "M" is working for me in 5.x and 6.0.
> 2.
Parv wrote:
> I am interested to know the total amount of data passed through a
> network interface (em0 in my case) since the interface went up. So
> far, i have seen that pload, nload, & "netstat -b -I" report the
> amount since the operating system has been up, not since the new
> ethernet conn
>-Original Message-
>From: [EMAIL PROTECTED]
>[mailto:[EMAIL PROTECTED] Behalf Of Drew Tomlinson
>Sent: Tuesday, December 13, 2005 6:48 AM
>To: Ted Mittelstaedt
>Cc: Michael Vince; [EMAIL PROTECTED]; freebsd-questions@freebsd.org;
>Kris Kennaway
>Subject: Re: Polling For 100 mbps Connecti
>-Original Message-
>From: [EMAIL PROTECTED]
>[mailto:[EMAIL PROTECTED] Behalf Of Gayn Winters
>Sent: Tuesday, December 13, 2005 7:49 AM
>To: 'Ted Mittelstaedt'; 'Winelfred G. Pasamba'; 'Yance Kowara'
>Cc: freebsd-questions@freebsd.org
>Subject: RE: FreeBSD router two DSL connections
>
>
Turn on SNMP on your router plugged into the adsl modem and use a
tool like mrtg to graph the circuit utilization.
Also, access your adsl modem's error counters and find out what your
signal to noise ratio is, what your received decibel level is, if your
taking
errors, and such. Some of the cons
user wrote:
I always do loops in /bin/sh like this:
for f in `cat file` ; do rm -rf $f ; done
Easy. I like doing it like this.
The problem is, when I am dealing with an input list that has multiple
words per line, this chops it up and treats every word as a new line...
For instance, lets say
When attempting to install php5 from ports it attempts to download, but
I get the following errors:
Attempting to fetch from ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/.
fetch:
ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/php-5.1.1.tar.bz2:
File unavailable (e.g., file not found, n
On Tue, Dec 13, 2005 at 08:50:39PM -0700, Bob Lee wrote:
> Quoting Robert Fitzpatrick <[EMAIL PROTECTED]>:
> > Here's my top procs:
> >
> > last pid: 2079; load averages: 8.31, 8.91, 8.43up 0
> > +00:35:15 20:57:53
> > 149 processes: 13 running, 136 sleeping
>
> Robert,
> FWIW, I di
On Tue, 13 Dec 2005 23:44:42 -0500 (EST), user wrote
> I always do loops in /bin/sh like this:
>
> for f in `cat file` ; do rm -rf $f ; done
Hi,
try instead:
cat file | while read f ; do rm -f "$f" ; done
In your command `file' is presented as
10,000 Maniacs MTV Unplugged - 01 - These Are Days
I always do loops in /bin/sh like this:
for f in `cat file` ; do rm -rf $f ; done
Easy. I like doing it like this.
The problem is, when I am dealing with an input list that has multiple
words per line, this chops it up and treats every word as a new line...
For instance, lets say I have a fil
Jose Borquez wrote:
> SECURITY REPORT:
> This port has installed the following binaries which execute with
> increased privileges.
> /usr/local/libexec/mlock
>
> What can I do to minimize this security risk? Do I create an mlock user?
In fact, every port that installs a suid-binary wil
Quoting Robert Fitzpatrick <[EMAIL PROTECTED]>:
> Here's my top procs:
>
> last pid: 2079; load averages: 8.31, 8.91, 8.43up 0
> +00:35:15 20:57:53
> 149 processes: 13 running, 136 sleeping
Robert,
FWIW, I did some research a short time ago on utilization and other
aspects of watchi
Just recently installed IMAP-UW through ports and once the install
finished I got the following security message:
SECURITY REPORT:
This port has installed the following binaries which execute with
increased privileges.
/usr/local/libexec/mlock
What can I do to minimize this security r
On Wed, Dec 14, 2005 at 02:12:38PM +1100, caleb wrote:
> Would IPSEC be an option for securing my login
> details or kerberos?
Nope. Unless the ISP's mail server supports some form of encryption,
there's nothing you can do.
On the other hand, your desktop machine is probably only about two
hops
ah... that's the ticket!
thanks!
jeff.
- Original Message -
From: "Tino Boss" <[EMAIL PROTECTED]>
To:
Cc: "Jeff D. Hamann" <[EMAIL PROTECTED]>
Sent: Tuesday, December 13, 2005 10:49 AM
Subject: Re: can't mount msdos fs on freebsd6?
Jeff D. Hamann wrote:
mothra# mount -t msdos /
On Wed, 14 Dec 2005, RW wrote:
If the server supports neither ssl, nor any form secure authentication, there
nothing you can do to protect your password.
Hi RW,
Thanks for your reply. Would IPSEC be an option for securing my login
details or kerberos?
caleb
--
There is no spoon
_
Got it working. forgot to add security.none after *.notice;
Thanks guys...
--
Elmer Rivera, http://www.vizcayano.com, http://youand.i.ph
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscr
in message <[EMAIL PROTECTED]>,
wrote Rob Lytle thusly...
>
>
>
> > > Here's my setup:
...
> > > in /etc/syslog.conf
> >
> > yes, there is no other security.* facility, actually i got it
> > working
Please keep the attribution & attribute the respective authors.
> I have the problem that ipmo
On Tue, Dec 13, 2005 at 09:00:13PM -0500, Robert Fitzpatrick wrote:
> On Tue, 2005-12-13 at 14:54 -0500, Kris Kennaway wrote:
> > On Tue, Dec 13, 2005 at 02:12:57PM -0500, Robert Fitzpatrick wrote:
> > > I guess this means my new server is only using one of my CPUs?
> > >
> > > esmtp# grep CPU /va
On Wednesday 14 December 2005 01:01, caleb wrote:
> Hi everyone,
> I am having some problems setting up pine && .pinerc using
> FreeBSD 6.0 - STABLE. My ISP uses POP and I am using thier SMTP for
> outgoing. I spoke to the helpdesk and the POP server does not support ssl.
>
> I h
On Tue, 2005-12-13 at 14:54 -0500, Kris Kennaway wrote:
> On Tue, Dec 13, 2005 at 02:12:57PM -0500, Robert Fitzpatrick wrote:
> > I guess this means my new server is only using one of my CPUs?
> >
> > esmtp# grep CPU /var/log/dmesg.today
> > CPU: Intel(R) Xeon(TM) CPU 2.40GHz (2399.33-MHz 686-clas
After realizing how long I made this little explanation, I decided it might
be helpful to someone if I made it available on the freebsd-questions
mailing list. List: take the following for what it's worth.
On Tuesday 13 December 2005 07:00 pm, ntkonn wrote:
> Crap amighty, I just upgraded FreeB
Hi everyone,
I am having some problems setting up pine && .pinerc using
FreeBSD 6.0 - STABLE. My ISP uses POP and I am using thier SMTP for
outgoing. I spoke to the helpdesk and the POP server does not support ssl.
Pine was compiled and installed with support for POP3
here are some
I think you need to put that in /etc/mail/access as
10 RELAY
and then do a
#make maps
Check the Makefile in /etc/mail/ for more on the make
option
Read /usr/share/sendmail/cf/README for more info.
thanks.
so what does local-host-names control?
exactly as filename states? what domain does
to enable anybody in IPv4 10.0.0.0/8 to relay through this server
10.
seems not to work.
I think--but don't *quote* me:) -- that the host-names
file does eactly what ^Cwhostname does in sendmail.cf.
So if your host were named foo, you would put ^foo in
local-ho
I'm for this one:
The best way to accellerate a computer running Windows is at 9.81 m/s^2
by Roland
It's wonderful!
--
Pietro Cerutti
<[EMAIL PROTECTED]>
Beansidhe - SwiSS Death / Thrash Metal
Windows: "Where do you want to go today?"
Linux: "Where do you want to go tomorrow?"
FreeBSD: "Are
> > Here's my setup:
> >
> > /etc/rc.conf
> > ipmon_enable="YES"
> > ipmon_flags="-Dns"
> >
> > /etc/syslog.conf
> > security.* /var/log/ipfilter.log
> >
> >
> > Make sure you don't have any other security.* facility specified in
> > /etc/syslog.conf
>
> yes, there is no other security.
Hello, I'm trying to RTFM but the M does not appear to exist.
I am dealing with processes over 512MB in size on 6.0 on x86 and am
using these loader.conf tunables as suggested by MySQL and other
documentation:
kern.maxdsiz="1073741824" # 1GB
kern.dfldsiz="1073741824" # 1GB
kern.maxssiz="1342
#uname -a
FreeBSD hcggw1.hcg.com.ph 5.4-RELEASE-p8 FreeBSD 5.4-RELEASE-p8 #0:
Sat Dec 10 09:49:16 PHT 2005
[EMAIL PROTECTED]:/usr/obj/usr/src/sys/HCGGW1 i386
> > setup /var/log/ipfilter.log as my log file.
>
> How/where did you set this up?
# touch /var/log/ipfilter.log
> > modified syslog
I am interested to know the total amount of data passed through a
network interface (em0 in my case) since the interface went up. So
far, i have seen that pload, nload, & "netstat -b -I" report the
amount since the operating system has been up, not since the new
ethernet connection has been (re)es
Jose Borquez wrote:
> Nathan Vidican wrote:
>
>> Jose Borquez wrote:
>>
>>> When installing the same software using either the ports or a package
>>> do they both install in the same locations? For Example installing
>>> Apache from ports on one server and installing Apache from packages
>>> on a
Nathan Vidican wrote:
Jose Borquez wrote:
When installing the same software using either the ports or a package
do they both install in the same locations? For Example installing
Apache from ports on one server and installing Apache from packages
on another server would still use the same l
Gayn Winters wrote:
>>-Original Message-
>>From: [EMAIL PROTECTED]
>>[mailto:[EMAIL PROTECTED] On Behalf Of Kiffin Gish
>>Sent: Tuesday, December 13, 2005 1:16 AM
>>To: freebsd-questions@freebsd.org
>>Subject: Lousy network performance ...
>>
>>
>>I am having problems with a slow Internet
in message <[EMAIL PROTECTED]>, wrote Roland
Smith thusly...
>
>
> Unix _is_ user-friendly. It's just a little picky about who it's
> friends are.
That is due to Tollef Fog Heen ...
http://groups.google.com/group/linux.debian.maint.boot/message/a5ad57a7694c5549?dmode=source
- Parv
--
_
On Tue, 13 Dec 2005 22:56:47 +0100
Roland Smith <[EMAIL PROTECTED]> wrote:
> On Tue, Dec 13, 2005 at 09:35:18PM +, Uncle Deejy-Pooh wrote:
> > We've another contender for the 'Signature-of-the-Forum' award.
> > This one spotted from Jayesh Jayan:
> >"The box said "Requires Windows 95, NT,
Hi,
Following http://www.freebsd.org/releases/5.3R/migration-guide.html and
I ran into a problem. When I boot to single user mode It sticks and can't get
farther. I'm typing this by hand
atapci0: port
0x376,0x170-0x177,0x3f6,0x1f0-0x1f7 at device 5.1 on pci0
atapci0: Lazy allocatio
Jose Borquez wrote:
I need to install and configure Apache, PHP, IMAP, and MySQL because
I would like to install Group Office which is a groupware application
sweet.
I need to know if there is a specific order that I need to install the
applications listed above. Any help on this would be gre
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
Josh Endries wrote:
> I'm having the same problem but haven't figured it out, maybe it's
> just a bug in sysinstall? If I don't use diskLabelCommit and wait
> until installCommit later it continues, but that doesn't make sense
> to me; there's no more
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
So anyone have a resolution to this problem asked last year:
http://lists.freebsd.org/pipermail/freebsd-questions/2004-March/040502.html
http://lists.freebsd.org/pipermail/freebsd-questions/2004-March/042082.html
I'm having the same problem but haven
On Tue, Dec 13, 2005 at 09:35:18PM +, Uncle Deejy-Pooh wrote:
> We've another contender for the 'Signature-of-the-Forum' award.
> This one spotted from Jayesh Jayan:
>"The box said "Requires Windows 95, NT, or better", so I installed
> Linux."
> Although I'm SURE it should read ". Free
Jose Borquez wrote:
When installing the same software using either the ports or a package do
they both install in the same locations? For Example installing Apache
from ports on one server and installing Apache from packages on another
server would still use the same locations for both?
Than
We've another contender for the 'Signature-of-the-Forum' award.
This one spotted from Jayesh Jayan:
"The box said "Requires Windows 95, NT, or better", so I installed
Linux."
Although I'm SURE it should read ". FreeBSD" !
But, still in No1 spot:
Windows: "Where do you want to go today?"
On Tue, 13 Dec 2005, Darren Henderson wrote:
synopsis: freebsd NFS server, HP-UX NFS client. Client succeeds if it uses
automount to mount the volumes but fails if a manual mount is used despite
options.
question: anyone have experience in a similar enviroment that can point me
toward a so
On Tue, 13 Dec 2005 13:17:01 -0800
Jose Borquez <[EMAIL PROTECTED]> wrote:
> When installing the same software using either the ports or a
> package do they both install in the same locations? For Example
> installing Apache from ports on one server and installing Apache from
> packages on anoth
On Tue, Dec 13, 2005 at 01:17:01PM -0800, Jose Borquez wrote:
> When installing the same software using either the ports or a package
> do they both install in the same locations? For Example installing
> Apache from ports on one server and installing Apache from packages on
> another server wo
I need to install and configure Apache, PHP, IMAP, and MySQL because I
would like to install Group Office which is a groupware application
sweet. I need to know if there is a specific order that I need to
install the applications listed above. Any help on this would be
greatly appreciated.
When installing the same software using either the ports or a package
do they both install in the same locations? For Example installing
Apache from ports on one server and installing Apache from packages on
another server would still use the same locations for both?
Thank you in advance,
Jos
On Dec 13, 2005, at 3:03 PM, Wojciech Puchar wrote:
how line should look at this file
to enable anybody in IPv4 10.0.0.0/8 to relay through this server
10.
seems not to work.
As someone else has said, local-host-names controls class W, the list
of hosts for which mail will be delivered loc
I have installed FreeBSD 6.0 on my Thinkpad 380XD, but I cannot get
networking to work, and I believe it is because there is a conflict
with my cardbus initializing.
The card is a Xircom RBEM58G-100, and is listed as supported under the
dc driver. Here are the relavent messages from /var/log/messa
On 12/13/05, Robert Fitzpatrick <[EMAIL PROTECTED]> wrote:
> I guess this means my new server is only using one of my CPUs?
>
> esmtp# grep CPU /var/log/dmesg.today
> CPU: Intel(R) Xeon(TM) CPU 2.40GHz (2399.33-MHz 686-class CPU)
> Hyperthreading: 2 logical CPUs
> cpu0: on acpi0
>
> Can someone
--- Wojciech Puchar <[EMAIL PROTECTED]> wrote:
> how line should look at this file
>
> to enable anybody in IPv4 10.0.0.0/8 to relay
> through this server
>
> 10.
>
> seems not to work.
>
> thanks
I think you need to put that in /etc/mail/access as
10 RELAY
and then do a
#make maps
C
On 2005-12-13 12:15, Gary Kline <[EMAIL PROTECTED]> wrote:
>On Tue, Dec 13, 2005 at 09:03:11PM +0100, Wojciech Puchar wrote:
>> how line should look at this file
>>
>> to enable anybody in IPv4 10.0.0.0/8 to relay through this server
>>
>> 10.
>>
>> seems not to work.
>
> I think--but don't *quote*
On Tue, Dec 13, 2005 at 09:03:11PM +0100, Wojciech Puchar wrote:
> how line should look at this file
>
> to enable anybody in IPv4 10.0.0.0/8 to relay through this server
>
> 10.
>
> seems not to work.
I think--but don't *quote* me:) -- that the host-names
file does eactly what
how line should look at this file
to enable anybody in IPv4 10.0.0.0/8 to relay through this server
10.
seems not to work.
thanks
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscrib
On Tue, Dec 13, 2005 at 02:12:57PM -0500, Robert Fitzpatrick wrote:
> I guess this means my new server is only using one of my CPUs?
>
> esmtp# grep CPU /var/log/dmesg.today
> CPU: Intel(R) Xeon(TM) CPU 2.40GHz (2399.33-MHz 686-class CPU)
> Hyperthreading: 2 logical CPUs
> cpu0: on acpi0
>
> C
On Dec 13, 2005, at 2:12 PM, Robert Fitzpatrick wrote:
I guess this means my new server is only using one of my CPUs?
esmtp# grep CPU /var/log/dmesg.today
CPU: Intel(R) Xeon(TM) CPU 2.40GHz (2399.33-MHz 686-class CPU)
Hyperthreading: 2 logical CPUs
cpu0: on acpi0
Can someone point me to the
Hi Wash,
Thank you for your mail.
I tried the option and it worked fine.
On 12/13/05, Odhiambo Washington <[EMAIL PROTECTED]> wrote:
>
> * On 13/12/05 04:15 +0530, Jayesh Jayan wrote:
> > Hi,
> >
> > I have a server which runs Apache/1.3.33 (Unix) and exim 4.53-0 on a
> FreeBSD
> > 5.4.
> >
> >
At 14:12 2005-12-13, Robert Fitzpatrick wrote:
I guess this means my new server is only using one of my CPUs?
esmtp# grep CPU /var/log/dmesg.today
CPU: Intel(R) Xeon(TM) CPU 2.40GHz (2399.33-MHz 686-class CPU)
Hyperthreading: 2 logical CPUs
cpu0: on acpi0
Can someone point me to the best doc
Robert Fitzpatrick wrote:
I guess this means my new server is only using one of my CPUs?
esmtp# grep CPU /var/log/dmesg.today
CPU: Intel(R) Xeon(TM) CPU 2.40GHz (2399.33-MHz 686-class CPU)
Hyperthreading: 2 logical CPUs
cpu0: on acpi0
Can someone point me to the best doc for enabling use of
> Can someone point me to the best doc for enabling use of both
> CPUs on the FreeBSD 5.4 server? I assume the kernel needs
> built with options.
>
> --
> Robert
This is what you need in your Kernel:
options SMP # ENABLE MULTI PROCESSOR
device acpi
I guess this means my new server is only using one of my CPUs?
esmtp# grep CPU /var/log/dmesg.today
CPU: Intel(R) Xeon(TM) CPU 2.40GHz (2399.33-MHz 686-class CPU)
Hyperthreading: 2 logical CPUs
cpu0: on acpi0
Can someone point me to the best doc for enabling use of both CPUs on
the FreeBSD 5.4
--- Cezar Fistik <[EMAIL PROTECTED]> wrote:
> Hello,
>
> Just a remark. I'm using an "Intel PRO/1000 MT
> Dual Port Gigabit Copper
> CAT5 Server PCI express Adapter" in a box
> serving as router. Pumping 150Mbps
> through it with 99% idle CPU and 1% interrupts,
> polling enabled. It's
> a litle
--- Drew Tomlinson <[EMAIL PROTECTED]>
wrote:
> Ted Mittelstaedt wrote, On 12/13/2005 12:44 AM:
>
> >
> >
> >>-Original Message-
> >>From: Drew Tomlinson
> [mailto:[EMAIL PROTECTED]
> >>Sent: Monday, December 12, 2005 12:30 PM
> >>To: Ted Mittelstaedt
> >>Cc: Michael Vince; [EMAIL PRO
synopsis: freebsd NFS server, HP-UX NFS client. Client succeeds if it uses
automount to mount the volumes but fails if a manual mount is used despite
options.
question: anyone have experience in a similar enviroment that can point me
toward a solution?
We use HP's Data Protector as an ent
Jeff D. Hamann wrote:
mothra# mount -t msdos /dev/ad0s2 /data
mount_msdosfs: /dev/ad0s2: Invalid argument
I remember having had a similar problem and it was just a that it was an
extended partition and somehow it was not displayed with the correct
number in some utility. If that's your case
--- Ted Mittelstaedt <[EMAIL PROTECTED]>
wrote:
>
>
> >-Original Message-
> >From: Danial Thom
> [mailto:[EMAIL PROTECTED]
> >Sent: Monday, December 12, 2005 1:35 PM
> >To: Drew Tomlinson; Ted Mittelstaedt
> >Cc: Michael Vince; [EMAIL PROTECTED];
> freebsd-questions@freebsd.org;
> >Kri
Hello,
Just a remark. I'm using an "Intel PRO/1000 MT Dual Port Gigabit Copper
CAT5 Server PCI express Adapter" in a box serving as router. Pumping 150Mbps
through it with 99% idle CPU and 1% interrupts, polling enabled. It's
a litle bit expensive, but it does its job perfectly.
--
Best regards
On 12/12/05, psiinformatique <[EMAIL PROTECTED]> wrote:
> #I'm looking for school of freebsd in montreal and i dont find any. Im
> #not realy good in BSD, i start to use last year. I use as my main os
> #on my laptop to become a normal user, but more i get into it,
There is Marketbridge Technolog
P.U.Kruppa wrote:
On Tue, 13 Dec 2005, P.U.Kruppa wrote:
On Tue, 13 Dec 2005, Mikael Backman wrote:
Hi,
Is there anybody who knows when/if this port will be fixed?
Is there any similar app in the ports tree?
/Mikael
I think it isn't completely broken. In its Makefile you can comment
the l
Jeff D. Hamann wrote:
I have a dual boot machine which I can read the primary ntfs
partition (but not the fat32 partition -- very unhappy about that).
Generically, there's no problem reading FAT32 partitions and it's the
only writeable-and-shareable-with-windows filesystem type, so maybe
y
Kevin Kinsey wrote:
Seems I was a tad off in my earlier estimate of "within the last 60
days"...
but Googling for " 'boot like linux' freebsd" produces the thread I was
thinking of (the initial post of which is here):
http://lists.freebsd.org/pipermail/freebsd-questions/2005-March/079428.htm
On Tue, 2005-12-13 at 09:08 -0800, Jeff D. Hamann wrote:
> The results I get back from mount are:
>
> mothra# mount -t msdos /dev/ad0s2 /data
> mount_msdosfs: /dev/ad0s2: Invalid argument
> Help?
#mount -t msdosfs /dev/ad0s2 /data
or
#mount_msdosfs /dev/ad0s2 /data
--
GnuPG key : 0x2A573565
Jeff D. Hamann wrote:
Strange, but I can mount an ntfs filesystem (dual boot machine) but
not the fat32 partition on a new freebsd 6.0 installation. The drive
contains three paritions:
/dev/ad0s1 -- 30GB NTFS (winxp) mounted on /winxp
/dev/ad0s2 -- 30GB FAT32 (data to be accessed by both winx
Alex Zbyslaw wrote:
Kevin Kinsey wrote:
A word of probable caution (though I stand ready to be corrected):
FreeBSD isn't like Linux in the fact that it expects /boot to be
in / (the 'a' slice of whatever disk the bootmgr has been instructed
to use)... so a seperate /boot will likely get
On 2005-12-13 09:08, "Jeff D. Hamann" <[EMAIL PROTECTED]> wrote:
> Strange, but I can mount an ntfs filesystem (dual boot machine) but not the
> fat32 partition on a new freebsd 6.0 installation. The drive contains three
> paritions:
>
> /dev/ad0s1 -- 30GB NTFS (winxp) mounted on /winxp
> /dev/ad0s
Strange, but I can mount an ntfs filesystem (dual boot machine) but not the
fat32 partition on a new freebsd 6.0 installation. The drive contains three
paritions:
/dev/ad0s1 -- 30GB NTFS (winxp) mounted on /winxp
/dev/ad0s2 -- 30GB FAT32 (data to be accessed by both winxp and freebsd 6.0)
moun
On Tue, December 13, 2005 11:44 am, Mark Bucciarelli wrote:
> On Sun, Dec 11, 2005 at 10:17:16PM -0500, Louis LeBlanc wrote:
>
>> On 12/11/05 09:44 PM, Louis LeBlanc sat at the `puter and typed: These
>> passwords do match, but the debug log shows a rejection.
>
> I use MySql for users and recently
I'm in the processing of putting together my new FreeBSD 6.0 (downloaded the
iso image yesterday) laptop which has a Intel Pro/Wireless 2915ABG wireless
card (as well as a firewire ethernet something?). The machine doesn't have a
floppy drive and I haven't been able to build the drivers using th
On Tue, 13 Dec 2005, P.U.Kruppa wrote:
On Tue, 13 Dec 2005, Mikael Backman wrote:
Hi,
Is there anybody who knows when/if this port will be fixed?
Is there any similar app in the ports tree?
/Mikael
I think it isn't completely broken. In its Makefile you can comment the line
# WITH_CMUCL= ye
> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] On Behalf Of Kiffin Gish
> Sent: Tuesday, December 13, 2005 1:16 AM
> To: freebsd-questions@freebsd.org
> Subject: Lousy network performance ...
>
>
> I am having problems with a slow Internet DSL-connection,
> e
On Sun, Dec 11, 2005 at 10:17:16PM -0500, Louis LeBlanc wrote:
> On 12/11/05 09:44 PM, Louis LeBlanc sat at the `puter and typed: These
> passwords do match, but the debug log shows a rejection.
I use MySql for users and recently noted that if maildir, uid and/or gid
is not set properly the auth
Kevin Kinsey wrote:
OK. But then what would be ideal slice size for /, /var, /usr, /boot?
A word of probable caution (though I stand ready to be corrected):
FreeBSD isn't like Linux in the fact that it expects /boot to be
in / (the 'a' slice of whatever disk the bootmgr has been instru
On Tue, 2005-12-13 at 09:54 -0600, Dan Ross wrote:
> I am trying to build a new kernel with smp. I started with make clean
> and got no errors.
> I then type make buildworld from /usr/src directory
> suggestions?
1. You do not need to recompile world if you only want to build a new
kernel with
On Tue, 13 Dec 2005, Mikael Backman wrote:
Hi,
Is there anybody who knows when/if this port will be fixed?
Is there any similar app in the ports tree?
/Mikael
I think it isn't completely broken. In its Makefile you can
comment the line
# WITH_CMUCL= yes
and uncomment
WITH_GCL= yes
Thi
On 2005-12-13 16:40, Pietro Cerutti <[EMAIL PROTECTED]> wrote:
>On 12/13/05, RW <[EMAIL PROTECTED]> wrote:
>>On Tuesday 13 December 2005 10:36, Giorgos Keramidas wrote:
OK. But then what would be ideal slice size for /, /var, /usr, /boot?
>>
>> There's no need for a boot partition; that's a Li
Sasa Stupar wrote:
--On 12. december 2005 19:29 -0500 Jerry McAllister
<[EMAIL PROTECTED]> wrote:
On Mon, 12 Dec 2005 12:40:40 -0600
Kevin Kinsey <[EMAIL PROTECTED]> wrote:
> Sasa Stupar wrote:
>
> > You can also do the same as I did. I have just configured one slice
> > named / which
>
Hi Eric,
I live in Montréal and I now run around 100 FreeBSD servers. They
provide all sorts of services from DNS, SMTP, WWW, Proxy, FTP,
Databases, Firewalls, you name it.
If you can wait a month or two, I can provide you with basic FreeBSD
training and then move on to more specialized setups as
On 12/13/05, Robert Huff <[EMAIL PROTECTED]> wrote:
>
> Pietro Cerutti writes:
>
> > > There's no need for a boot partition; that's a Linux practice.
> >
> > You're right, but I don't feel it as a bad practice... mounting it
> > read-only could prevent from many problems, don't you think?
>
>
Pietro Cerutti writes:
> > There's no need for a boot partition; that's a Linux practice.
>
> You're right, but I don't feel it as a bad practice... mounting it
> read-only could prevent from many problems, don't you think?
Could, yes. In practice ... never had it happen to me. I'
I am trying to build a new kernel with smp. I started with make clean
and got no errors.
I then type make buildworld from /usr/src directory
it runs for about an hour then I get:
gzip -cn /usr/src/sbin/ip6fw/ip6fw.8 > ip6fw.8.gz
===> sbin/ipf
make: don't know how to make bsd.README. Stop
*** Err
> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] On Behalf Of Ted
> Mittelstaedt
>
> >-Original Message-
> >From: [EMAIL PROTECTED]
> >[mailto:[EMAIL PROTECTED] Behalf Of Winelfred G.
> >Pasamba
> >Sent: Monday, December 12, 2005 8:26 AM
> >To: Yance Kow
On 12/13/05, RW <[EMAIL PROTECTED]> wrote:
> On Tuesday 13 December 2005 10:36, Giorgos Keramidas wrote:
>
> > > OK. But then what would be ideal slice size for /, /var, /usr, /boot?
>
> There's no need for a boot partition; that's a Linux practice.
You're right, but I don't feel it as a bad pract
1 - 100 of 136 matches
Mail list logo