A partição do sistema reserverd é usada principalmente para um sistema restaurar o padrão de fábrica do Windows. Não há razão para escondê-lo. Por favor, pressione Alt + F2 e digite:
gksu gedit /etc/udev/rules.d/95-hide-ntfs.rules
na janela, cole:
# 95-hide-ntfs.rules
# /dev/sda1 System_Reserved as hidden partition
# in /etc/udev/rules.d
##################################################
ACTION!="add|change", GOTO="hide_partitions_end"
SUBSYSTEM!="block", GOTO="hide_partitions_end"
KERNEL=="loop*|ram*", GOTO="hide_partitions_end"
##################################################
# Partition sda1 hide from gnome
KERNEL=="sda1", ENV{UDISKS_PRESENTATION_HIDE}="1"
##################################################
LABEL="hide_partitions_end"
e use Arquivo- > Salve . Reinicie e veja se isso ajuda.
Se não, continue abaixo.
Pressione Alt + F2 novamente e digite:
gksudo leafpad /usr/share/hal/fdi/policy/10osvendor/20-storage-methods.fdi
e pressione Enter. Encontre exatamente essas linhas (Ctrl + F e olhos cuidadosos serão úteis):
<match key="volume.fstype" string_outof="ntfs;vfat">
<match key="volume.label" string="RECOVERY">
<merge key="volume.ignore" type="bool">true</merge>
</match>
e substitua-os por:
<match key="volume.fstype" string_outof="ntfs;vfat">
<!-- Win7 ships some desktop with a System_Reserved partition -->
<match key="volume.label" string="System Reserved">
<merge key="volume.ignore" type="bool">true</merge>
</match>
<!-- Win ships some desktop with a recovery partition -->
<match key="volume.label" string="RECOVERY">
<merge key="volume.ignore" type="bool">true</merge>
</match>
Salvar e reinicializar.