Monday, April 29, 2024
2
rated 0 times [  2] [ 0]  / answers: 1 / hits: 3134  / 3 Years ago, mon, november 8, 2021, 4:28:25



windows "system reserved" can be mounted on ubuntu



"system reserved" windows partition showed on nauilus ubuntu 12.04. No any other problems.
I've
sda1 system reserved
sda2 windows partition
sda3 ubuntu partition
sda4 extended partition
sda5 ntfs part
sda6 ntfs part


This is my fstab.

# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
#
proc /proc proc nodev,noexec,nosuid 0 0
# / was on /dev/sda3 during installation
UUID=917d1cad-a914-47ee-a9e2-4e3d2025285a / ext2 errors=remount-ro 0 1
/dev/sda2 /media/sda2 ntfs nls=iso8859-1,ro,umask=000 0 0
/dev/sda5 /media/sda5 ntfs nls=iso8859-1,ro,umask=000 0 0
/dev/sda6 /media/sda6 ntfs nls=iso8859-1,ro,umask=000 0 0


pls hlp...
The output when df -h used is
Filesystem Size Used Avail Use% Mounted on
/dev/sda3 30G 3.6G 25G 13% /
udev 983M 4.0K 983M 1% /dev
tmpfs 396M 904K 395M 1% /run
none 5.0M 4.0K 5.0M 1% /run/lock
none 990M 684K 989M 1% /run/shm
/dev/sda2 30G 8.5G 22G 29% /media/sda2
/dev/sda5 100G 89M 100G 1% /media/sda5
/dev/sda6 139G 91M 138G 1% /media/sda6





More From » partitioning

 Answers
6

The system reserverd partition is used mainly for a system to restore Windows to factory defaults. There is no reason to hide it. Please press Alt+F2 and type:



gksu gedit /etc/udev/rules.d/95-hide-ntfs.rules


in the window, paste:



# 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"


and use File-> Save. Reboot, and see if it helps.



If not, continue below.



Press Alt+F2 again and type:



gksudo leafpad /usr/share/hal/fdi/policy/10osvendor/20-storage-methods.fdi


and press Enter.
Find exactly these lines(Ctrl+F and careful eyes will be useful):



<match key="volume.fstype" string_outof="ntfs;vfat">
<match key="volume.label" string="RECOVERY">
<merge key="volume.ignore" type="bool">true</merge>
</match>


and replace them with :



 <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>


Save and reboot.


[#36421] Monday, November 8, 2021, 3 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
jectedrin

Total Points: 491
Total Questions: 105
Total Answers: 111

Location: Netherlands
Member since Mon, Jun 7, 2021
3 Years ago
;