Images tagged "ultranav"

  • Pingback: MacPorts transfig-Updateproblem auf macOS Sierra lösen | Hanis Sammelsurium

  • Pingback: GNU Octave 3 auf Mac OS X El-Capitan installieren | Hanis Sammelsurium

  • Pingback: Korrekte Javas Swing Menüs im GTK LaF von Linux Mint | Hanis Sammelsurium

  • Pingback: Link in Netbeans' JDialog | Hanis Sammelsurium

  • Pingback: Automatisches Löschen des Samba-Papierkorbs auf einem FreeNAS/NAS4Free Server | Hanis Sammelsurium

  • Pingback: Erfahrungsbericht Photoshop Elements 8 (2/2) – Editor | Hanis Sammelsurium

  • Pingback: Netzwerktreiber auf FreeNAS installieren | Hanis Sammelsurium

  • Pingback: Automatisches Backup von FreeNAS Verzeichnissen | Hanis Sammelsurium

  • CLEANUP_AFTER_DAYS=90
    for PATHS in $(grep path /etc/samba/*.conf |grep “path = /” |awk ‘{ print $NF }’ |sort|uniq)
    do
    if [ -d $PATHS/.recycle/ ]
    then
    find $PATH/.recycle/* -atime +${CLEANUP_AFTER_DAYS} -exec rm -rf ‘{}’ \;
    find $PATH/.recycle/ -depth -type d -empty -exec rmdir {} \;
    fi
    done

    enjoy.

  • Pingback: swing-menu-corr auf Linux Mint 20 aktualisiert | Hanis Sammelsurium

  • Pingback: (English) Install DISLIN 10.6 on Ubuntu 16.04 Xenial Xerus | Hanis Sammelsurium

  • Pingback: 111 | Hanis Sammelsurium

  • Uralt, aber sehr hilfreich!
    Danke

  • von wem ist eigentl. dieser Artikel im Original ?
    Nur abschreiben ohne sinvolle Ergänzungen ist traurig

    • Lieber “Gast”, ich bin sachlicher Kritik durchaus aufgeschlossen. Mit deinem Kommentar weiß ich aber nichts anzufangen. Bot?

      Welchen Originalartikel? Nenn doch bitte mal die Quelle. Meine Quellen stehen alle unten im Artikel. Ich kann deinen (unsachlichen) Plagiatsvorwurf nicht nachvollziehen. Wozu auch? Ich schalte keine Werbung und Likes gibt es auch keine.

      Mein Artikel soll Anwendern, die genau das Gleiche vorhaben wie ich hatte, die mühsame Zusammensucherei der nötigen Infos ersparen und alles kompakt und möglichst vollständig in einem Artikel vorfinden. So what?

      • 🙂 Ich für meinen Teil freue mich darüber, dass jemand die Infos gesammelt und öffentlich zugänglich gemacht hat mit vielen Bildern. Denn für mich ist VBA Neuland und ich versuche mich da gerade reinzufuchsen und bin so glücklich über jede Lösung / jeden Baustein den man so im Internet finden kann!

  • Hallo,

    vielen Dank für den Tipp! Ich benutze zwar ein selbst gebasteltes NAS, aber der Hinweis auf “find” hat mich auf die richtige Idee gebracht 🙂 Auf meinem NAS gibt es viele Benutzer und mehrere Einhängepunkte. Und es war mir einfach zu nervig, die alle von Hand einzutragen – zudem wächst das Risiko, das bei einem neuen User zu vergessen. Daher hier meine Lösung als kleines Dankeschön! Beachte, dass bei “meinem” Samba die Papierkörbe “.Trash-$UID” heißen

    #!/bin/bash

    # duration in days
    DURATION=30

    TRASH=$(find /media/data-hd/ -maxdepth 2 -type d -name “.Trash-*”)

    for item in “${TRASH[@]}” ; do
    find $item/* -mtime +$DURATION -exec rm -rf ‘{}’ \;
    find $item/* -depth -type d -empty -exec rmdir {} \;
    done

  • Hallo Hani,
    ich finde diese Zusammenfassung auch super.
    Allerdings hätte ich noch, wenn möglich einen kleinen Verbesserungsvorschlag um noch weniger suchen zu müssen.
    Eine Tabelle mit den Excel-Icons und deren Name wäre noch bombastisch:-)
    Gruß DerBrain87

  • hello after trying many other options , I looked your code was working on my el captain 10.11.6 i tried following your instruction till this

    sudo port install octave -accelerate+atlas+java

    after this,in the end I get this
    Attempting to fetch texlive-pictures-54512_0+doc.darwin_15.noarch.tbz2 from http://atl.us.packages.macports.org/texlive-pictures
    Error: Failed to archivefetch texlive-pictures: version @54512_0+doc: Could not resolve host: atl.us.packages.macports.org
    Error: See /opt/local/var/macports/logs/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_tex_texlive-pictures/texlive-pictures/main.log for details.
    Error: Follow https://guide.macports.org/#project.tickets if you believe there
    is a bug.
    Error: Processing of port octave failed
    —> Some of the ports you installed have notes:
    gawk has the following notes:
    readline support has been removed from gawk. If you need to run gawk
    interactively, install rlwrap:

    sudo port install rlwrap

    and run gawk using rlwrap:

    rlwrap gawk …
    grep has the following notes:
    This port previously installed itself without a g* prefix, thus
    overshadowing system binaries such as grep, fgrep, and egrep. The port is
    now changed so that it does install with a g* prefix, like other GNU ports.
    This means that you’ll now find GNU grep at /opt/local/bin/ggrep. If you
    dislike typing ggrep, you can create a shell alias or you can add
    /opt/local/libexec/gnubin to your PATH, wherein non-g* prefixed symlinks are
    installed. In other words, /opt/local/libexec/gnubin contains GNU binaries
    without any prefix to the file names, so you can type grep and get GNU grep
    just as before.
    hdf5 has the following notes:
    Mac users may need to set the environment variable “HDF5_USE_FILE_LOCKING”
    to the five-character string “FALSE” when accessing network mounted files.
    This is an application run-time setting, not a configure or build setting.
    Otherwise errors such as “unable to open file” or “HDF5 error” may be
    encountered.
    legacy-support has the following notes:
    To help make sure your system continues to be well represented by MacPorts,
    especially if your system is not one of the latest macOS releases, please
    consider installing mpstats. It will periodically send an anonymous synopsis
    of your OS settings and installed ports. The information provided by this is
    useful to help determine how resources are allocated.

    You can install mpstats like this: sudo port install mpstats
    libidn has the following notes:
    Please be aware that GNU libidn2 is the successor of GNU libidn. It comes
    with IDNA 2008
    and TR46 implementations and also provides a compatibility layer for GNU
    libidn.
    libomp has the following notes:
    To use this OpenMP library:
    * For clang-3.8+, or clang-3.7 with +openmp variant:
    add “-fopenmp” during compilation / linking.
    * For clang-3.7 without +openmp variant, use:
    “-I/opt/local/include/libomp -L/opt/local/lib/libomp -fopenmp”
    libpsl has the following notes:
    libpsl API documentation is provided by the port ‘libpsl-docs’.
    openjdk8 has the following notes:
    If you have more than one JDK installed you can make openjdk8 the default
    by adding the following line to your shell profile:

    export
    JAVA_HOME=/Library/Java/JavaVirtualMachines/openjdk8/Contents/Home
    python39 has the following notes:
    To make this the default Python or Python 3 (i.e., the version run by the
    ‘python’ or ‘python3’ commands), run one or both of:

    sudo port select –set python python39
    sudo port select –set python3 python39

    should I follow and install commods as instructed or can I ignore and continue with oracle ?

  • Hello, I installed all of the commands on my terminal, but I couldn’t find octave in my launchpad, and I couldn’t open it with the command octave in the terminal.

  • Pingback: GNU Octave 4 auf Mac OS X El-Capitan installieren | Hanis Sammelsurium

  • Pingback: GNU Octave 4 auf Mac OS X El-Capitan installieren | Hanis Sammelsurium

  • hört sich alles gut und hilfreich an, aber leider nur für windows.
    kann man sowas auch auf dem mac machen ?
    viel besser wäre eine lösung, wie man ganz ohne menübänder arbeiten kann, dafür aber mit den alten wesentlich besseren symbolleiste, die man selbst zusammengestellt hat.

    gruß rhodostelle

  • Pingback: [excel] Excel?? ISO8601 ?? / ?? (TimeZone ??) ?? ?? - ????

  • Hello,

    I tried to connect my Macbook air via thunderbolt with a G2 dock, but it does not work. The macbook is not charged and there is no output to an external screen. The screen isn’t even recognized via the dock.
    Do you have any idea what could be wrong?
    There is also never any light lighting at the G2 dock…

    Thanks a lot.
    Best, Monika

  • I have install Scilab 6.1.1. with Ubuntu.
    But in my case command CLC as well plotting is not working.
    Can you suggest the solution?

  • Pingback: Coach Training Procedure

  • Pingback: Scilab 6.1.1 auf macOS Ventura ohne Versions-Warnmeldung | Hanis Sammelsurium

  • Pingback: Parsing an ISO8601 date/time (including TimeZone) in Excel - Design Corral

  • If your monitor has display ports then you can connect the 2nd Monitor to the ThunderBolt Port (Port 7 in your Diagram Above) using a usb-c to display port cable and it should work. I have it working with my MacBook Pro running Ventura 13.2.1.

    Ref: https://h30434.www3.hp.com/t5/Notebook-Hardware-and-Upgrade-Questions/HP-Thunderbolt-Dock-G2-to-Mac-book-pro/m-p/6802690/highlight/true#M472386

    Thanks & Regards
    -Anurag

  • Great explanation. I have one recurring issue. There are no binaries in my Fortran Project Folder. This has given me a hard time and I don’t know what to do.

    Here’s the error I get when building the project:

    “16:33:32 **** Build of configuration Debug for project HelloWorld ****
    make all
    Building file: ../hello.f77
    Invoking: GNU Fortran Compiler
    /usr/local/bin/gfortran -funderscoring -O0 -g -Wall -c -fmessage-length=0 -o “hello.o” “../hello.f77”
    gfortran: warning: ../hello.f77: linker input file unused because linking not done
    Finished building: ../hello.f77

    Building target: HelloWorld
    Invoking: MacOS X Fortran Linker
    /usr/local/bin/gfortran -o “HelloWorld” ./hello.o
    ld: file not found: ./hello.o
    collect2: error: ld returned 1 exit status
    make: *** [HelloWorld] Error 1
    “make all” terminated with exit code 2. Build might be incomplete.

    16:33:33 Build Failed. 2 errors, 0 warnings. (took 1s.548ms)”

    • That can have many reasons.

      Did you rename your project lately? That could cause the problem.

      But it can also be a toolchain issue. Try the following. With a similar problem one of these worked for me:

      • update and/or reinstall gcc/gfortran via Homebrew or MacPorts
      • reinstall xcode command line tools (fixed my problem)

      Good luck, Hani

  • danke erstmal für die schöne anleitung.
    also bei mir funktioniert es auch ohne den punkt 7 und das erneute auswählen im filter. es läuft genau so wie es sein soll, das diagramm erweitert sich um die daten, die hinzugefügt werden.
    thema excel: dort gibt es formeln, die den datenbreicht erweitern. da ich excel nicht verwende, interessiert es mich nicht weiter, aber ich wollte es nicht unerwähnt lassen.

    • Hallo Giorgio, danke für deinen Kommentar und die ergänzenden Tipps. Die Anleitung ist 3 Jahre alt und mit der entsprechend alten LO-Version gemacht worden. Ich habe das mit der aktuellen noch nicht verursacht bzw. machen müssen.

  • Pingback: save my Marriage Advice

  • Erstklassige Beschreibung! Aber wirklich! Von Anleitung wie diese kann es gar nicht genug geben.

    VIELEN HERZLICHEN DANK!

  • Hi everyone.
    I am struggling with the above mentioned guidelines, and maybe you can help me out.

    My Hardware:
    MBP M3 Pro 14 inch.
    2x MAG274QRFDE-QD
    HP TB 4 Dock
    DP Cabels
    HDMI Cables
    USB C Cables
    USB to DP Cable

    I have tried every configuration possible with those and there is either just one screen on or 2 with the same image.
    What I found out is that the TB Port on my Dock seems not usable as a display output. There is a DP alt port with USB C connector and that works – but it behaves like a regular DP port and just gives me one image. No configuration (that works on the USB-C DP Port) works if I plug any cable into the TB port.

    I also have tried it with my HP Essential Dock G5 – there is no TB and there are no 2 displays recognized also.
    I could try to look for a Monitor FW Update. That is what I haven’t updated maybe. But everything else is up to date.
    What would you suggest to do next?

    • Hi Flo,

      I do not know if the G4 works with your MBP-M3-Pro. But both have TB 4.

      Anyway, according to Apple the MBP M3 PRO should support two external screens up to 6K, the MBP M3 (w/o PRO) does not. But you wrote you own a M3 PRO, right? Ulf wrote he got his MBP M3 Pro running with the G2 dock.

      First try out if you MBP can handle two screens directly w/o the dock. Connect one screen to MBP’s HDMI with a decent HDMI-Kabel (use a up-to-date one!) and the other to one of the MBP’s TB4s with a USB-C-to-DP cable.

      If this does not show the desired result the cables are probably the problem. You have to fix this first. Use different ones or …

      As I read in the specifications, your screens also have a USB-C port. As a second approach, try a connection with a pure USB-C cable from the TB of the MBP to the USB-C of the display. For one or both screens. However, make sure that the USB-C cable is display-compatible. Not all of them are.

      I you get this running, you can try to make the dock working. Connect the HDMI cable to the HDMI port of the dock (#8, refer image in [1]) and to a monitor. Connet a USB-C-to-DP or the diplay.-compatible USB-C cable to the lower right TB port (#9).

      HP-G4-Dock

      Good luck.

      Hani

      [1] https://www.hp.com/us-en/monitors-accessories/computer-accessories/thunderbolt-G4-dock.html

      • Thank you for the effort and input!
        The direct connection works.
        Either through the dock via DP #4 / 7 or HDMI #8 or USB-C #6 + an additional directly connected cable USB-C to USB-C or DP from the MBP. The same is true for the HDMI port of the Mac..

        Best Regards
        Flo

        • Hmm, I had exactly the same problem at first. It only worked when I connnected …

          • G2-DP — DP –> screen1-DP
          • MBP-TB — USB-C-2-HDMI –> screen2-HDMI

          … similar to your approach. That was my workaround in the first version of this blog-post.

          Until Anurag commented on replacing the USB-C-to-HDMI cable with a UPS-C-to-DP cable and connecting the G2 #7 (G4 #9) to it. Have you tried #9? Have you asked the HP service? Anyway.

          • I think I might at least have found the answer…
            It is called display link and no longer supported by my TB G4 Dock. G2 seems to still support that.

            BR
            Flo

  • Hallo, wir haben das selbe Problem, jedoch öffnet sich bei uns leider nichts, wenn wir unter ausführen „control“ oder „regedit“. Das fälschlicherweise eingestellte Programm, welches die .exe geöffnet hatte konnten wir bereits deinstallieren. Jedoch weisen immernoch alle .exe Dateien das Logo des Programmes auf.