Re: migrate system disk

2010-09-23 Thread Philipp Lengemann
Am Wed, 22 Sep 2010 08:06:13 -0700 (PDT)
schrieb Dánielisz László laszlo_daniel...@yahoo.com:

 Hello,
 
 I have an old HDD which should be replaced soon, actually that HDD
 stands as my system disk, what is your suggesion, how should I
 migrate the FreeBSD 8.1 from the old disk to the new one?
 
 thank you!
 Laszlo


Have a look at recoverdisk(1). This should satisfy most your needs.

Regards.
___
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: External HD

2010-08-21 Thread Philipp Lengemann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Am Sat, 21 Aug 2010 20:24:14 +0300
schrieb Elias Chrysocheris elias...@cha.forthnet.gr:

 On Saturday 21 of August 2010 20:03:02 Mario Lobo wrote:
  On Saturday 21 August 2010 13:46:43 Rem P Roberti wrote:
Rem P Robertiremeg...@comcast.net  пишет:
   I have a 500GB USB HD which I am able mount thus:
  mount_ntfs /dev/da2s1 /mnt

Having done so I can copy from the external drive, but not
write to it. What is necessary to implement in order to be
able to write to an external hard drive?

Rem

use the port /usr/ports/sysutils/fusefs-ntfs
   
   Thanks for the tip.  I have installed the port and will give it a
   try, although I'm a little leery given Ryan's post.
   
   Rem
   ___
   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
  
  Don't forget to do this:
  
  cd /sbin
  mv -f mount_ntfs mount_ntfs-kern
  ln -s /usr/local/bin/ntfs-3g mount_ntfs
  
  so you can mount your ntfs disk right from fstab.
  
  I have all my vbox vdi files on an ntfs drive and I'm yet to have a
  problem with it.
 
 Well, I used to have an external NTFS hard drive. I used fusefs-ntfs
 and I could write in the drive. But there were times where the
 machine crashed and I couldn't even get a core dump. It also stoped
 durong the core dump and freezed... So I couldn't even place a PR for
 that...
 
 That was in amd64 architecture
 
 Best regards
 Elias
 ___
 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

Same problem here. Writing to NTFS with fuse-ntfs is also an experience
everytime. Don't rely on that! It brought me some nerve wracking
moments.

- -- 
GnuPG: 0x4BF7D606 | Jabber: phl...@jabber.ccc.de
- --
-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.16 (FreeBSD)

iEYEARECAAYFAkxwhv0ACgkQlOPmvEv31gYmBgCgiXfFwzJFwvEDB5igavdFlIdH
4tQAn3yjALF4/jMjE63bwF/4lOzAK+1K
=Nj/k
-END PGP SIGNATURE-
___
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: how do i automate building packages?

2009-11-29 Thread Philipp Lengemann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Am Sat, 28 Nov 2009 01:05:47 -0800
schrieb Gary Kline kl...@thought.org:

 
   How do I build tarballs of packages that usually wind up in 
   /usr/ports/packages?
 
   I thought I had something in /etc/make.conf, but nope.  My
   build of OOo [311] recently finished on my new to-be server.  
   Since both the new Dell and this older Dell are running 7.2, I
   figure I can do any builds and move the packages across.
 
   I thought I had seen foo.tgz in /usr/ports/bar/foo/; but this
   time, no expected tarball.  --??--  A man ports isn't very
   clear.  I usually type make install clean when I build
   anything.  If I have to start over from scratch with
   openoffice would I type
 
   # make install package clean? Or what?
 
   anybody?
 
 
 

If you need packages one possibility is

# pkg_info -Ea | xargs -L1 pkg_create -b 

This will build a package of every installed port.
-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.13 (FreeBSD)

iEYEARECAAYFAksS3OAACgkQlOPmvEv31gZLcQCfTYu1X9jvr6CxgrmwgrMmavnA
36UAniyHgOkTgc5eqoyi0adt91b2FcZE
=K+9t
-END PGP SIGNATURE-
___
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: Trivial questions about CNTL-ALT-DEL and CNTL-ALT-BACKSPACE

2009-11-16 Thread Philipp Lengemann
Am Sun, 15 Nov 2009 15:19:29 -0800
schrieb Ronald F. Guilmette r...@tristatelogic.com:

 I _did_ go and read the Handbook section that Manolis Kiagias
 kindly posted a link to, and I have now tried _both_ of the two
 ways described there to re-enable CNTL-ALT-BACKSPACE functionality
 for the X server, and sadly I must report that for me, at least
 _neither_ of those methods worked


Put the following to your xorg.conf:

snip
Section ServerFlags
  Option DontZap off
  Option AllowEmptyInput off
  Option AutoAddDevices  off
EndSection

Section InputDevice
  Option XkbOptions terminate:ctrl_alt_bksp
EndSection
/snip

This works for me very reliable (xorg-7.4_2).

HTH
___
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