Skip to content

golang library for SCSI commands using SG_IO ioctl

License

Notifications You must be signed in to change notification settings

benmcclelland/sgio

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

sgio

golang library for issuing SCSI commands with SG_IO ioctl

godoc

See TestUnitReady() for example function using SG_IO

example:

f, err := OpenScsiDevice("/dev/sg0")
if err != nil {
	log.Fatalln(err)
}
defer f.Close()

Fill out SgIoHdr for SCSI command

ioHdr := &SgIoHdr{...}
err := SgioSyscall(f, ioHdr)
if err != nil {
	log.Fatalln(err)
}

err = CheckSense(ioHdr, &senseBuf)
if err != nil {
	log.Fatalln(err)
}

About

golang library for SCSI commands using SG_IO ioctl

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages