Re: Bash history empty on login

2013-01-08 Thread Dimitri Yioulos
On Monday 07 January 2013 7:01:09 pm Andre Goree wrote:
 I'm not sure what's going on, as I've never had an issue
 like this in my years of using FreeBSD nor Linux.  Each
 time I login, my history file is empty!  I'm not sure
 what could be causing this, but below [1] is my .bashrc. 
 I had . ~/.bashrc in ~/.profile, but I removed it while
 I'm trying to troubleshoot this issue.  Does anyone have
 an idea or a direction to point me in?  Thanks in
 advance.

 [1]#
 # ~/.bashrc
 #

 # If not running interactively, don't do anything
 [[ $- != *i* ]]  return

 #PS1='[\u@\h \W]\$ '

 alias ls='ls -G'
 alias ll='ls -lAhp'
 alias umount='sudo umount'
 alias grep='grep --color'
 alias nmap='sudo nmap'
 alias updatedb='sudo updatedb'
 alias pkg_add='sudo pkg_add'
 alias pkg_delete='sudo pkg_delete'
 alias top='top -aPStzj -s 1'
 alias portinstall='sudo portinstall'
 alias updatedb='sudo updatedb'

 PS1='\[\e[1;37m\][\u@\h \W]\$\[\e[0m\] '

 export PATH=$PATH:/home/agoree/bin:/usr/local/kde4/bin/

 #BASH history
 export HISTTIMEFORMAT=%h/%d - %H:%M:%S 
 export HISTFILESIZE=10
 #export VBOX_USB=usbfs

 --

Hope I'm not offending you if the following are things 
you've tried as a matter-of-course:

After booting up, is history started, or do you have to do 
that manually?  Have you run set -o to see if history is 
enabled?  If it isn't, then set -o history.  Is a clear 
command being issued from anywhere upon logout or reboot?

Just some thoughts.

-- 
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.

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


Re: is csup broken?

2013-01-02 Thread Dimitri Yioulos
On Wednesday 02 January 2013 10:14:17 am Fbsd8 wrote:
 Been using same script for years to fetch selected port
 files. Today I get error message
 Unknown collection ports-sysutils

 Running 9.1 and this worked in 2012


It must have to do with the security incident that took 
place a couple of months ago.  It affects all package 
updates for 9.1 via pkg_add and csup, I guess.

Dimitri

-- 
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.

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


Re: semi OT: correct CIDR block?

2012-03-05 Thread Dimitri Yioulos
On Monday 05 March 2012 9:30:01 am Robert Huff wrote:
   With my brain still on EBADSLEEP, I cannot decide if:

   10.0.0.32-10.0.0.63

   is correctly described by:

   10.0.0.32/27

   Anyone?  Please?


   Robert Huff

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


Correct.

-- 
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.

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


Re: semi OT: correct CIDR block?

2012-03-05 Thread Dimitri Yioulos
On Monday 05 March 2012 9:30:01 am Robert Huff wrote:
   With my brain still on EBADSLEEP, I cannot decide if:

   10.0.0.32-10.0.0.63

   is correctly described by:

   10.0.0.32/27

   Anyone?  Please?


   Robert Huff

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


Robert,

Sent to you directly, as I can't get to the fbsd list.

Your CIDR is correct.

Best,

Dimitri

-- 
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.

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


Re: Help with pam_abl package

2011-04-05 Thread Dimitri Yioulos
On Tuesday 05 April 2011 12:22:54 pm Phusion 
wrote:
 I'm having a problem with the pam_abl package.
 I've already emailed the programs author, but
 didn't get a reply back. I'm having trouble
 setting up a rule to exclude to users. One user
 is the root user while the other is a local
 account. I've tried multiple things, but they
 don't seem to work. The rules seem to only not
 include the root user.

 This does exclude the root user, but not the
 localacct user.

 #debug
 user_db=/var/db/pam_abl/users.db
 user_rule=!root|!localacct:5/60d

 This next one doesn't seem to work either.

 #debug
 user_db=/var/db/pam_abl/users.db
 user_rule=!root:5/60d !localacct:5/60d

 Please advise.

 Phusion
 ___
 freebsd-questions@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freeb
sd-questions To unsubscribe, send any mail to
 freebsd-questions-unsubscr...@freebsd.org


You might want to try the following (from the 
pam_abl documentation):


Multiple rules can be provided separated by spaces 
like this

*:10/1h root:5/1h,10/1d

in which case all rules that match a particular 
user and service will be checked. The user or 
host will be blocked if any of the rule triggers 
matches. The sense of the user matching can be 
inverted by placing a '!' in front of the rule so 
that

!root:20/1d

is a rule which would match for all users apart 
from root. It is important to treat root as a 
special case in the user_rule otherwise excessive 
attempts to authenticate as root will result in 
the root account being locked out even for valid 
holders of root credentials.


HTH.

Dimitri

-- 
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.

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


Re: OTish: Alternative to MS Live?

