Re: Cdrecord -scanbus problem...

2004-03-08 Thread Eric Pogroski
On Mon, 08 Mar 2004 09:49:04 -0600
"Schroeder, AJ" <[EMAIL PROTECTED]> wrote:

> Hello all,
> 
> I just recently upgraded my system to 5.2-RELEASE, as evidenced by uname -a:
> 
> FreeBSD mephisto.qg.com 5.2-RELEASE FreeBSD 5.2-RELEASE #0: Tue Jan 27
> 16:05:26 CST 2004 [EMAIL PROTECTED]:/usr/obj/usr/src/sys/MEPHISTO
> i386
> 
> I was able to burn CDs in my previous installation, but now I am getting
> nothing but trouble with cdrecord whenever I try to execute it, so I decided
> to try scanning the bus, and here is my output:
> 
> [EMAIL PROTECTED] root]# cdrecord -scanbus
> Cdrecord 2.00.3 (i386-unknown-freebsd5.2) Copyright (C) 1995-2002
> J\x{}rg Schilling
> cdrecord: No such file or directory. Cannot open SCSI driver.
> cdrecord: For possible targets try 'cdrecord -scanbus'. Make sure you are
> root.
> cdrecord: For possible transport specifiers try 'cdrecord dev=help'.
> [EMAIL PROTECTED] root]#
> 
> I looked in /dev and I saw all the devices defined that I needed, like: 
> 
> crw-r-   1 root  operator4,  18 Jan 27 16:58 acd0
> crw-r-   1 root  operator4,  19 Jan 27 16:58 acd1
> 
> Cdrecord is installed along with xcdroast and other gui front-end apps, all
> of them fail. Both of the drives are good because I can mount CDs in them. I
> am also attaching a copy of my /var/run/dmesg.boot and a copy of my kernel
> config in case I did something wrong there.
> 
> Any help on this matter would be appreciated greatly, also, please cc me, I
> am not a part of this list.
> 
> Thanks,
> 
> AJ Schroeder
> 
su to root then use cdrecord scanbus
or
add yourself to the wheel group, then do 'sudo cdrecord scanbus' 
or
(most unsecure option) su to root, chmod +s /usr/local/bin/cdrecord,
exit root, cdrecord is now usable by 'regular' user's.

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


Re: Installing Squirrel Mail from the Ports

2004-03-03 Thread Eric Pogroski
On Wed, 03 Mar 2004 10:05:17 -0800 (PST)
[EMAIL PROTECTED] wrote:

> 
> > Delete /usr/ports/distfiles/squirrelmail-1.4.2.tar.bz2, and try again.
> >
> > The file you have by that name has been corrupted somehow and the ports
> system is not happy with it. I just checked, and the tarball I
> downloaded from sourceforge is identical to the one I used the last time
> I updated squirrelmail.  You should end up with:
> >
> > % ls -la squirrelmail-1.4.2.tar.bz2
> > -rw-r--r--  1 root  wheel  1888703 Oct  1 20:42
> > squirrelmail-1.4.2.tar.bz2
> > % md5 squirrelmail-1.4.2.tar.bz2
> > MD5 (squirrelmail-1.4.2.tar.bz2) = 8d8271c704a9f23d53138a4ceea38fb4
> >
> > but the ports system will check that automatically for you.
> >
> > Cheers,
> >
> > Matthew
> >
> > --
> > Dr Matthew J Seaman MA, D.Phil.   26 The Paddocks
> >   Savill Way
> > PGP: http://www.infracaninophile.co.uk/pgpkey Marlow
> > Tel: +44 1628 476614  Bucks., SL7 1TH UK
> >
> 
> after deleting the file, I run make and get
> 
> # make
> ===>  Patching for squirrelmail-1.4.2_1
> ===>  Applying FreeBSD patches for squirrelmail-1.4.2_1
> patch:  can't cd to
> /usr/ports/mail/squirrelmail/work/squirrelmail-1.4.2: No such file or
> directory
> >> Patch patch-config-config_default.php failed to apply cleanly.
> *** Error code 1
> 
> Stop in /usr/ports/mail/squirrelmail.
> 
> what I can do to get the port downloaded again?  or how can I clean up
> after a failed install?
> 
> 

