Skip to content
  • 0 Votes
    1 Posts
    0 Views
    No one has replied
  • 0 Votes
    2 Posts
    5 Views
    K
    I don't know anything about DAOS so I can't comment on that. Have you had this working in the past and it stopped working, or are you trying to get it running now? Either way, CentOS 7 was initially released in 2014, and goes EOL at the end of the month. What you *might* be seeing is that C7 doesn't support the infrastructure needed for DAOS. This would probably be better answered in a forum dedicated to DAOS. In any case, given the short support lifetime of C7, I'd recommend you consider moving to something more recent, like CentOS 9 or one of the other RHEL 9 based distros. I hear good things about Rocky Linux. Or move to Ubuntu or Debian. "A little song, a little dance, a little seltzer down your pants" Chuckles the clown
  • How to duplicate Ubuntu OS?

    The Lounge linux help question tutorial
    17
    0 Votes
    17 Posts
    0 Views
    J
    wrote: Perhaps I am on wrong planet Hey you finally said something accurate. wrote: I was under the impression this forum, in particular, was in existence to help solve problems. That's where you're wrong. The lounge is clearly marked as a SOCIAL forum. There are other forums for questions. Yes, on occasion, you'll see us answer questions but it's usually with people we know that do not abuse the system. That ain't you dude. Ever since you've been here you've done nothing but abuse it with provided no value in return. Which is fine, but go to the forums. We've only said this over and over. So, if you don't understand this point then its because you simply do not care. Just don't be surprised when you have zero friends bro. Jeremy Falcon
  • 0 Votes
    18 Posts
    0 Views
    J
    :-D Ah memories (if we had any) "A little time, a little trouble, your better day" Badfinger
  • 0 Votes
    3 Posts
    0 Views
    N
    It could be worst... it coul dbe McAfee :rolleyes: :-D M.D.V. ;) If something has a solution... Why do we have to worry about?. If it has no solution... For what reason do we have to worry about? Help me to understand what I'm saying, and I'll explain it better to you Rating helpful answers is nice, but saying thanks can be even nicer.
  • 0 Votes
    3 Posts
    0 Views
    P
    Slow news day? Quote: The vulnerability, tracked as CVE-2024-1086 and carrying a severity rating of 7.8 out of a possible 10, allows people who have already gained a foothold inside an affected system to escalate their system privileges. Quote: It was patched in January, but as the CISA advisory indicates, some production systems have yet to install it. My emphasis. Software rusts. Simon Stephenson, ca 1994. So does this signature. me, 2012
  • 0 Votes
    5 Posts
    0 Views
    L
    I explained what you should do to correct this in my previous reply. Passing a class pointer or reference is just the same as passing any other type. So a simple example: // a useless class class Foo { private : int bar; public: Foo(int i) : bar(i) {} // constructor takes a value int getBar() {return bar; } // this method returns the value }; // an arbitrary function which accepts a Foo* int MyFunc(Foo* param) { int rc = param->getBar(); // ask the class object for the value return rc * 2; // and return it doubled } int main { Foo* pFoo = new Foo(4); // create a new object with a value of 4 int ans = MyFunc(pFoo); // call MyFunc passing it the pointer to the class object cout << "result: " << ans << endl; return 0; } And all of that, and more, is fully explained in any C++ reference, either online or in printed copy.
  • 0 Votes
    2 Posts
    0 Views
    D
    Because it's the year of everybody being geniuses? :laugh: Our Forgotten Astronomy | Object Oriented Programming with C++ | Wordle solver
  • Microsoft, get it the hell together

    The Lounge design com graphics linux iot
    4
    0 Votes
    4 Posts
    0 Views
    C
    here, have a hug. There is a strong argument to be made for small deployable tactical nukes to be shipped, armed to Redmond. Now, I need to remember where I was in my project because MS just rebooted my machines. Charlie Gilley “They who can give up essential liberty to obtain a little temporary safety deserve neither liberty nor safety.” BF, 1759 Has never been more appropriate.
  • 0 Votes
    3 Posts
    0 Views
    K
    :-D UNO does support GUIs in Linux, but true about Linux folk. TTFN - Kent
  • 0 Votes
    4 Posts
    0 Views
    L
    Thanks for reply. I have riposted this, hoping for help with constructing with C++ reg expression .
  • When technology totally gets it right

    The Lounge design linux announcement career
    10
    0 Votes
    10 Posts
    0 Views
    C
    I use Input Director, a very good KVM style tool that has copy/paste among other neat little features. And it is free.
  • rfcomm ?

    Linux Programming security html com linux tools
    8
    0 Votes
    8 Posts
    5 Views
    P
    Yeah they over-abbreviated the command. Should have spelled it rtfmcomm. Software rusts. Simon Stephenson, ca 1994. So does this signature. me, 2012
  • 0 Votes
    3 Posts
    0 Views
    O
    David O'Neil wrote: Oh the irony - a 'winnerwhiner' of our capitalistic system being dismayed at the outcome of our 'capitalistic' system. FTFY
  • 0 Votes
    3 Posts
    0 Views
    O
    Somehow I just don't see the egos running the Linux community implementing this proposed changed to better secure the Linux kernel.
  • 0 Votes
    19 Posts
    0 Views
    S
    "I mean, to really learn what's going on underneath the surface, a lot has to be explained." This is not limited to assembly. My C++ book for beginners to programming, "C++: A Dialog", doesn't show the first line of C++ until about page 75 because I start by explaining hardware concepts like memory and registers, and there is a lot more such explanation before we get to anything complicated in C++. Of course a lot of C++ books don't go into this detail but I think it is necessary to be a good programmer. How can you write good code without understanding what is going on underneath the C++ syntax?
  • 0 Votes
    4 Posts
    0 Views
    J
    I don't think many people are onboard with my level of... we'll just call it paranoia because I don't care... Nearly every machine on the planet is likely compromised. I think there's stuff 'living' in bioses, harddisk firmware, any bits of ROM that are somehow accessible, and all sorts of other ways I wouldn't even think of. Probably from here, I read about one that pulled its real payload from the YouTube comments sections where they'd commented a random video with code to pull down! We don't do it, and I don't know that we could afford to, but once you know a machine is compromised I'm not sure why the assumption wouldn't be that unless you incinerate it then it is still infected. I don't actually believe every malware/rootkit some scam call center bought actually goes to this 'nation state' seeming level of act. But I also don't think it's so sophisticated as to require a nation state and think there's more than a few nation states whose existence collectively makes it safe to assume that amongst them, someone has written "the one". It being some bits you can poke for and find just about everywhere... which should not be there.
  • Linux users installing a web browser.

    The Lounge com linux question
    2
    0 Votes
    2 Posts
    0 Views
    T
    Delayed reply. Windows version: Working on updates 3% Don't turn off your PC. This will take awhile. Your PC may restart several times. >64 It’s weird being the same age as old people. Live every day like it is your last; one day, it will be.
  • 0 Votes
    9 Posts
    0 Views
    N
    raddevus wrote: I think it _could_ be a useful feature, if used properly. Next pal at the side of the goto's? M.D.V. ;) If something has a solution... Why do we have to worry about?. If it has no solution... For what reason do we have to worry about? Help me to understand what I'm saying, and I'll explain it better to you Rating helpful answers is nice, but saying thanks can be even nicer.
  • I thought I’d try snail racing.

    The Lounge design com graphics linux iot
    7
    0 Votes
    7 Posts
    0 Views
    D
    Or a woman without a man... :) Freedom is the freedom to say that two plus two make four. If that is granted, all else follows. -- 6079 Smith W.