2009-12-08 Thread Dimitri Yioulos
On Tuesday 08 December 2009 5:50:46 pm Kurt Buff 
wrote:
 All,

 Our new CEO wants me to poke holes in the
 firewall and install the MS client on a number
 of desktops to facilitate IM/videoconferencing
 for this.

 That makes me vaguely nauseous, for several
 security reasons (the client is historically
 vulnerable, poking holes in firewalls is risky,
 and internal corporate communications should
 stay internal - that'll do for a start...)

 I'm looking to stick an IM/Videoconference
 system in a DMZ instead.

 Does anyone know of a good alternative -
 preferably with a web interface, though that's
 not absolutely required?

 Thanks,

 Kurt
 ___


Others may come up with better solutions, but you 
might want to look at OpenFire for your IM needs 
(I use it in my shop; it's secure and works 
great), and maybe dimdim for vidconf (both 
hosted - free for up to 20 conferees, and locally 
installed options).

Dimitri

-- 
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.

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


Mail not working

2009-11-28 Thread Dimitri Yioulos
Greetz to all.

I've never been able to get a mail server working on my FreeBSD installation.  
While I
recently upgraded to 8.0-RELEASE, it hasn't worked since my initisl 7.0-RELEASE
installation.  This is not a major server, so I haven't fussed with it up to 
now.  But,
I would like to finally fix it.

I've tried various combinations of postfix and sendmail, but all have failed.  
It
doesn't matter to me whether I run postfix or sendmail, though I have far more
experience with sendmail.  I believe that both postfix and sendmail are 
currently
installed, with postfix being the mail server.  I want to forward mail to my 
sendmail
MTA for distribution, which I'm doing successfully with many other *nix boxes.

Here's what I currently see in /var/log/messages whenever I try to send a 
message from
the FBSD box:

Nov 28 04:15:30 marshfield kernel: pid 11721 (mailwrapper), uid 0: exited on 
signal 11
(core dumped)

and in /var/log/maillog:

Nov 26 21:35:29 marshfield postfix/master[946]: daemon started -- version 
2.7-20091008,
configuration /usr/local/etc/postfix

Here's at least a snippet from main.cf:

mydomain = ourdomain.com
readme_directory = no
myorigin = $mydomain
mydestination = $mydomain
#relayhost = [mail1.$mydomain]
relayhost = 192.168.1.2
data_directory = /var/db/postfix
transport_maps = /usr/local/etc/postfix/transportsmtpd_recipient_restrictions = 
permit_my
networks

and mailer.conf:

sendmail/usr/sbin/sendmail
send-mail   /usr/sbin/sendmail
mailq   /var/spool/mqueue
newaliases  /usr/bin/newaliases

I've googled, etc., but haven't come up with a solution.  Your help would be 
greatly
appreciated.

Thanks.



-- 
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.

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


Re: Mail not working [SOLVED]

2009-11-28 Thread Dimitri Yioulos
On Sat, 28 Nov 2009 12:56:57 -0500, Dimitri Yioulos wrote
 Greetz to all.
 
 I've never been able to get a mail server working on my FreeBSD installation. 
  
 While I recently upgraded to 8.0-RELEASE, it hasn't worked since my initisl 
 7.0-RELEASE installation.  This is not a major server, so I haven't fussed 
 with it up to now.  But, I would like to finally fix it.
 
 I've tried various combinations of postfix and sendmail, but all have failed. 
  
 It doesn't matter to me whether I run postfix or sendmail, though I have far 
 more
 experience with sendmail.  I believe that both postfix and sendmail are 
 currently
 installed, with postfix being the mail server.  I want to forward mail to my 
 sendmail
 MTA for distribution, which I'm doing successfully with many other *nix boxes.
 
 Here's what I currently see in /var/log/messages whenever I try to send a 
 message from the FBSD box:
 
 Nov 28 04:15:30 marshfield kernel: pid 11721 (mailwrapper), uid 0: exited on 
 signal 11
 (core dumped)
 
 and in /var/log/maillog:
 
 Nov 26 21:35:29 marshfield postfix/master[946]: daemon started -- version 2.7-
 20091008, configuration /usr/local/etc/postfix
 
 Here's at least a snippet from main.cf:
 
 mydomain = ourdomain.com
 readme_directory = no
 myorigin = $mydomain
 mydestination = $mydomain
 #relayhost = [mail1.$mydomain]
 relayhost = 192.168.1.2
 data_directory = /var/db/postfix
 transport_maps = /usr/local/etc/postfix/transportsmtpd_recipient_restrictions 
 = permit_my networks
 
 and mailer.conf:
 
 sendmail/usr/sbin/sendmail
 send-mail   /usr/sbin/sendmail
 mailq   /var/spool/mqueue
 newaliases  /usr/bin/newaliases
 
 I've googled, etc., but haven't come up with a solution.  Your help would be 
 greatly
 appreciated.
 
 Thanks.
 

I can't believe it.  After all this time hacking away, I solved my issue rather 
easily.
 I made sure sendmail was turned off, then deinstalled/reinstalled 
postfix-current from
ports.  I had to tweak some directives in mailer.conf and main.cf based on a 
couple of
posts I googled.  I made sure sendmail wouldn't start, then started postfix with
/etc/rc.d/sendmail onestart (Q: why is postfix invoked by starting 
sendmail?).  Was
able to send mail locally and externally through MTA.

Sorry for the noise.

Dimitri

-- 
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.

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


Re: Making bootable USB keys

2009-09-03 Thread Dimitri Yioulos
On Thursday 03 September 2009 11:35:34 am Samuel 
Martín Moro wrote:
 Hello

 I'm having some troubles, trying to create
 bootable USB keys. I found (freebsd-hackers ML
 archives) a script, supposed to create the
 bootable image from my iso file.
 But, it still don't boot... (I may do it wrong)

 In details:
 -We distribute a FreeBSD (4.7, 5.4, 6.2 and
 7.2) custom server. -We burn our install CD
 (and, in a few, our USB sticks) on a Ferdora 9
 (sorry...)
 -USB sticks must contain a FAT32 partition
 (we'ld like to provide doc for windows users)

 Well, my english isn't so great... so I'll post
 my code (more understandable)

 --maker.sh--
 #!/bin/sh
 ISO_DIR=/r00t
 ISO_PFIX=r00t
 VERSION=5.9.3.0
 ISO_FILE=$ISO_DIR/$ISO_PFIX-$VERSION.img
 DEVICE=
 TMPDOC=/mnt/tmpdoc
 DOCDIR=/root/samuel/docdir
 ERR=
 SFX=
 MBR=/root/samuel/mbr
 BT1=/root/samuel/boot1
 BT2=/root/samuel/boot2

 if [ -e $1 ]; then
 DEVICE=$1
 elif [ $1 -a -e /dev/$1 ]; then
 DEVICE=/dev/$1
 elif [ $1 ]; then
 echo $0: incorrect device specified 2
 exit
 else
 echo $0: must specify device 2
 exit
 fi
 for i in `mount | cut -d ' ' -f 1`
 do
 if [ `echo $i | grep $DEVICE` ]; then
 echo $0: $i already mounted 2
 echo umount it manually or
 choose an other drive 2 exit
 fi
 done

 if [ -e $TMPDOC -a -d $TMPDOC ]; then
 echo $0: removing $TMPDOC directory 2
 rm -rf $TMPDOC
 elif [ -e $TMPDOC ]; then
 mv $TMPDOC $TMPDOC.old
 echo $0: moved $TMPDOC to $TMPDOC.old 2
 fi
 mkdir $TMPDOC

 if [ $2 ]; then
 echo $2 | grep \.img$ /dev/null ||
 SFX=.img fi

 if [ -e $2$SFX ]; then
 ISO_FILE=$2$SFX
 elif [ $2 -a -e $ISO_DIR/$2$SFX ]; then
 ISO_FILE=$ISO_DIR/$2
 elif [ $2 -a -e $ISO_DIR/$ISO_PFIX-$2$SFX
 ]; then ISO_FILE=$ISO_DIR/$ISO_PFX-$2$SFX
 else
 echo $0: will use default file
 \`$ISO_FILE' 2 echo  as system
 image source 2 fi
 if [ -e $ISO_FILE ]; then
 MSize=`ls -l $ISO_FILE | awk '{print $5}'`
 else
 echo $0: $ISO_FILE doesn't exist! 2
 rm -rf $TMPDOC
 exit
 fi
 if [ -z $MSize -o $MSize -lt 1 ]; then
 echo $0: bad image size (size=$MSize) 2
 rm -rf $TMPDOC
 exit
 fi

 while :
 do
 echo  [ Working on $DEVICE ]

 echo -n determining device geometry  
 infos=`fdisk -l $DEVICE 2/dev/null | grep
 [0-9]* heads` ident=`fdisk -l $DEVICE
 2/dev/null | awk '/Disk identifier/{print
 $3}'` csz=`fdisk -l $DEVICE 2/dev/null | awk
 '/Units = cylinders /{print $7}'`
 eval `echo $infos | awk '{print hpc= $1 
 sec= $3  cyl= $5}'` if [ -z $hpc -o -z
 $sec -o -z $cyl -o -z $csz ]; then echo 
 [ FAIL ]
 echo $0: can't get infos for device
 $DEVICE 2 rm -rf $TMPDOC
 exit
 fi
 echo  [ OK ]

 echo -n initializing partition table 
 #dd if=/dev/zero of=$DEVICE bs=$csz count=1
 /dev/null 21 dd if=$BT1 of=$DEVICE
 /dev/null 21 round=128
 tocyl=`expr $hpc '*' $sec '*' $csz`
 ret=`expr $MSize % $tocyl`
 MSize=`expr $MSize / $tocyl`
 test $ret -eq 0 || MSize=`expr $MSize +
 1` s2len=$MSize
 s2off=`expr $cyl - $s2len - 1`
 s1len=`expr $s2off - 1`
 s1off=1
 sfdisk -DLqf $DEVICE /dev/null 21 EOF
 $s1off $s1len b
 $s2off $s2len a5 *
 EOF
 echo  [ OK ]

 echo -n formatting FAT32 partition   
 dd if=/dev/zero of=${DEVICE}1 bs=$csz
 count=1 /dev/null 21 mkdosfs -i 42424242 -n
 Docs -F 32 ${DEVICE}1 /dev/null 21 mount
 -t vfat ${DEVICE}1 $TMPDOC || ERR=1 if [ $ERR
 ]; then
 echo  [ FAIL ]
 echo $0: unable to mount ${DEVICE}1 on
 $TMPDOC rm -rf $TMPDOC
 exit
 fi
 echo  [ OK ]

 echo -n copying documentation files  
 cp -rp $DOCDIR/* $TMPDOC/ /dev/null 21
 || ERR=2 if [ $ERR ]; then
 echo  [ FAIL ]
 echo $0: unable to copy doc files
 ERR=
 fi
 umount ${DEVICE}1
 echo  [ OK ]

 echo -n copying system   
 dd if=$ISO_FILE of=${DEVICE}2 status=noxfer
 /dev/null 21 echo  [ OK ]

 mbrsig $DEVICE 21 | awk '{print
 marking device with serial  $3 }'
 echo  [ Device ready! ]
 echo 
 echo -n ? Create new USB key ?  [Y/N] :
   read i test $i = Y -o $i = y -o
 $i = O -o $i = o || i= test -z $i 
 echo  [ leaving ]  break echo  Please,
 remove current USB key, insert new one and
 press enter read i
 done
 rmdir $TMPDOC
 --EOF--

 So, this is a USB stick generator I'm working
 on. It seems to work. (I've not tested
 everything, but the basis is OK) The stick is
 correctly parted.
 The documentation is copied.
 My only problem is that it still don't wan't to
 boot...

 At the beginning, I was trying to paste my ISO
 file directly in ${DEVICE}2 Then, I found the
 following shell script, which is supposed to
 make my bootable image from my ISO file
 I changed 2/3 things, but some of you may
 recognize it anyway:

 --ISOtoIMG.sh--
 #!/bin/sh
 MAKEFS=makefs
 MKLABEL=bsdlabel
 BSDTAR=tar
 DD=dd status=noxfer

 make_freebsd_image()
 {
   local tree=$1
   local 

Re: Customize .vacation.msg to include subject, sender, etc?

2009-05-29 Thread Dimitri Yioulos
On Friday 29 May 2009 1:23:22 pm Kelly Jones 
wrote:
 I'm using 'vacation' as an autoresponder, but
 can't seem to customize .vacation.msg to
 include the subject, sender, recipient, etc.

 Is there a way to do this?

 If not, is there a better autoresponder I can
 use?

 I realize I could write one myself, but I'd
 prefer to use an existing solution.


IIRC, .vacation.msg should live in each user's 
home directory.  .forward is responsible for 
actually enabling 'vacation' for any particular 
user.  The format for including the subject and 
sender, at least, is simply:

From: Alfred E. Neuman aeneu...@mycompany.com
Subject: Out of Office

at the top of .vacation.msg.

HTH

Dimitri

-- 
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.

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


Re: Anyone know SunFire hardware

2009-03-03 Thread Dimitri Yioulos
On Monday 02 March 2009 5:06 pm, new_guy wrote:
 Paul Schmehl-2 wrote:
  I've done some Googling, and the most common answer seems to be hit
  STOP+A,
  but there is no STOP key on an Intel keyboard.  Is there a magic
  incantation
  that will work?   Maybe the entrails of a young goat?

 Ctrl + Break

 I'm sticking with OpenBSD... BTW.

 --

Hopefully that works for you, and in the process spares that poor young goat.

-- 
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.

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


Re: Suitability question

2008-12-18 Thread Dimitri Yioulos
On Thursday 18 December 2008 4:25 pm, Patrick Baldwin wrote:
 Usually I'm asking questions for work related things.  This one is more
 personal.
 My father has this tendency to end up wrecking his computer if he uses
 the Internet
 much.  Computers are basically magic boxes to him, so education is of
 limited usefulness
 here.

 I'm thinking I might be best of trying to built him a really
 locked-down, high security
 box, almost an Internet appliance.  All he really does is use the Web,
 and a little
 light word processing.

 What do people think of FreeBSD as the base OS for this idea?

 --
 Patrick Baldwin
 Systems Administrator
 Studsvik Scandpower
 617-965-7455

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

Hope everyone doesn't jump all over me ('tis the holiday season, after all), 
but why not try gOS.  It's mainly button driven, so not much can be messed up 
(on second thought, I have some lusers who probably could mess it up :-)  ).

Dimitri

-- 
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.

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


Re: shipping

2008-09-23 Thread Dimitri Yioulos
On Tuesday 23 September 2008 11:43 am, [EMAIL PROTECTED] wrote:
 Hello,
 I am the college professor in charge The Friends Across Borders club here
 on our campus at the State University of New York at Fredonia. I have 18
 students that are going to Belize City, Belize in January to volunteer in
 the schools. We have been going there for the past few years. We have
 collected 24 computers and a few printers that we want to ship from western
 New York to Belize in order to set up computer labs in the two schools that
 we work in. Do you know of any resources or do you have resources that
 could help us get the computers shipped to them. I contacted a few shipping
 companies and the price quotes that I was getting were beyond what we could
 even consider. We would appreciate any help, assistance or directions that
 you could provide.

 Thank you!

 Helen Reddy
 Friends Across Borders Advisor
 Belize International Service Learning Project Director
 College Of Education
 SUNY Fredonia
 Thompson Hall E241
 716-673-3147
 [EMAIL PROTECTED]
 ___
 freebsd-questions@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to
 [EMAIL PROTECTED]

Have you tried partnering with other (local, state, national) service 
organizations to see if they can help?

Best of luck.

Dimitri

BTW, my brothers and sister are alumni of College at Geneseo, College at 
Brockport, and University at Albany

-- 
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.

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


Re: OSS webex-style program?

2008-05-12 Thread Dimitri Yioulos
On Monday 12 May 2008 4:06 pm, Kurt Buff wrote:
 All,

 I seem to recall discussion of this sort of program recently, but
 can't remember where.

 I've got some mobile remote users who could use support (they're on
 Windows laptops) and would like to set something up like this.

 Does anyone know of something like this?

 Thanks,

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

I don't know which program you're refering to, but you might want to take a 
look at OpenMeetings (code.google.com/p/openmeetings/).  IMHO, the install's 
a little tough.  

-- 
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.

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


Re: Questions from a Total samba Novice.

2008-05-09 Thread Dimitri Yioulos
On Friday 09 May 2008 9:49 am, Ivan Voras wrote:
 Martin McCormick wrote:
  I just found out that I will need to copy some files
  from a FreeBSD system to a Windows shared drive on our network so that
  Windows users can have access to the files.
 
  After reading a little documentation and talking to a
  cowworker, I was under the impression that this would allow
  windows clients to access files on the FreeBSD system, kind of
  the reverse of what I wanted. Then I read the man page for the
  samba suite and it says:
 
 smbclient(1)
The smbclient program implements a simple ftp-like client.  This  is
useful for accessing SMB shares on other compatible servers (such as
Windows NT), and can also be used to allow a UNIX box to print to  a
printer  attached  to  any  SMB server (such as a PC running Windows
NT).
 
  That sounds like I could push a file across when needed and be
  done with it rather than trying to coordinate the remote users
  to get the file at some time after I left it in a given
  directory.
 
  Is that just wishful thinking or will it work that way
  when properly configured? I need to be able to tell others in
  this group what is possible and that one little paragraph seems
  to say one can copy out from the UNIX box to the shared drive.

 Hi,

 After reading all this I'm still not certain about what do you want to
 do. If you are trying to just transfer some files from a FreeBSD machine
 to a Windows machine (or in the other direction) once, without much
 configuration, smbclient will let you do that. Run it on the FreeBSD
 machine and connect to a Windows machine.

 If you want to make the FreeBSD machine into a server for Windows
 machines (i.e. the files will always be on the FreeBSD machine but
 Windows users can access them, i.e. the FreeBSD machine will share
 files), then you need to configure Samba properly (edit smb.conf).

  Any particular gotchas regarding XP which soon will be
  Vista in this neck of the woods?

 No particular problems. Once configured, Samba works without additional
 maintenance.

If you just want to transfer files to the Win box on an ad hoc, periodic 
basis, why not just set up ssh on your FreeBSD box and use WinSCP on the Win 
box?  Simpler than setting up Samba (though we use it very successfully 
here).

-- 
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.

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


Re: Part-Time Job Opportunity

2008-04-30 Thread Dimitri Yioulos
On Wednesday 30 April 2008 6:35 am, Dulwich Picture Gallery wrote:
 Good Day to you Sir/Madam.

 I am pleased to give you an offer for employment as a consultant  withour
 fledgling company.

 We at Dulwich Picture Gallery have a mission to help individuals with
 investing into the Art

  Antique but due to our wide range of customers and low reach in terms of
 offices

 worldwide,we have decided to make ties with individuals around the world
 who arewilling to be

 a part of our mission to make the future bright for our investors.

 JOB DESCRIPTION:
 Currently, due to the abundance of Art and Antique in the West African
 region, we are

 pitching our Resource Office there besides our Head Office that present
 here in the UK. We

 have abundant investors in the USA and Europe but sometimes
 havedifficulties getting their

 investment bids across to us, your job will entail the cashing in of
 investment bids from our

 investors, in any form they may come (personalized checks, cashiers check
 or cash) and

 sending the funds back to one of our offices through means that will be
 given to you when the

 time arises. Our seasoned workers set up this form of employment so it
 doesnt affect your day

 job if you have one.

 RENUMERATION:
 In an instance whereby you cash in an investment bid for our customer,you
 will be entitled to

 10% of the total amount you cash. For example; if you cash an investment
 bid of $3000, your

 pay on that bid will be $300, which is subject to change depending on the
 number of bids that

 you cash.

 IMPORTANT:
 You must be over 18 years of age.U.S,UK,CANADIAN OR AUSTRALIAN
 CITIZENSHIP.If you meet these

 conditions and wish to apply send this reference position number#3456234
 and please contact

 us by replying at this e-mail address ([EMAIL PROTECTED]) to
 receive a

 Representative Contract agreement.Please mail along with the requested
 informations below

 Yours Faithfully,
 Mr.Knowles Nicolas
 Administrative Secretary,
 Dulwich Picture Gallery
 Gallery Road, Dulwich Village,
 London SE21 7AD
 Rc:122132
 www.dulwichpicturegallery.org.uk
   Reply to your messages and manage your action items at Xianz

   This message has been automatically generated by Xianz
   Please do not reply to this message.

   Xianz.com - Friends Faith Fellowship


My dream job!

-- 
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.

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


Re: Check Out Your Winning.

2008-04-17 Thread Dimitri Yioulos
On Thursday 17 April 2008 10:50 am, David M. Patronis wrote:
  Yipee, I'm rich!

 Unfortunately we'll have to split it with everyone on the list : (

 I plan to buy a local lottery ticket with my winnings.

 Sending From a 700Mhz PIII
 David



David,

You're right, of course.  I'd have to split the winnings with everyone on the 
list.  What I meant to say in the original posy was, Yipee, I'm rich in 
spirit.

You can have my share.  Combined with yours, you now have USD 3.84.  Good luck 
with that lottery ticket!

Dimitri

-- 
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.

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


Re: Check Out Your Winning.

2008-04-16 Thread Dimitri Yioulos
On Tuesday 15 April 2008 4:24 pm, ONLINE LOTTERY PROGRAM wrote:
Dear Lucky Winner,

Your E-mail has Won € 750,000 in Euro Lott= ery Program. Contact the
agent below for payment.
Your email address is = attached to Ref No: ESM/WIN/008/05/10/MA 
Batch No:EULO/1007/444/606/0= 8;
Serial No: 45407; and PROMOTION DATE: 10th April 2008.

AURA SEGUROS S. A
Contact Person: Mr= . Mario Alberto
Tel: +34-693-107-282
Email: [EMAIL PROTECTED] / [EMAIL PROTECTED]

Best Regards,
Mrs. Patricia Douet (co-or= dinator).
Madrid, 15th April 2008
 ___
 freebsd-questions@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to
 [EMAIL PROTECTED]


Yipee, I'm rich!

-- 
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.

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


Re: Random System Lockup/Hangs Occurrences Without Any Trace

2008-03-26 Thread Dimitri Yioulos
On Wednesday 26 March 2008 1:18 pm, The-IRC Hosting Administration Team wrote:
 Good Day,



 For way over a month now, we have been experiencing strange system
 lockups/hangs and are dumbfounded by the true cause of these events. When
 the occurrence happens it causes anything remotely running via root (HTTP,
 SSH, any type of control panel, FTP, Email) and console access if frozen,
 it gives a login prompt but after entering root it goes nowhere.



 Regretfully we have not ever tried enabling debug support in the kernel
 itself and beside the obvious signs of server being inaccessible; there is
 zero trace of any problems before or after the issue starts.



 This top output as a user logged onto the system remotely at the time of a
 prior lockup, shows heavy system CPU usage that kept going up and up over
 matter of 1-10Minutes.

 last pid: 56356; load averages: 1.08, 1.09, 1.08 up 0+06:31:26 16:14:06

 CPU states: 10.2% user, 2.3% nice, 87.2% system, 0.4% interrupt, 0.0% idle

 Mem: 448M Active, 87M Inact, 152M Wired, 27M Cache, 112M Buf, 284M Free

 Swap: 4096M Total, 1572K Used, 4094M Free



  Intel Pentium 4 3.0 Ghz

 80 GB SATA II 3.0 Gb/s

 1 GB Ram



 If someone may have any insight, tips, or any suggestions to better combat
 or track down this problem, it would be greatly appreciated, THANKS!



 Ryan



 Mar 25 17:30:21 Eden named[16477]: cache cleaning timer fired, cleaner
 state = 0

 Mar 25 17:30:22 Eden named[16477]: cache cleaning timer fired, cleaner
 state = 0

 Mar 25 18:30:21 Eden named[16477]: cache cleaning timer fired, cleaner
 state = 0

 Mar 25 18:30:22 Eden named[16477]: cache cleaning timer fired, cleaner
 state = 0

 Mar 25 19:30:21 Eden named[16477]: cache cleaning timer fired, cleaner
 state = 0

 Mar 25 19:30:22 Eden named[16477]: cache cleaning timer fired, cleaner
 state = 0

 Mar 25 20:30:21 Eden named[16477]: cache cleaning timer fired, cleaner
 state = 0

 Mar 25 20:30:22 Eden named[16477]: cache cleaning timer fired, cleaner
 state = 0

 Mar 25 21:30:21 Eden named[16477]: cache cleaning timer fired, cleaner
 state = 0

 Mar 25 21:30:22 Eden named[16477]: cache cleaning timer fired, cleaner
 state = 0

 Mar 25 22:30:21 Eden named[16477]: cache cleaning timer fired, cleaner
 state = 0

 Mar 25 22:30:22 Eden named[16477]: cache cleaning timer fired, cleaner
 state = 0



 Copyright (c) 1992-2008 The FreeBSD Project.

 Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994

 The Regents of the University of California. All rights
 reserved.

 FreeBSD is a registered trademark of The FreeBSD Foundation.

 FreeBSD 6.3-RELEASE-p1 #3: Tue Mar 25 23:49:58 CDT 2008

 [EMAIL PROTECTED]:/usr/obj/usr/src/sys/THE-IRC

 Timecounter i8254 frequency 1193182 Hz quality 0

 CPU: Intel(R) Pentium(R) 4 CPU 3.00GHz (3013.55-MHz 686-class CPU)

   Origin = GenuineIntel  Id = 0xf41  Stepping = 1


 Features=0xbfebfbffFPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MC
A ,CMOV,PAT,PSE36,CLFLUSH,DTS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE

   Features2=0x441dSSE3,RSVD2,MON,DS_CPL,CNXT-ID,xTPR

   Logical CPUs per core: 2

 real memory  = 1072627712 (1022 MB)

 avail memory = 1042665472 (994 MB)

 ACPI APIC Table: AMIINT INTEL865

 ioapic0 Version 2.0 irqs 0-23 on motherboard

 kbd1 at kbdmux0

 acpi0: AMIINT INTEL865 on motherboard

 acpi0: Power Button (fixed)

 Timecounter ACPI-fast frequency 3579545 Hz quality 1000

 acpi_timer0: 24-bit timer at 3.579545MHz port 0x808-0x80b on acpi0

 cpu0: ACPI CPU on acpi0

 acpi_throttle0: ACPI CPU Throttling on cpu0

 acpi_button0: Power Button on acpi0

 pcib0: ACPI Host-PCI bridge port 0xcf8-0xcff on acpi0

 pci0: ACPI PCI bus on pcib0

 agp0: Intel 82865G (865G GMCH) SVGA controller port 0xec00-0xec07 mem
 0xf000-0xf7ff,0xffe8-0xffef irq 16 at device 2.0 on pci0

 agp0: detected 892k stolen memory

 agp0: aperture size is 128M

 pci0: serial bus, USB at device 29.0 (no driver attached)

 pci0: serial bus, USB at device 29.1 (no driver attached)

 pci0: serial bus, USB at device 29.2 (no driver attached)

 pci0: serial bus, USB at device 29.3 (no driver attached)

 pci0: serial bus, USB at device 29.7 (no driver attached)

 pcib1: ACPI PCI-PCI bridge at device 30.0 on pci0

 pci1: ACPI PCI bus on pcib1

 fxp0: Intel 82550 Pro/100 Ethernet port 0xcc00-0xcc3f mem
 0xffcfe000-0xffcfefff,0xffca-0xffcb irq 18 at device 2.0 on pci1

 miibus0: MII bus on fxp0

 inphy0: i82555 10/100 media interface on miibus0

 inphy0:  10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto

 fxp0: Ethernet address: 00:02:b3:4c:ac:fe

 isab0: PCI-ISA bridge at device 31.0 on pci0

 isa0: ISA bus on isab0

 atapci0: Intel ICH5 UDMA100 controller port
 0x1f0-0x1f7,0x3f6,0x170-0x177,0x376,0xfc00-0xfc0f at device 31.1 on pci0

 ata0: ATA channel 0 on atapci0

 ata1: ATA channel 1 on atapci0

 pci0: serial bus, SMBus at device 31.3 (no driver attached)

 atkbdc0: Keyboard controller (i8042) port 0x60,0x64 irq 1 on acpi0


Re: help for a wounded disk drive...

2008-03-21 Thread Dimitri Yioulos
On Friday 21 March 2008 1:39 pm, William Bulley wrote:
 I damaged a Seagate 80 GB EIDE drive that was attached to a FreeBSD 5.4
 system (as ufs) some time ago, and I would like to recover the data on
 this drive - if that is possible.  All positive suggestions are welcome.

 The drive is mechanically and electrically good.  I just can't mount it
 and use it under FreeBSD.  It was a dual boot drive with a DOS partition
 on the first partition and FreeBSD 5.4 on partition two.  I did the normal
 sysinstall for FreeBSD 5.5 as I had done many times before.  Unfortunately,
 I had the older, FreeBSD 5.4 drive cabled up (and powered up) on the second
 IDE channel (using cable select) of an i386 motherboard while I did the 5.5
 install on a new, blank drive on the first IDE channel.

 I told sysinstall to add the standard FreeBSD bootloader on the new drive.
 I don't recall if I allowed for a DOS partition or just used the entire
 disk. The FreeBSD 5.4 disk on the second IDE channel also had the standard
 FreeBSD bootloader from my earlier sysinstall of 5.4 on that disk.

 When I completed the install, I figured I could just mount the second
 (older) drive manually.  When I tried to do this, things went from bad to
 worse, and the new system could never recognize the drive.  I believe the
 installation process attempted to (or succeeded in) putting (an
 unnecessary) bootloader on the older drive.  Had it not been connected, it
 would probably be okay today. I learned an important lesson at that time...

 I don't know what steps to take to recover this drive so I can mount it in
 a read-only mode.  I just want to recover the files on this drive.  It is
 very small by today's standards, so I will likely not use the drive in
 production.

 I am comfortable running any required shell commands (as root), but I don't
 want to damage the disk drive any further.  I hope I don't have to resort
 to using dd(1) on the raw device!  Thanks in advance for any pointers.

 Regards,

 web...

 --
 William Bulley Email: [EMAIL PROTECTED]


If it's just a matter of grabbing data off this drive, would a live rescue CD 
such as Reci=overy Is Possible be of help to you?

Dimitri

-- 
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.

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


Re: FreeBSD 7.0 and VMware tools (was Re: FreeBSD 7RC2 and VMware tools)

2008-03-06 Thread Dimitri Yioulos
On Wednesday 05 March 2008 8:44 am, Ivan Voras wrote:
 Dimitri Yioulos wrote:
  On Tuesday 04 March 2008 12:22 pm, [EMAIL PROTECTED] wrote:
  It seems that everybody tries to hack around the problem...:)
 
  Does somebody know if this is a FreeBSD problem or a VMware problem and
  who should fix it, resp. when is a fix expected?
 
  I mean, in 6.x the VMware tools just work.
 
  That would, indeed, be good to know.

 Um, I've read this thread and I still don't get what is the supposed
 problem is here? I'm using VMWare all the time with FreeBSD since 6.0
 and here are my experiences:

 - The only thing that VMWare tools are useful (on FreeBSD) is to get GUI
 features like clipboard sharing and automatic mouse focus grab in X.Org.
 VMWare tools on Linux seem to include a driver that does something with
 memory management, but it's not available for FreeBSD. You don't need
 VMWare Tools for the following things to work: networking, timer, X.Org
 GUI. - Networking is handled by the le driver (in the old versions of
 FreeBSD there was lnc) or the em driver. These two will work without any
 special configuration of FreeBSD. To use the em driver, you might need to
 modify the VM configuration to include ethernet0.virtualDev = e1000  or
 a similar appropriate line. To use the VMWare vmxnet driver (which as far
 as I can see isn't much different than the le driver), you need to build a
 kernel without the le driver first.
 - Timer problems can be lessened (never solved, even with vmware tools)
 by reducing kern.hz to something like 50 or 100 Hz (in loader.conf), and
 installing ntpd.
 - X.Org can use the generic vmware display driver which is included in
 the default X.Org collection of drivers. Mouse, etc. are also handled
 generically.

 Don't expect great performance, but if you're using VM technology you're
 used to it.


Thank you, Ivan!  Very insightful post on the issue.  As you may know, the 
documentation regarding VMware Server and FreeBSD isn't great (one of the 
burdens we bear :-)  ).  It's not clear about the NIC driver at all; the 
installed le0 iface is working just fine as it is.  I've also got the GUI 
working, but for the most part, it's worthless.  I just thought it best to 
use the the included VMware Tools, as per VMware.

My thanks, also, to everyone else who responded.  Much appreciated.

Dimitri

-- 
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.

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


Re: Lib Errors After 6.3 - 7 Update

2008-03-06 Thread Dimitri Yioulos
On Tuesday 04 March 2008 9:15 pm, you wrote:
 On Tue, 4 Mar 2008 16:16:44 -0500

 Dimitri Yioulos [EMAIL PROTECTED] wrote:
  Perhaps someone has a better suggestion for you, but I had a similar
  issue with regard to installing VMware Tools.  In my case, I symlinked
  libc.so.5 linked to libc.so.6, and the VMware Tools installation
  proceeded.

 Like Kris said, not really good. An option may be, if you want to limit
 your exposure to compatibility issues, is to use libmap.conf , so you only
 map libc.so.6 as .5 ONLY for certain executables/libraries that depend on
 them.

 I find it this method a much better one to managed - one central place to
 manage library tricks, and is more advanced than symlinking. And you can
 easily transfer it to other systems

 B

 _
 {Beto|Norberto|Numard} Meijome


Thank you, Beto, for increasing my knowledge.  I'll take a look at libmap.conf 
and read any extant info on it.

Dimitri

-- 
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.

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


Re: FreeBSD 7.0 and VMware tools (was Re: FreeBSD 7RC2 and VMware tools)

2008-03-04 Thread Dimitri Yioulos
On Monday 03 March 2008 2:33 pm, Michael C. Cambria wrote:
 Dimitri Yioulos wrote:
   I've followed a
  couple of posts in other forums (or fora, if you prefer :-)  ) that
  suggest using the e1000 NIC driver (e.g.
  communities.vmware.com/message/352504), but it fails.  This is the last
  piece I need to make work.  Suggestions?

 What's the problem you see?

 All I've ever needed to do was edit my .vmx file and add:

 ethernet0.virtualDev = e1000

 MikeC


 ___

So, Mike, do I do nothing with the ifconfig_le0= line in /etc/rc.conf?  The 
post I read said to change it to ifconfig_em0= ..., but that didn't seem to 
work.

Thanks.

Dimitri

-- 
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.

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


Re: FreeBSD 7.0 and VMware tools (was Re: FreeBSD 7RC2 and VMware tools)

2008-03-04 Thread Dimitri Yioulos
On Tuesday 04 March 2008 9:51 am, Dimitri Yioulos wrote:
 On Monday 03 March 2008 2:33 pm, Michael C. Cambria wrote:
  Dimitri Yioulos wrote:
I've followed a
   couple of posts in other forums (or fora, if you prefer :-)  ) that
   suggest using the e1000 NIC driver (e.g.
   communities.vmware.com/message/352504), but it fails.  This is the last
   piece I need to make work.  Suggestions?
 
  What's the problem you see?
 
  All I've ever needed to do was edit my .vmx file and add:
 
  ethernet0.virtualDev = e1000
 
  MikeC
 
 
  ___

 So, Mike, do I do nothing with the ifconfig_le0= line in /etc/rc.conf? 
 The post I read said to change it to ifconfig_em0= ..., but that didn't
 seem to work.

 Thanks.

 Dimitri


More info. - I added ethernet0.virtualDev = e1000 to the vmx file and 
rebooted the FBSD server.  I have network connectivity, but a check of dmesg 
shows the following:

le0: AMD PCnet-PCI port 0x1400-0x147f irq 18 at device 17.0 on pci0

So, am I not using the virtual e1000?

Dimitri

-- 
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.

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


Re: FreeBSD 7.0 and VMware tools (was Re: FreeBSD 7RC2 and VMware tools)

2008-03-04 Thread Dimitri Yioulos
On Tuesday 04 March 2008 12:22 pm, [EMAIL PROTECTED] wrote:
 It seems that everybody tries to hack around the problem...:)

 Does somebody know if this is a FreeBSD problem or a VMware problem and
 who should fix it, resp. when is a fix expected?

 I mean, in 6.x the VMware tools just work.

 Iv

That would, indeed, be good to know.

Dimitri

-- 
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.

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


Re: Lib Errors After 6.3 - 7 Update

2008-03-04 Thread Dimitri Yioulos
On Tuesday 04 March 2008 3:32 pm, Robert Davison wrote:
 I've tried to update 6.3 to 7 using the sh freebsd-update.sh -f
 freebsd-update.conf -r 7.0-RELEASE upgrade process. I thought all had gone
 well untill I started getting lib-XXX.so4 missing file here and libphp.so
 missing there. I'm guessing that the update process has deleatd some shared
 libararies which are still required.

 I have the files in question, but instead of XXX.so.4, the file is called
 XXX.so.5

 I followed the instructions to the 'T' but nothing seems to work i.e
 MailScanner, apache etc.

 I've tried portupgrade -af to see if I can link the ports to the new lib
 files, but alas nothing.

 Anyone got any ideas??



Perhaps someone has a better suggestion for you, but I had a similar issue 
with regard to installing VMware Tools.  In my case, I symlinked libc.so.5 
linked to libc.so.6, and the VMware Tools installation proceeded.

HTH.

Dimitri

-- 
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.

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


Re: Lib Errors After 6.3 - 7 Update

2008-03-04 Thread Dimitri Yioulos
On Tuesday 04 March 2008 4:20 pm, Kris Kennaway wrote:
 Dimitri Yioulos wrote:
  On Tuesday 04 March 2008 3:32 pm, Robert Davison wrote:
  I've tried to update 6.3 to 7 using the sh freebsd-update.sh -f
  freebsd-update.conf -r 7.0-RELEASE upgrade process. I thought all had
  gone well untill I started getting lib-XXX.so4 missing file here and
  libphp.so missing there. I'm guessing that the update process has
  deleatd some shared libararies which are still required.
 
  I have the files in question, but instead of XXX.so.4, the file is
  called XXX.so.5
 
  I followed the instructions to the 'T' but nothing seems to work i.e
  MailScanner, apache etc.
 
  I've tried portupgrade -af to see if I can link the ports to the new lib
  files, but alas nothing.
 
  Anyone got any ideas??
 
  Perhaps someone has a better suggestion for you, but I had a similar
  issue with regard to installing VMware Tools.  In my case, I symlinked
  libc.so.5 linked to libc.so.6, and the VMware Tools installation
  proceeded.

 Ah yes, I forgot about bogus advice option 2 :-)

 Kris
 ___

As I said, someone might have a better suggestion, as I'm a relative noob.  My 
point was to try symlinking your needed library file to that which you find 
on your system.  I'd think it'd be worth a try.  But, hey, if it's bogus 
advice (option 2  :-)  ), then best of luck.

-- 
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.

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


Re: Lib Errors After 6.3 - 7 Update

2008-03-04 Thread Dimitri Yioulos
On Tuesday 04 March 2008 4:53 pm, Kris Kennaway wrote:
 Dimitri Yioulos wrote:
  On Tuesday 04 March 2008 4:20 pm, Kris Kennaway wrote:
  Dimitri Yioulos wrote:
  On Tuesday 04 March 2008 3:32 pm, Robert Davison wrote:
  I've tried to update 6.3 to 7 using the sh freebsd-update.sh -f
  freebsd-update.conf -r 7.0-RELEASE upgrade process. I thought all had
  gone well untill I started getting lib-XXX.so4 missing file here and
  libphp.so missing there. I'm guessing that the update process has
  deleatd some shared libararies which are still required.
 
  I have the files in question, but instead of XXX.so.4, the file is
  called XXX.so.5
 
  I followed the instructions to the 'T' but nothing seems to work i.e
  MailScanner, apache etc.
 
  I've tried portupgrade -af to see if I can link the ports to the new
  lib files, but alas nothing.
 
  Anyone got any ideas??
 
  Perhaps someone has a better suggestion for you, but I had a similar
  issue with regard to installing VMware Tools.  In my case, I symlinked
  libc.so.5 linked to libc.so.6, and the VMware Tools installation
  proceeded.
 
  Ah yes, I forgot about bogus advice option 2 :-)
 
  Kris
  ___
 
  As I said, someone might have a better suggestion, as I'm a relative
  noob.  My point was to try symlinking your needed library file to that
  which you find on your system.  I'd think it'd be worth a try.  But, hey,
  if it's bogus advice (option 2  :-)  ), then best of luck.

 The reason it's bogus is because we change library versions for good
 reason: they are incompatible.

 Sometimes they are incompatible in obvious ways, sometimes in subtle
 ways.  If you need libc.so.5 to run a FreeBSD 5.x binary, install the
 compat5x port.  That is not the solution for the OP though, because at
 this point he has binaries with an inconsistent set of libraries that
 needs to be fixed by moving them all to 7.0.

 Kris
 ___


Accepted.  Thanks for the edification.

-- 
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.

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


Re: FreeBSD 7.0 and VMware tools (was Re: FreeBSD 7RC2 and VMware tools)

2008-02-29 Thread Dimitri Yioulos
On Thursday 28 February 2008 9:54 pm, John Nielsen wrote:
 On Thursday 28 February 2008 09:48:43 pm Sean Cavanaugh wrote:
  which version of the guest tool should I be installing for VMWare
  Server 1.0.4?
  guestd5 and guestd6 both core dump.

 I haven't actually tried to use any version from the ports recently,
 opting instead to manually use the tarball on the CD that gets inserted
 when you select the Install VMware Tools option in the host.

 JN

  --
  From: [EMAIL PROTECTED]
  Sent: Thursday, February 28, 2008 9:56 AM
  To: freebsd-questions@freebsd.org
  Subject: Re: FreeBSD 7.0 and VMware tools (was Re: FreeBSD 7RC2 and
  VMware tools)
 
   Barry Byrne wrote:
   I've had no problem installing the tools via the ports on 7.0
   release on ESX
   server 3.0.1.
  
   ...
  
   cd /usr/ports/emulators/vmware-guestd6/
   make clean install
  
   reboot.
  
   I was thinking about the ports. How does the ports version compare to
   the official coming with the VMware?
  
   Iv

(Not sure if top-posting is frowned on here, but I'll follow the convention 
used by other lists I subscribe to, and continue this here.)

Mine has been a long, strange trip in installing and making VMware Tools work 
on FBSD 7.0.  My latest go has me 
installing /usr/ports/emulators/vmware-guestd6/, then the VMware-supplied 
tools.  I've already mentioned that I had to symlink libc.so.6 to get the 
VMware version to run.  I also had to symlink /lib/libm.so.4 
to /lib/libm.so.5 in order to get vmware-toolbox to work.  I've followed a 
couple of posts in other forums (or fora, if you prefer :-)  ) that suggest 
using the e1000 NIC driver (e.g. communities.vmware.com/message/352504), but 
it fails.  This is the last piece I need to make work.  Suggestions?

Thanks.

Dimitri

-- 
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.

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


Re: FreeBSD 7RC2 and VMware tools

2008-02-27 Thread Dimitri Yioulos
On Monday 18 February 2008 5:02 pm, Dimitri Yioulos wrote:
 On Mon, 18 Feb 2008 15:58:26 -0500, John Nielsen wrote

  On Monday 18 February 2008 01:47:14 pm Dimitri Yioulos wrote:
   On Mon, 18 Feb 2008 13:29:28 -0500, John Nielsen wrote
  
On Monday 18 February 2008 12:31:37 pm Dimitri Yioulos wrote:
 On Sun, 17 Feb 2008 22:44:17 -0500, John Nielsen wrote

  On Sunday 17 February 2008 01:06:28 pm Dimitri Yioulos wrote:
   I'm not sure whether to have posted this here or on a VMware
   list; apologies if I'm in the wrong place.
  
   The other day, I did a fresh install of v. 7RC2 from the
   minimal CD on a CentOS 5.1 box running VMware server 1.0.4.  I
   had previously successfully installed v. 6.2, and upgraded to
   6.3 on the same box. All has gone well, except for the
   installation of VMware Tools. Getting the Tools tarball and
   extracting the requisite files was trivial. However, when I try
   to run Vmware-Config-Tools.pl, I get a message saying that the
   program must be run on a virtual machine. Well, it is.  Is
   there a needed FBSD package I'm missing (the Tools install
   program doesn't complain about it).  A known issue, or bug,
   maybe?  Or is VMware support not yet enabled?  Help would be
   greatly appreciated.
 
  I just went through almost the same thing, installing FreeBSD 7
  under VMware Workstation on Windows. The config-tools script has
  a hard-coded version check which looks for libc.so.6 under /lib
  only. Rather than mess with the script, I just hard-linked the
  library from /usr/local/lib/compat (where it was installed by the
  compat6x port). Seemed to work fine after that. You'll need to be
  careful not to erase it if you ever run make delete-old-libs,
  though.

 Thanks for the response!

 A symlink won't do for the above?
   
Try it and see! I think I decided on a hard link since the script
uses something like if [ -f /lib/libc.so.6 ] so it's looking only
for a regular file and not a symlink.
  
   Hmm, when I try to hard-link (ln /usr/compat/linux/lib/libc.so.6
   libc.so.6), I get ln: ./libc.so.6: Cross-device link.  But, when I
   do a symlink, which takes, I get /usr/libexec/ld-elf.so.1: Shared
   object ld-linux.so.2 not found, required by libc.so.6 when i run
   vmware-config-tools.pl.  So, I symlink ld-linux.so.2, and run tools.
   Then, I get /usr/libexec/ld-elf.so.1: Undefined symbol __stdoutp
   referenced from COPY relocation in /usr/local/sbin/vmware-checkvm.
   Arrgh.  Any other ideas?
 
  You have /usr on a different partition than / in your VM, so you can't do
  a hard link. I would just copy the file back to /lib and not worry about
  it. Linking in other random libraries will cause problems, as you've
  observed.
 
  JN

 If I copy libc.so.6 to /lib, then tools complains about ld-linux.so.2.  If
 I copy ld-linux.so.2, it then complains about /usr/libexec/ld-elf.so.1:
 Undefined symbol __stdoutp referenced from COPY relocation in
 /usr/local/sbin/vmware-checkvm.  This is pretty much the same as if I
 symlink the two files.  Even though I'm a glass half-full guy, this is
 beginning to look dire (but it's the worst thing to happen to me, I'm sure
 I'll live).  Still, it would be nice to get this working.

I did this a few days ago:

/lib/libc.so. existed.  I symlinked libc.so.6 to it.  I then proceeded to 
install VMware Tools without complaint.

However, I'm not sure if there's a vmware FreeBSD NIC driver.  If there is, 
it's not being used (as per dmesg, the AMD PCnet-PCI driver appears to be 
used).  On a Linux vm (please, no stone throwing  :-)  ), to use the vmxnet 
driver, I'd stop the network service, load the vmxnet driver module, then 
restart the service.  Is there a similar procedure on FreeBSD?

Thanks.

Dimitri

-- 
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.

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


Re: FreeBSD 7RC2 and VMware tools

2008-02-18 Thread Dimitri Yioulos
On Mon, 18 Feb 2008 13:29:28 -0500, John Nielsen wrote
 On Monday 18 February 2008 12:31:37 pm Dimitri Yioulos wrote:
  On Sun, 17 Feb 2008 22:44:17 -0500, John Nielsen wrote
 
   On Sunday 17 February 2008 01:06:28 pm Dimitri Yioulos wrote:
I'm not sure whether to have posted this here or on a VMware list;
apologies if I'm in the wrong place.
   
The other day, I did a fresh install of v. 7RC2 from the minimal CD
on a CentOS 5.1 box running VMware server 1.0.4.  I had previously
successfully installed v. 6.2, and upgraded to 6.3 on the same box.
All has gone well, except for the installation of VMware Tools.
Getting the Tools tarball and extracting the requisite files was
trivial. However, when I try to run Vmware-Config-Tools.pl, I get a
message saying that the program must be run on a virtual machine.
Well, it is.  Is there a needed FBSD package I'm missing (the Tools
install program doesn't complain about it).  A known issue, or bug,
maybe?  Or is VMware support not yet enabled?  Help would be
greatly appreciated.
  
   I just went through almost the same thing, installing FreeBSD 7 under
   VMware Workstation on Windows. The config-tools script has a
   hard-coded version check which looks for libc.so.6 under /lib only.
   Rather than mess with the script, I just hard-linked the library
   from /usr/local/lib/compat (where it was installed by the compat6x
   port). Seemed to work fine after that. You'll need to be careful not
   to erase it if you ever run make delete-old-libs, though.
 
  Thanks for the response!
 
  A symlink won't do for the above?
 
 Try it and see! I think I decided on a hard link since the script uses 
 something like if [ -f /lib/libc.so.6 ] so it's looking only for a 
 regular file and not a symlink.
 
 JN
 
 -- 


Hmm, when I try to hard-link (ln /usr/compat/linux/lib/libc.so.6 libc.so.6), 
I get
ln: ./libc.so.6: Cross-device link.  But, when I do a symlink, which takes, I 
get
/usr/libexec/ld-elf.so.1: Shared object ld-linux.so.2 not found, required by
libc.so.6 when i run vmware-config-tools.pl.  So, I symlink ld-linux.so.2, 
and run
tools.  Then, I get /usr/libexec/ld-elf.so.1: Undefined symbol __stdoutp 
referenced
from COPY relocation in /usr/local/sbin/vmware-checkvm.  Arrgh.  Any other 
ideas?

-- 
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.

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


Re: FreeBSD 7RC2 and VMware tools

2008-02-18 Thread Dimitri Yioulos
On Mon, 18 Feb 2008 15:58:26 -0500, John Nielsen wrote
 On Monday 18 February 2008 01:47:14 pm Dimitri Yioulos wrote:
  On Mon, 18 Feb 2008 13:29:28 -0500, John Nielsen wrote
 
   On Monday 18 February 2008 12:31:37 pm Dimitri Yioulos wrote:
On Sun, 17 Feb 2008 22:44:17 -0500, John Nielsen wrote
   
 On Sunday 17 February 2008 01:06:28 pm Dimitri Yioulos wrote:
  I'm not sure whether to have posted this here or on a VMware
  list; apologies if I'm in the wrong place.
 
  The other day, I did a fresh install of v. 7RC2 from the
  minimal CD on a CentOS 5.1 box running VMware server 1.0.4.  I
  had previously successfully installed v. 6.2, and upgraded to
  6.3 on the same box. All has gone well, except for the
  installation of VMware Tools. Getting the Tools tarball and
  extracting the requisite files was trivial. However, when I try
  to run Vmware-Config-Tools.pl, I get a message saying that the
  program must be run on a virtual machine. Well, it is.  Is
  there a needed FBSD package I'm missing (the Tools install
  program doesn't complain about it).  A known issue, or bug,
  maybe?  Or is VMware support not yet enabled?  Help would be
  greatly appreciated.

 I just went through almost the same thing, installing FreeBSD 7
 under VMware Workstation on Windows. The config-tools script has
 a hard-coded version check which looks for libc.so.6 under /lib
 only. Rather than mess with the script, I just hard-linked the
 library from /usr/local/lib/compat (where it was installed by the
 compat6x port). Seemed to work fine after that. You'll need to be
 careful not to erase it if you ever run make delete-old-libs,
 though.
   
Thanks for the response!
   
A symlink won't do for the above?
  
   Try it and see! I think I decided on a hard link since the script
   uses something like if [ -f /lib/libc.so.6 ] so it's looking only
   for a regular file and not a symlink.
 
  Hmm, when I try to hard-link (ln /usr/compat/linux/lib/libc.so.6
  libc.so.6), I get ln: ./libc.so.6: Cross-device link.  But, when I
  do a symlink, which takes, I get /usr/libexec/ld-elf.so.1: Shared
  object ld-linux.so.2 not found, required by libc.so.6 when i run
  vmware-config-tools.pl.  So, I symlink ld-linux.so.2, and run tools. 
  Then, I get /usr/libexec/ld-elf.so.1: Undefined symbol __stdoutp
  referenced from COPY relocation in /usr/local/sbin/vmware-checkvm. 
  Arrgh.  Any other ideas?
 
 You have /usr on a different partition than / in your VM, so you can't do 
 a hard link. I would just copy the file back to /lib and not worry about 
 it. Linking in other random libraries will cause problems, as you've 
 observed.
 
 JN


If I copy libc.so.6 to /lib, then tools complains about ld-linux.so.2.  If I 
copy
ld-linux.so.2, it then complains about /usr/libexec/ld-elf.so.1: Undefined 
symbol
__stdoutp referenced from COPY relocation in /usr/local/sbin/vmware-checkvm. 
 This is
pretty much the same as if I symlink the two files.  Even though I'm a glass 
half-full
guy, this is beginning to look dire (but it's the worst thing to happen to me, 
I'm sure
I'll live).  Still, it would be nice to get this working.


-- 
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.

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


FreeBSD 7RC2 and VMware tools

2008-02-17 Thread Dimitri Yioulos
Hello to all.

I'm not sure whether to have posted this here or on a VMware list; apologies if 
I'm in
the wrong place.

The other day, I did a fresh install of v. 7RC2 from the minimal CD on a CentOS 
5.1 box
running VMware server 1.0.4.  I had previously successfully installed v. 6.2, 
and
upgraded to 6.3 on the same box.  All has gone well, except for the 
installation of
VMware Tools.  Getting the Tools tarball and extracting the requisite files was 
trivial.
 However, when I try to run Vmware-Config-Tools.pl, I get a message saying that 
the
program must be run on a virtual machine.  Well, it is.  Is there a needed FBSD 
package
I'm missing (the Tools install program doesn't complain about it).  A known 
issue, or
bug,  maybe?  Or is VMware support not yet enabled?  Help would be greatly 
appreciated.

Thanks.

Dimitri

-- 
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.

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