cd /usr/ports/mail/squirrelmail && make clean && rm -rf work && make distclean && make 
fetch && make (-DANY_OPTIONS_HERE)
cleans the workfiles out
forces the work directory to disappear.. :)
cleans (removes) the distribution file
fetch's a new copy of the distfile
make's the software (with any option's that you decide that you need)

hth.

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


SOLVED! -was Re: How do I disable plip probing on 4.9 install?

2003-12-25 Thread Eric Pogroski
On Thu, 25 Dec 2003 11:27:50 -0500
Eric Pogroski <[EMAIL PROTECTED]> wrote:

> Hi List, (and where/when appropriate, Seasons Greetings!):
> 
> I'm having problems installing 4.9 release on a thinkpad 390x. I can get it
> to boot, but it stalls at this point:
> #
> ppc0:  at port 0x378-0x37f irq 7 on isa0
> ppc0: Generic Chipset (EPP/NIBBLE) in COMPATIBLE MODE
> plip0:  on ppbus0
> #
> and the  machine just hangs, and hangs, for up to an hour before
> I just give in and turn it off. I've had OpenBSD, NetBSD, Linux,
> and Solaris on this machine w/o issues, but would really
> like to install 4.9 (the 5.x stuff does install, but is just too bloated
> to live with another OS on my hard drive.). All of the 4.x install
> Cd's/floppy's that I have (from 4.3 to 4.9) have this same problem.
> 
> Can anyone let me know what the 'magic incantation' is for this,
> or point me in the proper direction?
> 
> Thanks!
> 
> Eric
> ___
> [EMAIL PROTECTED] mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to "[EMAIL PROTECTED]"

Hi all!

I figured it out:
at the inital loader prompt from the cd, during the countdown, 
I tapped the spacebar and passed 'boot -v' to the loader, and
lo and behold, it scooted right by the former hang at plip0.

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


How do I disable plip probing on 4.9 install?

2003-12-25 Thread Eric Pogroski
Hi List, (and where/when appropriate, Seasons Greetings!):

I'm having problems installing 4.9 release on a thinkpad 390x. I can get it
to boot, but it stalls at this point:
#
ppc0:  at port 0x378-0x37f irq 7 on isa0
ppc0: Generic Chipset (EPP/NIBBLE) in COMPATIBLE MODE
plip0:  on ppbus0
#
and the  machine just hangs, and hangs, for up to an hour before
I just give in and turn it off. I've had OpenBSD, NetBSD, Linux,
and Solaris on this machine w/o issues, but would really
like to install 4.9 (the 5.x stuff does install, but is just too bloated
to live with another OS on my hard drive.). All of the 4.x install
Cd's/floppy's that I have (from 4.3 to 4.9) have this same problem.

Can anyone let me know what the 'magic incantation' is for this,
or point me in the proper direction?

Thanks!

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


Re: Anyone have /usr/ports/java/jdk14 working on 4.8?

2003-12-10 Thread Eric Pogroski
On Wed, 10 Dec 2003 07:25:46 -0600
Charles Howse <[EMAIL PROTECTED]> wrote:

> On Wednesday 10 December 2003 07:16 am, Eric Pogroski wrote:
> > On Tue, 09 Dec 2003 15:44:54 -0600
> >
> > Charles Howse <[EMAIL PROTECTED]> wrote:
> > > Please tell me how you did it.
> > > My build always fails.
> > > I have /usr/local/linux-sun-jdk1.4.2 working.
> > >
> > > [EMAIL PROTECTED] /usr/local/linux-sun-jdk1.4.2/bin]# ./java -version
> > > java version "1.4.2_02"
> > > Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_02-b03)
> > > Java HotSpot(TM) Client VM (build 1.4.2_02-b03, mixed mode)
> > >
> > > --
> > > Thanks,
> > > Charles
> > > http://howse.homeunix.net:8080
> > >
> > > Random Murphy's Law:
> > > Envelopes and stamps which don't stick when you lick
> > > them will stick to other things when you don't want
> > > them to.
> >
> > Hi Charles:
> >
> > Yes, here's what I had to do:
> > 1. cd /usr/ports/java/linux-sun-jdk14 && make install   <-- Don't clean yet
> > 2. cd /usr/ports/java/jdk14 && make  install < installs, and works
> > 3. cd /usr/ports/java/linux-sun-jdk14 && make clean
> >
> > it'll take a couple of hours on an athlon 2100+ running 4.8 release patch
> > level 14
> 
> Eric, thanks for the reply.
> I'll try that right away.
> You don't by any chance have OpenOffice-1.1 working do you?
> That's where I'm going with this, but I have to get jdk working first.
> attempting to install jdk takes 6+ hrs on my machine.  :-)
> 
> -- 
> Thanks,
> Charles
> http://howse.homeunix.net:8080
> 
> Random Murphy's Law:
> You can't guard against the arbitrary.
> 

