26,459 reputation
64077
bio website
location Greece
age
visits member for 2 years, 6 months
seen yesterday
stats profile views 1,216

A freelance Computer Engineer, with experience mainly on C, Java and all things Un*x...


Nov
22
revised How can I run an untrusted C program in a sandbox in Linux?
added 1665 characters in body
Nov
22
comment How can I run an untrusted C program in a sandbox in Linux?
If your system already has a security model enabled (since it's Fedora it will probably be SELinux) it's recommended to use that one. I have not tried the Fedora Sandbox policy, but I am under the impression that it's quite well made.
Nov
22
awarded  Organizer
Nov
22
revised How can I run an untrusted C program in a sandbox in Linux?
edited tags
Nov
22
comment How can I run an untrusted C program in a sandbox in Linux?
What distribution is the system using? Some distributions have ready-made tools for sandboxing. Does your system have any security model like SELinux or AppArmor enabled ?
Nov
22
revised How can I run an untrusted C program in a sandbox in Linux?
added 216 characters in body
Nov
22
comment How can I run an untrusted C program in a sandbox in Linux?
This does not seem to be actively maintained. It also seems to require a Linux kernel patch, which would make it mostly useless considering that its latest version dates back to 2003.
Nov
22
answered How can I run an untrusted C program in a sandbox in Linux?
Nov
22
revised uniq + not get uniq strings from file
deleted 3 characters in body
Nov
22
revised uniq + not get uniq strings from file
added 1008 characters in body
Nov
22
comment uniq + not get uniq strings from file
Your oneliner may be shorter but it treats trailing whitespace differently to the OP's awk commands.
Nov
22
comment uniq + not get uniq strings from file
@jon: BTW you probably have extra trailing whitespace in one of those lines, before the '\r' (the ^M) character. Otherwise sort/uniq would have deemed it as part of the line and merged it successfully.
Nov
22
comment uniq + not get uniq strings from file
@jon: Filtering the file through tr -d '\r' will remove the extra line terminator from all lines and it will fix your issue. Just add it at the start of your pipeline.
Nov
22
answered uniq + not get uniq strings from file
Nov
22
comment Sendto() function giving errors . How to debug them?
The OP has perfectly portable (even if broken) code, using standard POSIX functions. Why involve something Windows-specific here, when there are the far more portable alternatives of strerror(), perror() etc?
Nov
22
revised Sendto() function giving errors . How to debug them?
added 209 characters in body
Nov
22
answered Sendto() function giving errors . How to debug them?
Nov
22
answered Why does a period get appended to my site's URL when I load the site in a browser?
Nov
22
comment Sendto() function giving errors . How to debug them?
Unless you tell us exactly what errors you are getting it's doubtful we can help you.
Nov
22
answered Concept of select()ing write fd_set