Search results

  1. C

    Solved Various programs - libGL error: failed to open drm device

    Modify /etc/devfs.rules as follows: add path 'dri/*' mode 0666 group video add path 'drm/*' mode 0666 group video Be sure to add yourself to group video, reboot your system and see if the libGL permission denied message has gone away.
  2. C

    Solved Various programs - libGL error: failed to open drm device

    Hi, Does X load the appropriate driver? It doesn't seem to be the case here. Did you find any suspicious entries in /var/log/Xorg.0.log?
  3. C

    portsnap truncated gzip input error

    Use dig or host to list portsnap mirrors % dig -t srv _http._tcp.portsnap.freebsd.org ; <<>> DiG 9.14.4 <<>> -t srv _http._tcp.portsnap.freebsd.org ;; global options: +cmd ;; Got answer: ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 42055 ;; flags: qr rd ra; QUERY: 1, ANSWER: 6...
  4. C

    SSH is not working after freeBSD upgrade from 11.2 to 12.0

    Something went wrong upgrading FreeBSD. Did you make sure you had previously updated FreeBSD 11.2 (see the patch level table) with freebsd-update before starting the upgrade to FreeBSD 12.0?
  5. C

    The big GNOME 3 install/upgrade topic

    AFAIK there is only one active developer (Koop Mast) working on it. It may be the reason why GNOME updates take so long. https://wiki.freebsd.org/Gnome#Team_Members
  6. C

    aarch64 cromium ports not compile

    acheron I've pending to commit your patch in a couple of days as soon as we've fixed it. Thanks for your great work!
  7. C

    chromium 71 is out picture in picture crashes

    The issue has been reported upstream. https://github.com/GoogleChromeLabs/picture-in-picture-chrome-extension/issues/17
  8. C

    Where is directory components. (Chromium 71.0.3578.98_2)

    Chromium is installed in /usr/local/share/chromium but FreeBSD needs more work to be able to use widevine plugin. http://freebsd.1045724.x6.nabble.com/Google-Widevine-CDM-td6243326.html
  9. C

    PORTDOCS and relative paths

    Try the following in your Makefile DOCS= COPYING Changelog README doc/motivation.txt PORTDOCS= ${DOCS:T} do-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} cd ${WRKSRC} && ${INSTALL_DATA} ${DOCS} ${STAGEDIR}${DOCSDIR} Take in mind that you don't need to add these files to...
  10. C

    Music…

    Something to relax...
  11. C

    3com usb bluetooth

    According to the ng_ubt manpage the 3com 3CREB96 device is supported. It should work but you need to add the descriptive strings for the product IDs in /usr/src/sys/dev/usb/usbdevs % grep -r 3CREB96 /usr/src/sys/dev/usb/usbdevs product 3COM 3CREB96 0x00a0 Bluetooth USB Adapter I...
  12. C

    GIMP 2.10

    Basically because the GNOME team is the current maintainer of graphics/gimp and they are working on the GNOME update. Anyway you can try the patch and update gimp on your machine.
  13. C

    Passenger Installation Dependencies Not Found

    libapr-1.so is provided by devel/apr1 % pkg which /usr/local/lib/libapr-1.so /usr/local/lib/libapr-1.so was installed by package apr-1.6.3.1.6.1_1
  14. C

    GIMP 2.10

    As lebarondemerde has told you: GNOME blocks the Gimp update because there are some necessary dependencies that break the current GNOME version from ports. GNOME team will take care to update Gimp after closing 229761.
  15. C

    GIMP 2.10

    227769 needs to be reviewed and it must be blocked until GNOME is updated to 3.28
  16. C

    No 'Print to LPR' in Firefox print dialog

    The patch you are looking for is attached to the following message: https://lists.freebsd.org/pipermail/freebsd-gecko/2018-May/008327.html
  17. C

    Chromium conflict with xproto

    Today I've reported the problem and now this will be fixed as soon as portmgr@ changes the build timeout values in the package building clusters.
  18. C

    Chromium conflict with xproto

    Yes, you are right. I've edited my first comment to reflect this.
  19. C

    Chromium conflict with xproto

    I've seen a lot of build timeout for chromium/iridium via pkg-fallout. On my machine chromium package build takes 5 hours and 40 minutes. Poudriere kills the job if it does not end in a specific amount of time. You can configure MAX_EXECUTION_TIME and NOHANG_TIME. See...
Back
Top