Re: Gutman Method on Empty Space

2008-01-17 Thread Marc Silver
Hi there, Check out /usr/ports/security/wipe/ - It should meet your requirements. Cheers, Marc On Thu, Jan 17, 2008 at 12:10:02AM -0800, Jason C. Wells wrote: Can anyone recommend a utility for the secure overwriting of unused disc space? I am a satisfied customer of Eraser for Windows.

Re: Gutman Method on Empty Space

2008-01-17 Thread Marc Silver
Hi there, On Thu, Jan 17, 2008 at 09:22:33AM +0100, Peter Boosten wrote: Or always 'rm -P' :-) Nice... never knew about this. That said, this won't satisfy the Gutmann requirement as far as I understand it and overwriting a file three times is not considered a true secure wipe of data. This

Re: Gutman Method on Empty Space

2008-01-17 Thread Marc Silver
Hi there, On Thu, Jan 17, 2008 at 09:43:46AM +0100, Wojciech Puchar wrote: how? even single write is enough Not according to the paper that Gutmann wrote: http://www.usenix.org/publications/library/proceedings/sec96/full_papers/gutmann/ In short, he says that if you know how the data

Re: Switching username using SFTP

2008-01-13 Thread Marc Silver
Hi there, You can simply enter a command such as: $ sftp [EMAIL PROTECTED] Cheers, Marc On Sun, Jan 13, 2008 at 09:38:21AM -0500, [EMAIL PROTECTED] wrote: When I ssh into a system which has different login name from the system I'm on I use this syntax: ssh -l host.domain.com. How

Re: Unable to unmount idle filesystem on 6.2

2008-01-11 Thread Marc Silver
Hi there, Strange problem. The only thing I could possibly think of is to try and install lsof from the ports tree and see if that can identify what may be using this particular mount. Short of that, dropping to single user mode/rebooting may be your only other option as far as I am aware.

RE: Simplifying FreeBSD Installation

2004-03-08 Thread Marc Silver
Hi there, I understand what you're getting at, but I think that you may be overlooking one important fact: FreeBSD is developed by people with a passion for the operating system, who want nothing more than to make it the best they can. They volunteer their time to the project, foregoing

RE: re:make world

2004-02-25 Thread Marc Silver
Tell IPFW that you want to allow packets. You'll probably want something like: # ipfw add 00100 allow ip from any to any This will allow ALL packets, so it's not really acting as a well configured firewall, but it should fix your immediate problem. Check out rc.firewall and rc.conf for info

RE: Mail on FreeBSD

2004-02-23 Thread Marc Silver
Hi, You should take a look at IMP (http://www.horde.org/imp/) or Squirrelmail, both of which are webmail solutions, and both can be found in the ports tree. They do however, require either a POP3 or IMAP server, and a server with PHP and a few other minor dependencies. Alternatively, you could

Re: pkgs managing

2004-02-13 Thread Marc Silver
On Fri, Feb 13, 2004 at 03:23:50PM +0300, flux wrote: How do I know what package does the file belong? If you have portupgrade installed (/usr/ports/sysutils/portupgrade) you can use the pkg_which(1) command. For example: 14:32 (5) pkg_which /usr/local/bin/animate ImageMagick-5.5.7.15_1

Re: RSYNC Question; date/time restriction

2003-02-05 Thread Marc Silver
Hi there, On Tue, Feb 04, 2003 at 11:43:39PM +0100, Boris K?ster wrote: I have setup a little mirror of about 15 gig about linux/freebsd software and my problem is that I only want to get the files dated after january 2003 with rsync after getting the whole bunch of software. Is this

Re: removing all users

2003-02-05 Thread Marc Silver
Hi there, On Tue, Feb 04, 2003 at 02:31:55PM -0900, Jon Reynolds wrote: Probably a stupid question but I have a lot of users on a freebsd box and I want to remove them all at once. Is there any problem with just issueing this command in the /home directory: 'rm -i *'. Or is there a better

Re: Buildworld Failing

2003-02-05 Thread Marc Silver
Kris, On Tue, Feb 04, 2003 at 10:20:04AM -0800, Kris Kennaway wrote: You actually want 'make cleandir' What is the technical difference between 'make clean' and 'make cleandir'...? Perhaps you can clear this up for me? - Marc To Unsubscribe: send mail to [EMAIL PROTECTED] with unsubscribe

Re: Buildworld Failing

2003-02-04 Thread Marc Silver
Hi there, Did you clean out /usr/obj before you started the 'make buildworld'?? If you have previously compiled buildworld, then this is something you should do. To do this: cd /usr/obj chflags -R noschg * rm -fr /usr/obj/usr Then, 'make clean' in /usr/src and start again. Hopefully that'll

Re: Upgrading kde with ports

2002-12-03 Thread Marc Silver
Hi there, You could use /usr/ports/sysytils/portupgrade to do this... and as far as I know it can use packages instead of source... :) Good luck, Marc On Tue, Dec 03, 2002 at 05:42:08PM +1030, Ian Moore wrote: If I want to upgrade kde 3.0.3 to 3.0.5 using the packages, rather than compiling

Re: PostNuke running slow on FreeBSD

2002-09-26 Thread Marc Silver
Hi there, Out of interest, why are you using IPv6 support? Are you actually using it? I've personally had no experience with this, but perhaps that's the problem? A few things I would check: 1) See what the value for HostnameLookups is in httpd.conf -- I would suggest setting this to

Re: Connecting to mysqld

2002-09-26 Thread Marc Silver
Hi there, On Thu, Sep 26, 2002 at 03:15:28PM +0200, Carl-Johan Kihlbom wrote: It worked when i specified the host, as in: GRANT ALL ON *.* to kihlbom@localhost. So now the user kihlbom can connect from localhost. But I would prefer it if that user could connect from any host. How do I do

Re: port scanner found my SMTP / SSH is up and I didn't put them there!!!!

2002-07-24 Thread Marc Silver
? :) If it's just a new install you have nothing to worry about, since these run by default on most installations. - Marc -- Marc Silver - Systems Developer http://www.easynet.net/ Phone: +44 20 7032 2064 To Unsubscribe: send mail to [EMAIL PROTECTED] with unsubscribe freebsd-questions

Re: MySQL Installation

2002-07-22 Thread Marc Silver
Hi there, You can install this with ease using the FreeBSD ports tree. Simply cd into /usr/ports/databases/mysql323-server and type make install that'll install it all for you... :) Good luck. You'll need to consult the MySQL documentation for information on adding/creating databases