Hi Charles:

OpenOffice 1.1 took me about 15 hours to compile, but I believe that doing a 
'make package clean' added to the time.

good luck!

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


Re: Anyone have /usr/ports/java/jdk14 working on 4.8?

2003-12-10 Thread Eric Pogroski
On Tue, 09 Dec 2003 15:44:54 -0600
Charles Howse <[EMAIL PROTECTED]> wrote:

> Please tell me how you did it.
> My build always fails.
> I have /usr/local/linux-sun-jdk1.4.2 working.
> 
> [EMAIL PROTECTED] /usr/local/linux-sun-jdk1.4.2/bin]# ./java -version
> java version "1.4.2_02"
> Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_02-b03)
> Java HotSpot(TM) Client VM (build 1.4.2_02-b03, mixed mode)
> 
> -- 
> Thanks,
> Charles
> http://howse.homeunix.net:8080
> 
> Random Murphy's Law:
> Envelopes and stamps which don't stick when you lick
> them will stick to other things when you don't want
> them to.
> 
Hi Charles:

Yes, here's what I had to do:
1. cd /usr/ports/java/linux-sun-jdk14 && make install   <-- Don't clean yet
2. cd /usr/ports/java/jdk14 && make  install < installs, and works
3. cd /usr/ports/java/linux-sun-jdk14 && make clean

it'll take a couple of hours on an athlon 2100+ running 4.8 release patch level 14

hth.

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


devfs.conf silliness??

2003-12-05 Thread Eric Pogroski
Hi all. can someone please explain this to me:

/etc/devfs.conf
# examples, blah
# my devices/perms/etc
perm mdctl 0660
own  mctl user:operator
[/code] I can create md* without any issues, but if I add this:
[code]
perm md* 0660
own md* user:operator
--OR--
perm md0 0660
own md0 user:operator
[/code]

it defaults to root:operator when I do say
mdconfig -a -t vnode -f example.iso
, and I'm unable to mount it without either becoming root, or mounting it
with sudo, which I thought was the point of devfs.conf in the first place
(to set userland permissions on devices so that non root users could 
mount/dismount them if needed)?

is thier some undocumented .conf or sysctl variable that I'm just not finding, 
or is devfs.conf fundamentally broken for 'dynamic' devices (ie: it can't understand 
wildcards, or even handle me plugging in or creating another device, i.e:USB keyfob
, or mounting a ISO image, while the machine is up and running)?

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


ports/lang/expect compile errors

2003-11-02 Thread Eric Pogroski
Hi All!

I get this error when attempting to compile lang/expect from a fresh
cvsup of ports:

maroon# make WITHOUT_X11=yes
===>  Building for expect-5.38.0_1
rm -f libexpect538.so.1
ld -shared -x -o libexpect538.so.1 shared/exp_command.o shared/expect.o
shared/pty_termios.o  shared/exp_inter.o shared/exp_regexp.o
shared/exp_tty.o  shared/exp_log.o shared/exp_main_sub.o
shared/exp_pty.o  shared/exp_trap.o  shared/exp_console.o
shared/exp_strf.o shared/exp_glob.o  shared/exp_win.o shared/exp_clib.o 
shared/exp_closetcl.o shared/exp_memmove.o shared/exp_tty_comm.o 
shared/exp_select.o shared/exp_event.o  shared/exp_chan.o shared/Dbg.o
-Wl,-rpath,/usr/local/lib -L/usr/local/lib -ltcl83   -lm
-lc/usr/libexec/elf/ld: unrecognized option
'-Wl,-rpath,/usr/local/lib'/usr/libexec/elf/ld: use the --help option
for usage information*** Error code 1

   Stop in /usr/ports/lang/expect/work/expect-5.38.
*** Error code 1
 
Stop in /usr/ports/lang/expect.


