Tagged Questions
1
vote
0answers
23 views
Making checks before rsyncing external drive on OSX
I have the following issue on OSX though I guess this could equally be filed under bash. I have several encrypted portable drives that I use to sync an offsite data store or as an on-the-go data store ...
3
votes
0answers
132 views
How can I get the current Macbook's UUID from Objective-C?
Does the SDK provide an API for retrieving the current Macbook's UUID?
3
votes
1answer
642 views
Is the Hardware UUID on Mac sensible to use for licensing
Ok, I know that no licensing scheme is uncrackable; I'm not asking for one. I've already got a method in Java that will combine that hosts MAC Address, CPU Type, and Hard Drive serial on both Windows ...
0
votes
2answers
430 views
How to get the UUID of a USB device on a Mac?
I'm currently facing a problem where an OS application is not showing one of two devices because according to the console logs, these devices have the same UUID. The devices have different vendor IDs, ...
2
votes
1answer
465 views
Does Mac OS UUID depend on hard disk?
I use this code to get UUID on Mac OS
NSString* getComputerId()
{
io_registry_entry_t ioRegistryRoot = IORegistryEntryFromPath(kIOMasterPortDefault, "IOService:/");
CFStringRef uuidCf = ...
3
votes
0answers
515 views
Mac OS X gethostuuid function
It appears that a "gethostuuid" function was added in Mac OS X 10.6:
http://developer.apple.com/library/mac/#documentation/Darwin/Reference/ManPages/man2/gethostuuid.2.html
Is there any ...
1
vote
2answers
2k views
Programmatically retrieve an OS X disk partition UUID
I have a path to a partition. How can I retrieve UUID of that partition programatically without using terminal commands? An example will be more helpful.
0
votes
1answer
886 views
Make Fail when installing uuid pecl extension on OSX
So not to familiar with installing extensions by here is my process and the moment of fail.
$ sudo pecl install uuid
then all is good until...
creating libtool
appending configuration tag "CXX" to ...
1
vote
1answer
870 views
How to get 'IOPlatformUUID' on OS X 10.4?
I need to get UUID value on 10.4 but the command seems not to be supported here.
ioreg -rd1 -c IOPlatformExpertDevice | awk '/IOPlatformUUID/ { split($0, line, "\""); printf("%s\n", line[4]); }'
...
2
votes
2answers
661 views
How do I compare two CFUUIDs (Mac OS X Carbon/CoreFoundation)?
How can I compare two CFUUIDRefs from the CoreFoundation Carbon framework in Mac OS X? Is there an easier way to check if two CFUUIDs are equal other than converting them to strings and then comparing ...
0
votes
1answer
494 views
Question about bluetooth on Android
Hi I just read your post http://stackoverflow.com/questions/1953888/bluetooth-connect-to-a-rs232-adapter-in-android and I think you probably can help me figure out my little problem.
I have this BT ...
14
votes
6answers
7k views
Is there a method to generate a standard 128bit GUID (UUID) on the Mac?
Is there a built in function equivalent to .NET's
Guid.NewGuid();
in Cocoa?
My desire is to produce a string along the lines of 550e8400-e29b-41d4-a716-446655440000 which represents a unique ...