web-dev-qa-db-fra.com

Comment ouvrir le terminal Gparted?

J'ai lu cette doc de gparted pour récupérer des problèmes de démarrage lorsqu'une partition est déplacée. Pour tester la commande grubsur un terminal gparted, je souhaite ouvrir le terminal mais ne pas trouver de chemin à partir de mon Ubuntu 13.04. Lorsque j'exécute Sudo gparted & sur mon terminal Shell, il ouvre l'interface graphique et ne peut donc pas tester les commandes. Comment ouvrir le terminal?

18
Ravi

Pourquoi pas? Oui, il y en avait, c'est séparé. vous pouvez l'utiliser dans le terminal. installez simplement Gparted avec la commande, puis utilisez-le dans le terminal en exécutant parted

Sudo apt-get install gparted

GParted est une interface graphique (plus) de la bibliothèque libparted utilisée par le projet Parted. Si vous souhaitez utiliser la ligne de commande, utilisez plutôt parted (remarque: no g devant nom).

utilisez simplement Sudo parted pour le démarrer.

Voici toute la liste de commandes dans parted:

$ Sudo parted

GNU Parted 2.3
Using /dev/sda
Welcome to GNU Parted! Type 'help' to view a list of commands.
(parted) help                                                             
  align-check TYPE N                        check partition N for TYPE(min|opt) alignment
  check NUMBER                             do a simple check on the file system
  cp [FROM-DEVICE] FROM-NUMBER TO-NUMBER   copy file system to another partition
  help [COMMAND]                           print general help, or help on COMMAND
  mklabel,mktable LABEL-TYPE               create a new disklabel (partition table)
  mkfs NUMBER FS-TYPE                      make a FS-TYPE file system on partition NUMBER
  mkpart PART-TYPE [FS-TYPE] START END     make a partition
  mkpartfs PART-TYPE FS-TYPE START END     make a partition with a file system
  resizepart NUMBER END                    resize partition NUMBER
  move NUMBER START END                    move partition NUMBER
  name NUMBER NAME                         name partition NUMBER as NAME
  print [devices|free|list,all|NUMBER]     display the partition table, available devices, free space, all found partitions, or a particular partition
  quit                                     exit program
  rescue START END                         rescue a lost partition near START and END
  resize NUMBER START END                  resize partition NUMBER and its file system
  rm NUMBER                                delete partition NUMBER
  select DEVICE                            choose the device to edit
  set NUMBER FLAG STATE                    change the FLAG on partition NUMBER
  toggle [NUMBER [FLAG]]                   toggle the state of FLAG on partition NUMBER
  unit UNIT                                set the default unit to UNIT
  version                                  display the version number and copyright information of GNU Parted
(parted) 
24
αғsнιη

Ces instructions vous indiquent d’ouvrir un terminal et d’utiliser la console grub.

GParted n'a pas son propre mode terminal ou console.

2
Oli