I'm no real coder, so I can't even begin to figure out where this is
going wrong. Can anyone help?

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


Re: mplayer port

2003-10-27 Thread Eric Pogroski
On Mon, 27 Oct 2003 08:54:57 -0500 (EST)
Andy Harrison <[EMAIL PROTECTED]> wrote:

> -BEGIN PGP SIGNED MESSAGE-
> 
> Anyone else have trouble with the gui?
> 
> It starts and plays fine for me, but when I try to click any options
> that bring up a new window (prefs, skins, etc) I see the window flash
> onto the screen and then vanish very quickly.  Play/Stop/etc buttons
> and volume control work fine.
> 
> Here is the startup sequence.
> 
> > gmplayer -skin CornerMP-aqua http://example.com
>  
> MPlayer 0.92-2.95.4  (C) 2000-2003 MPlayer Team
> CPU: Intel  (Family: 8, Stepping: 7)
> Detected cache-line size is 64 bytes
> CPUflags:  MMX: 1 MMX2: 1 3DNow: 0 3DNow2: 0 SSE: 1 SSE2: 1
> Compiled with Runtime CPU Detection - WARNING - this is not optimal!
> To get best performance, recompile MPlayer with
> --disable-runtime-cpudetection Reading config file
> /usr/local/share/mplayer/mplayer.conf: No such file or directory
> Reading config file /home/aharrison/.mplayer/config
> [cfg] read config file: /home/aharrison/.mplayer/gui.conf
> Reading config file /home/aharrison/.mplayer/gui.conf
> vo: X11 running at 1600x1200 with depth 24 and 32 bpp (":0.0" => local
> display) Reading /home/aharrison/.mplayer/codecs.conf: can't open
> '/home/aharrison/.mplayer/codecs.conf': No such file or directory
> Reading /usr/local/share/mplayer/codecs.conf: 50 audio & 136 video
> codecs Font
> /usr/local/share/mplayer/fonts/iso-8859-1/arial-18/font.desc loaded
> successfully! (206 chars) Using usleep() timing
> Can't open input config file /home/aharrison/.mplayer/input.conf: No
> such file or directory
> Input config file /usr/local/share/mplayer/input.conf parsed: 52 binds
> SKIN dir 1: '/home/aharrison/.mplayer/Skin'
> SKIN dir 2: '/usr/local/share/mplayer/Skin'
> 
> 
> I have tried without any skins, I've tried monkeying with the fonts,
> I've tried numerous ways, but can't get the gui to function properly.
> 
> ~~ 
> Andy Harrison
> Great Works Internet
> System Operations
> (full headers for details)

Hi Andy:

This is gonna be a bit long, but this is what I do every time for
mplayer:

1. Kernel Config: (This is for an AMD AthlonXP 2100+, make
changes/adjustments as necessary)
options CPU_FASTER_5X86_FPU
options CPU_ATHLON_SSE_HACK
options CPU_ENABLE_SSE

