Tagged Questions
The uname tag has no wiki summary.
4
votes
2answers
146 views
Calling uname from libc with Pythons ctypes
tl;dr
this works with the GNU version of libc (haven't tried it with uclibc yet)
from ctypes import *
libc = CDLL('libc.so.6')
class uts_struct(Structure):
_fields_ = [ ('sysname', c_char * ...
3
votes
13answers
413 views
What does YOUR uname say?
Short story: I need to write a PHP script which finds the correct OS type from uname (eg: both wince and winnt would return windows). See here for more info.
Shouldn't this be a community wiki?
Yes ...
2
votes
1answer
331 views
Accurately determine the type of OS PHP is running on
Title says it all. I need to determine the type of OS the PHP server is running on.
By type, I mean strings like "windows" or "linux", not "wince", "winnt" etc.
So far, I have to leads: PHP_OS and ...
1
vote
2answers
48 views
Uname -p option is not available in my Linux system [closed]
I have 2 Linux systems.
uname -p option is not available in one of my Linux systems, but available in other Linux system...
output:
# uname -p
Try uname --help' for more information.
#
How i could ...
1
vote
1answer
161 views
Precisely Why Does uname -m Report the Wrong Architecture When Run By Sun Grid Engine (SGE)?
I have 64-bit Debian Squeeze systems that run an older 32-bit version of SGE execd. When I run uname -m at the command line, I get what I'd expect: x86_64. But when I run uname -m inside an SGE script ...
1
vote
3answers
619 views
C how to use the function uname
I should write a function to get some information about the system (the most important information is the the architecture). I found the function uname which can be used including sys/utsname.h. Well, ...
1
vote
2answers
374 views
How fast is php_uname()?
How fast is php_uname() say doing php_uname('s n') or php_uname('a'). The reason I ask is because I'd like to use it to determine which server I'm on and therefore the configuration (paths, etc).
...
0
votes
1answer
42 views
SOLARIS - verify OS version before OS upgarde
I have SOLARIS 10 OS
SOLARIS OS was upgrade to new version as the following version - 144488-02
Example of OS version verification:
uname -v
Generic_144488-02
.
uname -a
SunOS star1a ...
0
votes
0answers
183 views
cmake on mac osx 10.6: system is unknown / umake not found
i installed cmake to build blender on mac osx 10.6, but the endeavor failed so early on in the process that it gave me the impression that either i'd done something wrong during the installation or ...
0
votes
1answer
122 views
Understanding uname output
What do the various pieces of uname -a output mean? Following is an example output:
Linux mymachine 2.6.18-194.e15PAE #1 SMP Fri Apr 2 15:37:44 EDT 2010 i686 i686 i386 GNU/Linux
I gather that Linux ...
0
votes
1answer
88 views
rpm spec call uname -r
When I install my app, I would like to copy some files in /lib/modules/KERNEL_VERSION/extra.
The problem of course is that KERNEL_VERSION is not fixed.
I can find it by calling "uname -r", but how ...
0
votes
3answers
274 views
Good way to send result of 'uname -a' to a stream?
What is a good way to call 'uname -a' from a C++ program and send the results to a stream?
I looked at system() and exec(), but they do not seem to give access to the stdout of the call.
Thanks.
...