On Sun, 16 Dec 2001, Anthony Schneider wrote:
>Well, the reason I brought up $USER inheritance is that on linux, $USER
>is root after an su to root, whereas on FreeBSD, the $USER is the same
>as before the su.
[Line wrap at 72, please]
Excerpt from su(1):
---
By default, the environment is unmo
Linux:
anthony:/home/anthony:9% uname -a
Linux lappy.slc.edu 2.2.17-21mdk #1 Thu Oct 5 13:16:08 CEST 2000 i686 unknown
anthony:/home/anthony:10% su
Password:
[root@lappy anthony]# echo $USER
root
[root@lappy anthony]# exit
anthony:/home/anthony:11% su -l
Password:
[root@lappy /root]# echo $USER
Anthony Schneider wrote:
> Linux:
>
> anthony:/home/anthony:9% uname -a
> Linux lappy.slc.edu 2.2.17-21mdk #1 Thu Oct 5 13:16:08 CEST 2000 i686 unknown
> anthony:/home/anthony:10% su
> Password:
> [root@lappy anthony]# echo $USER
> root
> [root@lappy anthony]# exit
> anthony:/home/anthony:11%
Peter Jeremy wrote:
> I'm specifically looking at 2.11BSD - which is architecturally UFS but
> various sizes and constants are different (eg fewer direct/indirect
> blocks in the inode). In some ways this simplifies things (it may be
> possible to re-use much or all of the FreeBSD UFS code) but i
Anthony Schneider wrote:
>
> Well, the reason I brought up $USER inheritance is that on linux, $USER is root
> after an su to root, whereas on FreeBSD, the $USER is the same as before the su.
> Not really thinking, I thought that perhaps that refleted the inherited $UID,
> which I was wrong about
Originally posted to questions- with no answer,
maybe someone here can help?
cheers
Andy
-Original Message-
Sent: 12 December 2001 15:38
To: [EMAIL PROTECTED]
Subject: Q regarding booting from Mylex acceleraid170
Hi All
I have a Dell Poweredge 2550 with on board SCSI 7899 controller.
Can anyone give a brief overview (or point to one) of what a FS in FreeBSD
needs to do to interact with the rest of the OS? The general picture I've
got is of some code which interacts with the VFS layer above it and the
block I/O layer down below it. It is this correct? And what are the APIs
Tony wrote:
> 1. "JFS only operates on meta-data ... It does not log file data or
> recover this data to a consistent state." [JFS overview]
Yes.
> "The logging style introduces a synchronous write to the log disk
> into each inode or vfs operation that modifies meta-data." [JFS
>
Zhihui Zhang wrote:
> What are the backing objects of the stack and heap area of a process's
> address space? When are they created? I saw the code vm_map_insert(), but
> the object argument given is NULL.
Anonymous pages: swap.
-- Terry
To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsu
On Sun, Dec 16, 2001 at 01:57:44PM +1030, Daniel O'Connor wrote:
>
> On 15-Dec-2001 Kris Kennaway wrote:
> > Or just ln -sf /usr/bin/openssl /usr/bin/sha1
> >
> > OpenSSL already checks the name it's invoked under and behaves
> > accordingly.
>
> Does it grok the options for md5? :)
> -s wo
We have a newserver running here, which freezes
every 2-3 days. Break into db is still possible.
It is a STABLE 4.4 machine, with new kernel.
NEWS # mount
/dev/da0s1a on / (ufs, local, soft-updates)
/dev/da0s1e on /var (ufs, local, soft-updates)
/dev/da1s1e on /news (ufs, local, soft-updates)
/
Title: Take Control Of Your Conference Calls
Long Distance
ConferencingOnly 18 Cents Per
Minute
Connects Up To 100 Participants!
No setup fees
No contracts or monthly fees
Call anytime, from anywhere, to anywhere
International Dial In 18 cen
Lamont Granquist wrote:
>
> Can anyone give a brief overview (or point to one) of what a FS in FreeBSD
> needs to do to interact with the rest of the OS? The general picture I've
> got is of some code which interacts with the VFS layer above it and the
> block I/O layer down below it. It is thi
Hi, All.
A couple of friends are testing my DELACK backport, and their
initial run (pre-patch) of 'tbench' is, well, outrageous. My numbers
weren't anywhere near this bad.
Their boxes are functional, "production" boxes, one is 4.3R and the
other is 4.4S. Their hardware is [relatively] current; c
On 17-Dec-01 Martin Blapp wrote:
>
> We have a newserver running here, which freezes
> every 2-3 days. Break into db is still possible.
>
> It is a STABLE 4.4 machine, with new kernel.
>
> NEWS # mount
> /dev/da0s1a on / (ufs, local, soft-updates)
> /dev/da0s1e on /var (ufs, local, soft-update
I'm trying to get the license issue clarified, then it can go in
/usr/src/tools/regression.
- Jordan
> Jordan Hubbard <[EMAIL PROTECTED]> writes:
>
> > Guy Harris of NetApp sent me a whole mess-o-changes to it and when I
> > went to forward them to you, I found that I must have been in
> > dele
> > This doesn't sound any more robust than FreeBSD's current
> > Softupdates. JFS wins though as fsck is faster on a reboot ...
Please correct me if I'm wrong. But I heard that Kirk (or perhaps someone else)
is continuing softupdates development with the intent of removing any
dependenc
> I have a Dell Poweredge 2550 with on board SCSI 7899 controller.
> That controller is not actually fitted to any drives, only the
> tape unit (DDS3).
>
> I actually have a Mylex Acceleraid170 board attached to the four
> Scsi drives creating a single drive volume. All seems to work fine
> but t
:
:We have a newserver running here, which freezes
:every 2-3 days. Break into db is still possible.
:
:It is a STABLE 4.4 machine, with new kernel.
Yahoo noticed a deadlock in the vnode recycling code. If your machine
below is hitting the kern.maxvnodes limit it could be the same thing
If it's just for the exercise of porting a filesystem,
there are at least three filesystems available under a BSD
license:
1) Minix: all the OS was released under a BSD like license,
not to mention that it is perfectly documented.
2,3) NetBSD's ext2fs and LFS have surely been updated for
their UB
Hi Matt,
> Yahoo noticed a deadlock in the vnode recycling code. If your machine
> below is hitting the kern.maxvnodes limit it could be the same thing.
> The way to tell is to generate a kernel core along with the debug
> version of the kernel binary (/usr/src/sys/compile//kern
If it is a vnode deadlock you have to find which process or
processes it is deadlocking against.
Do a ps -axl -M vmcore.X -N kernel.X on the kernel core,
pick out all the processes blocked on inode or whatever,
then from gdb go to each process (proc N) and do a backtrace
At 12:24 PM -0800 12/16/01, Matthew Dillon wrote:
>program runs fine in an overnight test. We still have a known issue
>with out-of-order operations from nfsiod's that apparently may come
>up after a week or so of testing. I asked Jordan to try to track down
>the NeXT guy who fi
> Do a ps -axl -M vmcore.X -N kernel.X on the kernel core,
> pick out all the processes blocked on inode or whatever,
inode ps -axl -M vmcore.0 -N /usr/src/sys/compile/NEWS/kernel.debug |
grep inode
8 293 290 0 -14 0 36440 inode D#C5- 0:49.73 (perl)
0 2
:> then from gdb go to each process (proc N) and do a backtrace
:> (back).
:
:(kgdb) defproc 288
: 288 d78cd0c0 d788e0008 1 288 05 3 innd inode
:c2c0c200
: frame 0 at 0xd7890d8c: ebp d7890db8, eip 0xc017a529 : mov
:0x141(%ebx),%al
: frame 1 at 0xd7890db8:
Hi Matt,
> Are you sure this is the correct kernel binary? zinitna() doesn't
> call vget() and vm_fault doesn't call zinitna.
Hrm, sorry, I just have noted that the debug kernel produces slightly
different output that the normal kernel :-(
Why this ? I didn't do a cvs update since I b
> I wrote the driver against -CURRENT, but browsing through
> on a 4.4-STABLE box reveals that specfs is in use there, too. I haven't
> been trying my driver out against -STABLE yet, but -CURRENT works just fine.
>
> typedef struct specinfo *dev_t;
> ^ this is what I have in 4.4-STABLE.
Oops..
On Sun, 16 Dec 2001 [EMAIL PROTECTED] wrote:
> ping is not a very good test...one of the reasons that most people cant find
> problems generally. plus you want to use smaller packets to get the pps up.
> The ave size packet is under 400 bytes on the net and it better simulates
> real life. Once
How about writing a new filesystem based on UFS? This would save all of the
hassle that JFS would bring: licensing, porting time, etc. Of course, it
would likely bust any compatibility desired.
What I'm thinking is a filesystem that takes the current UFS and improves
upon it. It could support lar
It is possible that Kirk may be thinking about doing this. He mumbled
something about a new FS a while ago but it wasn't clear whether he was
thinking of doing it, or he was just saying "someone will eventually do
it".
On Mon, 17 Dec 2001, Dave Reyenga wrote:
> How about writing a new filesyste
--- Dave Reyenga <[EMAIL PROTECTED]> wrote:
> How about writing a new filesystem based on UFS?
> This would save all of the
> hassle that JFS would bring: licensing, porting
> time, etc. Of course, it
> would likely bust any compatibility desired.
hi,
first of all,
a project called UFS2 has been
Hello,
Greetings,
Regarding the 'JFS for FreeBSD' discussion, I have
started a project at SourceForge.net, which is for
the porting of JFS.
If you would like to join the JFS4BSD team in porting
the JFS to the FreeBSD Operating System, please do not
hesitate to either send a mail through SourceFo
In article <001301c1874d$50ae0d20$[EMAIL PROTECTED]>,
[EMAIL PROTECTED] writes:
> How about writing a new filesystem based on UFS? This would save all of the
> hassle that JFS would bring: licensing, porting time, etc. Of course, it
> would likely bust any compatibility desired.
>
> What
On Monday, 17 December 2001 at 22:50:45 -, Dave Reyenga wrote:
> How about writing a new filesystem based on UFS?
If it's based on UFS, it's not a new file system.
> This would save all of the hassle that JFS would bring: licensing,
> porting time, etc.
There are no hassles with licensing.
NOW YOU CAN RECEIVE A FREE CELLULAR PHONE FROM GMC AUTHORIZED DEALER FOR
AT&T,WORLDCOM,SPRINT,VOICESTREAM,VERIZON AND CINGULAR. WE HAVE MANY MODELS& STYLES TO
CHOOSE FROM LIKE THE NOKIA 3390,MOTOROLA STARTEC AND THE NOKIA 8260.WE GUARANTEE YOUR
APPROVAL REGARDLESS OF YOUR PAST CREDIT HISTORY.
On Mon, Dec 17, 2001 at 05:25:07PM -0600, D J Hawkey Jr wrote:
> The one thing that journalling FSes deliver that FFS with softupdates doesn't
> right now is a 'fsck'less boot after an uncontrolled shutdown. I have read
> that the Project has this on their TODO list.
This has been the default in
Dave Reyenga wrote:
>
> How about writing a new filesystem based on UFS? This would save all of the
> hassle that JFS would bring: licensing, porting time, etc. Of course, it
> would likely bust any compatibility desired.
>
> What I'm thinking is a filesystem that takes the current UFS and impro
:...
:>with out-of-order operations from nfsiod's that apparently may come
:>up after a week or so of testing. I asked Jordan to try to track down
:>the NeXT guy who fixed that one in the old NFS stack.
:
:This bug showed up recently here with fsx testing. I seem to have fixed it
:la
On Mon, 17 Dec 2001, Terry Lambert wrote:
[...snippage all over...]
wow! thanks! that was much more than i'd hoped for!
unfortunately i'm very much a beginner to kernel hacking, so don't expect
any ported filesystems out of me in the near future...
To Unsubscribe: send mail to [EMAIL PROTE
39 matches
Mail list logo