Search Results

Search: Posts Made By: krk
Forum: Red Hat 10-06-2015
2,107
Posted By Corona688
It likely needs to be byte-swapped. #include...
It likely needs to be byte-swapped.

#include <stdint.h>

void swap64(void *mem) {
uint64_t x=*((uint64_t *)mem)
x = (x & 0x00000000FFFFFFFF) << 32 | (x & 0xFFFFFFFF00000000) >>...
6,787
Posted By Corona688
The effort to use code tags is appreciated,...
The effort to use code tags is appreciated, however you are using the wrong button, to use code tags please use the code button, the one that says code on it,...
1,147
Posted By RudiC
Please use code tags as required by forum rules! ...
Please use code tags as required by forum rules!

For your above question, try$ grep -o "[^|^]\+[|][^^|]\+" file
d|og
9,339
Posted By RudiC
There's no silver bullet for your problem. If...
There's no silver bullet for your problem. If compliant to your site's policy, you could disable the authentication requirement (cf. man sudoers):You could use the -A option (cf. man sudo):You...
9,339
Posted By Ikaro0
Hi Krk To do a sudo you should have an entry...
Hi Krk

To do a sudo you should have an entry on the sudoers file that allows you to do the task needed to be done as other user or root.

Better than trying to go deeper into your specific...
Showing results 1 to 5 of 5

 
All times are GMT -4. The time now is 04:02 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy