Search:

Type: Posts; User: Rocket2DMn; Keyword(s):

Page 1 of 10 1 2 3 4

Search: Search took 0.07 seconds.

  1. Replies
    17
    Views
    18

    Re: Add dependency in deb file

    A deb package declares its dependencies, but as far as I know, double-clicking a deb file (or using dpkg in the terminal) will never install those dependencies. It can't because the deb installer...
  2. Replies
    30
    Views
    31

    Re: Impending Doom

    Effectively restricting OSes has to be done by the system integrator, e.g., by using Secure Boot to verify a boot stage's SW signature against a read-only set of known hashes. An OS on its own...
  3. Replies
    30
    Views
    31

    Re: Impending Doom

    I'll bite.



    These two sentences seem to be your core concerns.

    AFAICT, the first statement is just wrong - TPM doesn't appear to have anything do with controlling and monitoring anything,...
  4. Replies
    17
    Views
    18

    Re: Add dependency in deb file

    If your Debian package has a dependency, you add to the "Depends" field under the "Package" specification in the debian/control file, as shown in the wiki link i provided earlier. I believe that's...
  5. Replies
    17
    Views
    18

    Re: Add dependency in deb file

    Debian packages can specify dependencies, though I don't think they'll automatically install when you install the deb package manually (using dpkg or "double clicking" from the desktop). That's one...
  6. Re: Powercap (intel-rapl) - Changing long-term power limit

    Author of the powercap-utils software here. Since you never got any replies, I'll chime in now - better late than never? I actually ran across this while searching for something else.

    First, it...
  7. Replies
    53,489
    Views
    3,280,312

    Re: The BUMP Thread

    *BUMP!* for working from home due to the COVID-19 pandemic. Also -- long time no bump :)
  8. Replies
    53,489
    Views
    3,280,312

    Re: The BUMP Thread

    Good work!

    *BUMP!*
  9. Replies
    53,489
    Views
    3,280,312

    Re: The BUMP Thread

    *BUMP!* for vacation before moving and starting new job.
  10. [SOLVED] Re: Object Oriented Programming Resources

    I learned OOP in college, but it wasn't until I used it for probably over a year in industry before it really clicked. I think the toy problems you see in textbooks and assignments aren't sufficient...
  11. Replies
    53,489
    Views
    3,280,312

    Re: The BUMP Thread

    *BUMP!* for getting a new job!
  12. Replies
    3
    Views
    4

    [ubuntu] Re: Command explanation

    You can always try building up the command yourself by dropping off the latter parts that you don't understand to see what the original output looks like before it is filtered further.
    So you...
  13. Re: create a namend pipe openable and readable more than once

    Since you haven't received a response, I'll take a stab at this. AFAIK, what you're asking for violates the concept of a pipe, so that's not the tool you're looking for. If the math.py script...
  14. Replies
    53,489
    Views
    3,280,312

    Re: The BUMP Thread

    *BUMP!* for defending my dissertation this week. You may call me Dr. Rocket2DMn ;)
  15. [SOLVED] Re: Hotfolder with inotify-tools, loop FOR not working

    My example script set uses a different directory tha /HOTFOLDER/ since I don't have that on my system. See the $DIR variable and make sure you set that properly.

    I'm also not sure your if...
  16. [SOLVED] Re: Hotfolder with inotify-tools, loop FOR not working

    What is it that you're actually trying to do? If you're trying to move xslx files to the directory you create, try something more like:


    #!/bin/bash
    DIR="./testdir"
    while true; do
    ...
  17. Replies
    53,489
    Views
    3,280,312

    Re: The BUMP Thread

    Long time no *BUMP!*
  18. Sticky: Re: Improving Ubuntu: A Beginners Guide to Filing Bug Reports

    On Ubuntu 16.04: System Settings -> Security and Privacy (under Personal), go to the Diagnostics tab and enable "Send error reports to Canonical"
  19. Replies
    53,489
    Views
    3,280,312

    Re: The BUMP Thread

    Been awhile. *BUMP!*
  20. Replies
    53,489
    Views
    3,280,312

    Re: The BUMP Thread

    *BUMP!* for getting my first package accepted into the Debian archives (pending upload by the FTP team)!
  21. Re: Designing implementation-inspecific PIC32MZ communication classes in C++

    Agreed that this sounds like basic polymorphism. If you have devices that are extremely similar, they can share a common parent (possibly abstract) class. The only thing I would add is that you...
  22. [SOLVED] Re: When is the dollar sign required with variables, when is it not?

    There is a bullet point in the post about exactly that.

    Don't worry about patterns and regular expressions until you find that you need them.

    As I mentioned earlier, and the responder said in...
  23. [SOLVED] Re: When is the dollar sign required with variables, when is it not?

    You still typically need the $ with [[ ]]. The fact that there are two brackets on each end is to support compound if statements joined with && in the earlier examples. It was only when using the...
  24. [SOLVED] Re: When is the dollar sign required with variables, when is it not?

    In short, the $ symbol indicates to the shell that the text that follows is the name of a variable (which has some value, even if that value is empty, i.e., ''). In certain situations though, the...
  25. [SOLVED] Re: When is the dollar sign required with variables, when is it not?

    I'd also like to add that I've become a big fan of shellcheck - a lint tool for shell scripts. You can install shellcheck from the Universe repository, or even use the online interface at...
Results 1 to 25 of 250
Page 1 of 10 1 2 3 4