2. install /usr/ports/x11/nvidia
make -DWITH_FREEBSD_AGP install clean
kldload nvidia
add these lines to /boot/loader.conf:
linux_load="YES" (presuming that you've installed 'linux_base')
nvidia_load="YES"

3. Download rp8_linux_20_libc6_i386_cs2_rpm from www.real.com (don't
forget, GOOGLE is your friend)
copy this to /usr/ports/distfiles

4.cd /usr/ports/multimedia/mplayer
make WITHOUT_RUNTIME_CPUDETECTION=yes WITH_GUI=yes WITH_FREETYPE=yes
WITH_XVID=yes WITH_DVD=yes WITH_SVGALIB=yes WITH_MAD=yes WITH_AALIB=yes
WITH_SDL=yes WITH_VORBIS=yes WITH_REALPLAYER=yes WITH_LIVEMEDIA=yes
WITH_FAAD=yes WITH_XMMS=yes install clean

most of the options above have autodetect flags so if you have some of
the above then you can skip it

5. DO NOT RUN MPLAYER yet

6. install fonts
#cd /usr/ports/multimedia/mplayer-fonts
#make install clean
(select 8859-1)

7. configure mplayer for user:
as a user (not root)
#cd /usr/ports/multimedia/mplayer
#make install-user

8. next copy following files to ~/.mplayer
#cp /usr/local/share/mplayer/codecs.conf ~/.mplayer/
#cp /usr/local/share/mplayer/example.conf ~/.mplayer/config
#cp /usr/local/share/mplayer/input.conf ~/.mplayer

9. FINAL STEPS FOR USER CONFIG
#cd ~/.mplayer
create directory for skins
#mkdir Skin (THIS IS THE NAME OF DIR DONT MAKE ANY OTHER)

10. download mplayer skins from
http://www.mplayerhq.hu/homepage/dload.html
don't use the port, it's got some rather strange bugs in the installer

11. unpack skins to the directory you created ~/.mplayer/Skin
you should also download and install the default skin

12. make sure that these lines in ~/.mplayer/config file are
uncommented:
vo=xv
fs=yes

comment out the following line at the end of ~/.mplayer/config file:
#include = /home/gabucino/.mplayer/i_did_not_RTFM_carefully_enough...

13. Your almost done

14. run
#gmplayer
you should see your mplayer gui now.

extra stuff
15. Install mplayer-plugin for mozilla from
/usr/ports/www/mplayer-plugin (can break, ymmv)

this will allow you to play quicktime movies from mozilla
test for mozilla plugin:
http://www.apple.com/trailers/newli..._towers-teaser/

select small from watch it now panel (small loads faster) you should see
and hear trailer. There is no plugin for realplayer so *rm files will
invoke it as separate instance.

Except downloading realplayer to ../.../distfiles you do not need to
 get or install anything before installing mplayer. Test realplayer
alone to see if it works (for me it does). You will be also able to
listen WMP streaming files (mozilla should open small extra window -
empty), and watch DVD/VCD/SVCD's

one more thing:
I dont have ANY sound daemons running. The above setup works on
Asus A7V333/R with an nVIDIA GeForc

Re: D-Link (DFE-670TXD) config

2003-10-22 Thread Eric Pogroski
On Wed, 22 Oct 2003 14:28:12 -0500 (CDT)
RacerX <[EMAIL PROTECTED]> wrote:

> Hey folks -
>   So far as I can tell, under FreeBSD 5.1, the above pcmcia card
> works. However, when I install 4.8 onto my laptop, the pccard only
> sort of seems to be seen.
> 
> IE:
> pccard: card inserted, slot 0
> pccard[43]: No card in database for "D-Link"("DFE-670TXD")
> 
> What I would like to know, has anyone got this card to work under 4.8?
> If so, I would greatly appreciate the details on how.
> 
> 
> Best regards,
>  Chris
> __
> 
> PGP Fingerprint = D976 2575 D0B4 E4B0 45CC AA09 0F93 FF80 C01B C363
> 
> PGP Mail encouraged / preferred - keys available on common key servers
> __
>01010010011101100011011001010111001001011000
> 
> ___
> [EMAIL PROTECTED] mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to
> "[EMAIL PROTECTED]"

Hi. I have the same card running under 5.1 release p10, but I don't
believe that 4.8 has cardbus support. 4.9rc might, I haven't been paying
attention to it much.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: [freebsd-questions] root passwd change

2003-10-22 Thread Eric Pogroski
On Wed, 22 Oct 2003 10:06:12 -0400
Lowell Gilbert <[EMAIL PROTECTED]> wrote:

> Eric Pogroski <[EMAIL PROTECTED]> writes:
> 
> > here's whats needed:
> > 
> > 
> > # shutdown now
> > #  (csh & tcsh both go fubar in
> > single-user mode)  > still mounted> 
> > # passwd root   <--- this is important - lost one system by NOT doing
> > this
> > # exit  -or-reboot  <--- I prefer a reboot, but that's me.
> 
> Oh, right; we're only trying to change the root password here.  That's
> not actually affected by securelevel at all, so that was a red herring
> for me to bring up securelevel in the first place.
> 
> > work's about 9 times out of 10. It's the tenth one that makes you
> > bald from frustration... :)
> 
> You need the ability to invoke shutdown.  Since you don't have the
> root password, you need some other account with either root (via sudo,
> for example) or operator-group access.
> ___
> [EMAIL PROTECTED] mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to
> "[EMAIL PROTECTED]"

Alright, before this turns ugly, I have a better way to go about this:

