Search results

  1. D

    Other NVMe hot swap working?

    No luck. Couldn't re-attach the removed nvme device with nda driver either. After physically removing device dmesg showed: [362750] nvme0: Resetting controller due to a ti and possible hot unplug. [362750] nvme0: resetting controller [362750] nvme0: failing outstanding i/o [362750] nvme0...
  2. D

    Other NVMe hot swap working?

    Thank you olli! I replaced nvd driver with nda driver by adding hw.nvme.use_nvd=0 sysctl to /boot/loader.conf and rebooted. After reboot I had /dev/ndaX devices and I could see them with camcontrol devlist and nvmecontrol devlist. I tested detatching and attaching from command line without...
  3. D

    Other NVMe hot swap working?

    I encountered the same problem yesterday - removing device works but inserting NVME drive does not - nothing happens, device is not detected.
  4. D

    Advice on FONTS

    I suggest x11-fonts/dejavu, x11-fonts/droid-fonts-ttf or x11-fonts/ubuntu-font - they all include sans-serif, serif ja monospace/fixed width fonts. I suggest you also install x11-fonts/webfonts and fixed width font x11-fonts/terminus which is nice for terminals.
  5. D

    modify code in ports, but `make` doesn't know

    That would delete the modified source files, which is unwanted side effect in this case.
  6. D

    modify code in ports, but `make` doesn't know

    Remove the work/.build_done.* file.
  7. D

    Bitmap/ANSI Font Installation Help.

    Restarting X will undo your xset commands. You should add those xset commands to your ~/.xinitrc file. But this is how added the smoothansi font: 1) Placed the smoothansi.pcf.gz into my ~/.fonts directory 2) Ran mkfontdir in ~/.fonts directory (after which smoothansi.pcf.gz...
  8. D

    FreeBSD Screen Shots

    Long time no screenshot. I converted from openbox to i3 about a month ago. Here's the result: Running i3 4.3 (not from ports), using i3bar and my own script for generating items for it, dmenu for executing commands, cmus music player, xterms. Dual monitor setup, most of the action happens...
  9. D

    c++ mysql stored procedure compile error

    Include mysql_driver.h header. You didn't even bother to google the error first, did you?
  10. D

    Cyrus-sasl 2.1.25 + Mysql Problem

    Yes, dovecot can use mysql This is my postfix sasl configuration. smtpd_sasl_auth_enable = yes smtpd_sasl_security_options = noanonymous smtpd_sasl_local_domain = $myhostname broken_sasl_auth_clients = yes smtpd_sasl_type = dovecot smtpd_sasl_path = private/auth NB! For this to work postfix...
  11. D

    Cyrus-sasl 2.1.25 + Mysql Problem

    You don't have to use dovecot's IMAP and POP3, just its SASL authentication capabilities. I use postfix for SMTP, dovecot for SASL authentication and nginx as POP3/IMAP proxy on the same server. Real IMAP and POP3 services (offered by courier-imap) are on different physical servers. Just...
  12. D

    Cyrus-sasl 2.1.25 + Mysql Problem

    Is there any particular reason why you use security/cyrus-sasl2? World became much more beautiful for me when I switched from security/cyrus-sasl2 to mail/dovecot2.
  13. D

    FreeBSD Screen Shots

    Wrong thread? This is screenshots not hardware photos.
  14. D

    FreeBSD Foundation's New Project: Implement GEM/KMS/DRI for Intel Graphics

    No, you're doing it correctly, I think you have the same problem I had with patching. Read my previous post.
  15. D

    FreeBSD Foundation's New Project: Implement GEM/KMS/DRI for Intel Graphics

    I got my X220i to work with new intel graphics drivers on FreeBSD 10.0-CURRENT (csup-d @ 2011-11-21) using all.12.1.patch Initally I installed FreeBSD 8.2-RELEASE because it was the only FreeBSD version I was able to boot using USB memory stick. I upgraded it to 9.0-PRERELEASE and then to...
  16. D

    Minimalist autologin solution

    x11/slim has autologin feature.
  17. D

    Why different file systems and mount points?

    More things to consider: Different blocksizes, different mount options (noexec, nosuid, not having softupdates on / mountpoint), quotas
  18. D

    [Python] Inserting a sign after every n-th character

    There is no standard function to do that, but it's easy enough to add: string = "23edfd56ab90" print ':'.join([string[i:i+2] for i in range(0, len(string), 2)])
  19. D

    I think Python is not a secure language.

    Pseudoproblem.. configure your editor properly and python is the best language in the world
  20. D

    Nvidia driver causes Xorg lockups and strange issues with flash video.

    FYI: Without linux support in nvidia-driver MineCraft client doesn't work.
Back
Top