-
as seen on Stack Overflow
- Search for 'Stack Overflow'
How do I find the MAC address of a network card on IRIX? I'd rather not shell out to something that displays it and parse the output.
I'm coding C.
Methods that require root access are acceptable.
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I use in_array() to check whether a value exists in an array like below,
$a = array("Mac", "NT", "Irix", "Linux");
if (in_array("Irix", $a))
{
echo "Got Irix";
}
//print_r($a);
but what about an multidimensional array (below) - how can I check that value whether it exists in the multi-array…
>>> More
-
as seen on Oracle Blogs
- Search for 'Oracle Blogs'
A little over a year ago, we received a question from someone who
was trying to build software on Solaris. He was getting errors
from the ar command when creating an archive. At that time, the ar
command on Solaris was a 32-bit command. There was more than
2GB of data, and the ar command was hitting…
>>> More
-
as seen on Ask Ubuntu
- Search for 'Ask Ubuntu'
I don't have any experience writing .sh files. I want to run the pvm2raw utility of this app from the Volume Library.
I get the following error when running build.sh in Ubuntu 10.10.
build.sh is as follows:
# make command
set mmfile=V3Makefile
set make="make -f $mmfile"
set rule=$1
if…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi all. I have a project that I have been running on IRIX that builds fine with gmake. I copied the source and make files onto a Redhat machine, and running gmake gives me the error posted in the subject. This is during a part of the make that is building .d dependency files, and they are separated…
>>> More