Differenze tra le versioni di "Conoscere numero seriale, modello ed altre informazioni su hard-disk SATA con la funzione esterna ioctl()"
Da Gambas-it.org - Wikipedia.
Riga 29: | Riga 29: | ||
err = ioctl(fl.Handle, HDIO_GET_IDENTITY, hd) | err = ioctl(fl.Handle, HDIO_GET_IDENTITY, hd) | ||
If err < 0 Then | If err < 0 Then | ||
− | + | Chiusura(hd, fl) | |
Error.Raise("Errore alla funzione 'ioctl()' !") | Error.Raise("Errore alla funzione 'ioctl()' !") | ||
Endif | Endif | ||
Riga 40: | Riga 40: | ||
Print "Modello: "; Left(String@(hd + 54), 40) | Print "Modello: "; Left(String@(hd + 54), 40) | ||
− | Free( | + | Chiusura(hd, fl) |
− | + | ||
+ | End | ||
+ | |||
+ | |||
+ | Private Procedure Chiusura(p As Pointer, fi As File) | ||
+ | |||
+ | Free(p) | ||
+ | fi.Close | ||
End | End |
Versione delle 08:22, 19 ott 2024
Utilizzando la funzione esterna "ioctl()", e facendo riferimento alla Struttura esterna hd_driveid del file header /usr/include/linux/hdreg.h, è possibile ottenere alcune informazioni, come numero seriale, modello etc., relative a un hard-disk SATA.
Sarà necessario richiamare nel progetto Gambas la libreria condivisa: "libc.so.6 ".
Mostriamo di seguito un esempio pratico, avendo cura di eliminare la protezione al file-device "/dev/sda":
Library "libc:6" Private Const HDIO_GET_IDENTITY As Integer = &030D ' int ioctl (int __fd, unsigned long int __request, ...) ' Perform the I/O control operation specified by REQUEST on FD. Private Extern ioctl(__fd As Integer, __request As Long, hd_drived As Pointer) As Integer Public Sub Main() Dim fl As File Dim hd As Pointer Dim err As Integer ' Elimina la protezione del file-device "/dev/sda". ' Si dovrà inserire la propria password di sistema. Shell "echo MIA_PASSWORD | sudo -S chmod 444 /dev/sda" Wait fl = Open "/dev/sda" For Read hd = Alloc(SizeOf(gb.Byte), 512) err = ioctl(fl.Handle, HDIO_GET_IDENTITY, hd) If err < 0 Then Chiusura(hd, fl) Error.Raise("Errore alla funzione 'ioctl()' !") Endif Print "\n\nCilindri: "; Short@(hd + 2) & Space(16) Print "Heads: "; Short@(hd + 6) Print "Settori: "; Short@(hd + 12) Print "Num. seriale: "; Trim(Left(String@(hd + 20), 20)) Print "Firmware rev.: "; Left(String@(hd + 46), 8) Print "Modello: "; Left(String@(hd + 54), 40) Chiusura(hd, fl) End Private Procedure Chiusura(p As Pointer, fi As File) Free(p) fi.Close End