either a) just reboot the box, and boot off of a fixit disc, and use the
emergency terminal, follow the directions regarding soft linking
/etc/groups & /etc/*.db, and then change the password from there

or b) reboot the box, hit any key but enter when the countdown appears,
and enter single user mode, and do (providing no errors on boot):
mount -u / (takes the / partition out of read only mode)
mount -a -t ufs (mounts /tmp, /usr, and /var, and any other ufs
filesystems for you)
passwd root 
reboot
login as root

it's kinda like doing the build world routine, only no fsck or massive
amounts of compiling.

However, if kern.securelevel is set to anything but '-1', and
kernsecurelevel_enable is set to "YES" in rc.conf, your not going to get
in without some good, old fashioned hacking.
Seeing as it was never mentioned what either or both of the previous
settings are, we both are shooting in the dark here.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Automatic mounting of removable meadia

2003-10-21 Thread Eric Pogroski
On Tue, 21 Oct 2003 15:19:08 +0200
Heinrich Rebehn <[EMAIL PROTECTED]> wrote:

> Hi list,
> 
> Is it possible to automatically mount media when they are inserted?
>  From the GNOME 2.4 documentation (Nautilus, 1.8.1:To mount Media):
> 
> "
> If your system is not configured to mount the device automatically,
> you must mount the device manually. Right-click on the desktop, then
> choose Disks->device-name. For example, to mount a floppy diskette,
> choose Disks->Floppy. An object that represents the media is added to
> the desktop."
> 
> So, how can i configure FreeBSD to mount the device automatically?
> 
> Unfortunately, the GNOME way to manually mount media via an entry in 
> /etc/fstab does not work under FreeBSD since the mountpoint must be 
> owned by the user, which is difficult to configure for a multiuser
> system.
> 
> Any solution?
> 
> Heinrich
> -- 

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


Re: [freebsd-questions] root passwd change

2003-10-21 Thread Eric Pogroski
On Tue, 21 Oct 2003 08:55:54 -0400
Lowell Gilbert <[EMAIL PROTECTED]> wrote:

> Eric Pogroski <[EMAIL PROTECTED]> writes:
> 
> > On Tue, 07 Oct 2003 19:37:19 +
> > DanB <[EMAIL PROTECTED]> wrote:
> > 
> > > Is there other way to change the root password that been lost
> > > without shutting down the computer.
> > > 
> > > Old way shutdown space barboot -s  #mount  -t ufs -a
> > > #passwd
> > > # exit to multiusers.
> > 
> > Try this:
> > 
> > # shutdown now
> > < hit return to accept 'sh' as the default shell >
> > # passwd
> > # exit
> 
> Did you try that?
many, many times in the past... :)

> Won't it still be in the raised securelevel?
nope. sorry about the brevity of my previous reply, in a bit of a rush
then.

here's whats needed:


# shutdown now
#  (csh & tcsh both go fubar in
single-user mode)  
# passwd root   <--- this is important - lost one system by NOT doing
this
# exit  -or-reboot  <--- I prefer a reboot, but that's me.


work's about 9 times out of 10. It's the tenth one that makes you bald
from frustration... :)

ps: cc your replies to [EMAIL PROTECTED] so this stuff will get
to the archives.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: root passwd change

2003-10-20 Thread Eric Pogroski
On Tue, 07 Oct 2003 19:37:19 +
DanB <[EMAIL PROTECTED]> wrote:

> Is there other way to change the root password that been lost without
> shutting down the computer.
> 
> Old way shutdown space barboot -s  #mount  -t ufs -a
> #passwd
> # exit to multiusers.

Try this:

# shutdown now
< hit return to accept 'sh' as the default shell >
# passwd
# exit

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


Re: 5.1-Realease UPDATE PORTS

2003-10-20 Thread Eric Pogroski
On Mon, 20 Oct 2003 13:38:03 -0400
Osmany Guirola Cruz <[EMAIL PROTECTED]> wrote:

> I can not use cvsup due to restrictions on my network and i need to do updates of my 
> ports. 
> how and what can i do?

can you ftp? or use a browser (relatively) freely? If so, go here:
ftp://ftp.freebsd.org/pub/FreeBSD/ports/ports/ports.tar.gz
untar it to your /usr directory, and you'll have a only slightly out-of-sync ports 
tree.

or you could attempt to tell cvsup to use alternate ports.

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