Existe uma maneira de pedir ao udisksctl para listar todas as partições e bloquear dispositivos?

1

Eu vi o link e enquanto isso é legal, eu estou / queria saber se pode ser conseguido da mesma forma usando udisksctl. Deve como a ajuda dá indicação suficiente -

[$] udisksctl help

Usage:
  udisksctl COMMAND

Commands:
  help            Shows this information
  info            Shows information about an object
  dump            Shows information about all objects
  status          Shows high-level status
  monitor         Monitor changes to objects
  mount           Mount a filesystem
  unmount         Unmount a filesystem
  unlock          Unlock an encrypted device
  lock            Lock an encrypted device
  loop-setup      Set-up a loop device
  loop-delete     Delete a loop device
  power-off       Safely power off a drive
  smart-simulate  Set SMART data for a drive

Use "udisksctl COMMAND --help" to get help on each command.

Usando

[$] udisksctl status /dev/sd

fornece uma lista de todos os discos rígidos, pen-drives / SSDs, etc., mas não partições. Alguma ideia ?

    
por shirish 01.12.2016 / 21:51

1 resposta

0

for disk in /dev/sd[a-z] /dev/sd[a-z][a-z]; do
  if test -b $disk; then
    echo; echo ------------------ Disk $disk ------------------
    udisksctl info -b $disk
    for partition in $disk[1-9] $disk[0-9][0-9]; do
      if test -b $partition; then
        echo; echo ------------------ Partition $partition ------------------
        udisksctl info -b $partition
      fi
    done
  fi
done
    
por 01.12.2016 / 22:03

Tags