Search results

  1. draco003

    Installation fails with encryption on ZFS

    When you load the bootpool using this command zpool import -f bootpool do you see any files under /boot ? Please note that my steps were tested on a FreeBSD 10.0-RELEASE.
  2. draco003

    Installation fails with encryption on ZFS

    I had the exact problem after I lost power to my laptop and I couldn't boot into my system, just like you! So here is what I did to get back in: I used a FreeBSD 10.0-RELEASE Live CD (it was a bootonly -- to minimize download) Boot into the CD and choose "Live CD" from the options. (log in as...
  3. draco003

    RootOnZFS issue with boot after power down

    Peace! I'm using FreeBSD 10.0-RELEASE with RootOnZFS and full disk encryption. I had a problem booting after power down, with a kernel panic after boot message (just after entering GELI passphrase). So here is what I did to get back in. I used a FreeBSD 10.0-RELEASE Live CD (it was a bootonly I...
  4. draco003

    Problems with qmake

    Just in case someone stumbles upon this. If you are using FreeBSD 10 and installed qmake5; it's not in the default $PATH. You can get the path for its binaries using: pkg info -l qt5-qmake | grep bin For my setup it's: /usr/local/lib/qt5/bin/qmake
  5. draco003

    aterm and FreeBSD10

    Thanks for sharing.
  6. draco003

    PPP config for ZTE MF190S 3G Modem

    Hello, I'm having a problem with user-land ppp using a 3G USB Modem ZTE (MF190S). The modem is successfully recognized as a u3g device. I could also talk to the device manually and chat to it using AT commands, as far as I could go where it replies with CONNECT 7200000, but no further as it...
  7. draco003

    Parallella Pre-Orders Now Open!

    Peace, The Parallella 16-core board pre-orders are now available, they say October delivery. I can't wait to get one of these and run it on FreeBSD or perhaps a nanoBSD or tinyBSD not sure? :e I was wondering if anyone gave it a try before with the Epiphany processors? OpenCL and C will...
  8. draco003

    net.inet.ip.fw.dyn_max in sysctl.conf

    You are welcome. Glad it worked anyway.
  9. draco003

    net.inet.ip.fw.dyn_max in sysctl.conf

    According to the sysctl you might want to add it to the /boot/loader.conf net.inet.ip.fw.dyn_max=65535 Because some of the variables cannot be modified during normal system operation, but they can be initialized via loader by setting them in loader.conf
  10. draco003

    IPFW divert on layer2 (bridged)

    So I contacted some of guys on -IPFW and -net. Alter was willing to help and he also got some very interesting patches to commit. http://www2.alter.org.ua/en/soft/fbsd/ipfw/ Gleb was also very helpful and supplied this some old but helpful patch: https://github.com/glk/l2filter/ I finished...
  11. draco003

    IPFW divert on layer2 (bridged)

    Peace, I'm working on adding support for layer2 diverts in IPFW for FreeBSD 9.0 - I'm going through some patches submitted in 2006 that adds L2 diverts to IPFW, but it was coded for 6.x I believe (by Julian Elischer). And it works on the old bridge.c which was retired as of RELEASE-7.0 and was...
  12. draco003

    HOWTO: FTDI bitbang mode on FreeBSD

    Yes that would be great, I'd be very grateful if you could share it with me. So the problem on my end when using the FT232R chip with avrdude I get this error: Unknown type 3 (0x3) Thanks to Joerg Wunsch he pointed out the following: Which is true. So I'm looking into this patch by David...
  13. draco003

    HOWTO: FTDI bitbang mode on FreeBSD

    This is interesting, I'm sure I'll play around with it =) I'm also working on flashing some ATmega328 chips using devel/avrdude and the FTDI chip, still having some problems with avrdude.conf, but thanks to Joerg Wunsch he gave me some instructions in reply to my email yesterday, so I'll get...
  14. draco003

    HOWTO: FTDI bitbang mode on FreeBSD

    Hello =) I'd like to give a simple introduction on using FTDI chips in bitbang mode based on this post on Hack a Day. For the hardware we will be using the "Breakout Board for FT232RL USB to Serial" from Sparkfun, of course you can use any flavor of FTDI ICs. Also we will need to get the...
  15. draco003

    Can't automount SD card

    Thanks SirDice I will take a look. Yes my bad DutchDaemon it's the /etc/fstab, thanks for the clarification buddy.
  16. draco003

    IPFW natd problem

    Yes agreed Tell us if it works gats
  17. draco003

    Can't automount SD card

    Is there anything custom for FreeBSD using devd? I read something about automount daemon (amd) in FreeBSD in this article
  18. draco003

    Can't automount SD card

    Probably check the fstab command. Check the Handbook: http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mount-unmount.html and check these results below: https://duckduckgo.com/?q=FreeBSD+automount+fstab Enjoy =)
  19. draco003

    CGI-BIN Timeout Question with Python

    Have you tried changing the subprocess command to work on bash instead of invoking python? Try this: proc = subprocess.Popen(['/usr/local/bin/bash', '-c', 'tests.py'], stdout=subprocess.PIPE) Enjoy =)
  20. draco003

    IPFW natd problem

    Since internal ip is 169.254.0.101 then on the other network card change IPs to the range 10.0.0.XXX or any other recommended. Also change your default gateway on the client to the 10.0.0.XXX (IP of the other network card run on FreeBSD) If I understood correctly then this is what it should...
Back
Top