About 50 results
Open links in new tab
  1. /usr/bin/ld: cannot find -lfl - Unix & Linux Stack Exchange

    After running the following command: g++ lex.yy.c -lfl I get the following error: /usr/bin/ld: cannot find -lfl How can I solve it?

  2. Unable to use -lfl on NixOS - Unix & Linux Stack Exchange

    Mar 13, 2021 · -lfl is for libfl, which comes from flex package. That is completely different from -lc, which is for libc and comes from glibc package. How are you building the package and what is your …

  3. How to set the Default gateway - Unix & Linux Stack Exchange

    Feb 1, 2016 · I'm trying to configure the network interface on embedded linux using ifconfig: ifconfig eth0 192.168.0.101 netmask 255.255.255.0 but I don't know how to add the default gateway as an ifconfig …

  4. Getting an U-boot FIT signed image - Unix & Linux Stack Exchange

    Jul 1, 2024 · I'm trying to generate an U-Boot Signed FIT image containing kernel + dtb. After generating the kernel, the dtb and the keys, I mkimage -f fitImage_sign.its -K devicetree.dtb -k <path to the fol...

  5. How to ssh to remote server using a private key?

    Oct 25, 2011 · IMPORTANT NOTE: The client can have many private keys and select based on an arbitrary name in their private ~/.ssh/config file where Host= gives the arbitrary name, HostName …

  6. shell script - How can I read a single key press from a user if it's ...

    5 days ago · shell is the wrong language for this. Use a language with a curses library or a terminal handling library (e.g. something relative simple and easy like perl's Term::Readkey library), or use …

  7. bash - Difference between >> and - Unix & Linux Stack Exchange

    RHEL 6 Is there a difference between the &gt;&gt; and &gt;\\&gt; operators? I read the following blurb in a RHEL training book: "You can add standard output to the end of an existing file with ...

  8. Linux - Inherit file permissions from parent directory

    Jan 29, 2021 · This does set the rw permissions for the group when I execute the command, but if I create another file, the file again has 0644 permissions.

  9. How do you reload .so files (dynamic libraries) in Linux?

    Mar 12, 2022 · I don't remember the command anymore, but in basically every Linux distro there's a command for reloading .so files and other libraries. How's it called? It's something similar to ld I think. …

  10. cp: cannot stat permission denied - Unix & Linux Stack Exchange

    Oct 9, 2021 · I have a file called fileArc.c and I was given instructions for an assignment that if I do the command cp fileArc.c /pc that this file would then be accessible in a created folder on my desktop. Ho...