yasts2 partitioner

Hi,

Would it be possible in yast partitioner to delete 2 windows partitions with ntfs and merge them with my home folder (ext4)?

Possibly, depending on the circumstances. We would need more information to advise you further.

Though do note that partition operations are inherently dangerous (might result in data loss) and require a lot of planning. I would suggest you use a live cd to do the partitioning, since a mounted drive can not be modified.

Either way make sure what you want to do is possible before proceeding.

Post the result of

su -
fdisk -l

On 11/15/2012 10:26 AM, nightwishfan wrote:
> We would need more information to advise you further.

for example

  1. what operating system and version are you using (be sure and mention
    if you have installed from any repo with these terms: factory,
    playground, tumbleweed, or evergreen)

  2. what desktop environment and version are you using, if any

  3. please show us the terminal output and input from


df -hlT
cat /proc/partitions
cat /etc/fstab
mount
sudo /sbin/fdisk -l
sudo cat /boot/grub/menu.lst
sudo /sbin/swapon -s
uname -a

copy/paste the in/output back to this thread using the instructions
here: http://goo.gl/i3wnr


dd http://tinyurl.com/DD-Caveat

result of fdisk -l

Disk /dev/sda: 250.1 GB, 250059350016 bytes
255 heads, 63 sectors/track, 30401 cylinders, total 488397168 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x7f8b7f8b

Device Boot Start End Blocks Id System
/dev/sda1 63 238950872 119475405 7 HPFS/NTFS/exFAT
/dev/sda2 463732290 488392064 12329887+ 7 HPFS/NTFS/exFAT
/dev/sda3 * 238950873 463732289 112390708+ f W95 Ext’d (LBA)
/dev/sda5 238950936 243159839 2104452 82 Linux swap / Solaris
/dev/sda6 243159903 285105554 20972826 83 Linux
/dev/sda7 285105618 463732289 89313336 83 Linux

Partition table entries are not in disk order

Disk /dev/sdb: 500.1 GB, 500107862016 bytes
255 heads, 63 sectors/track, 60801 cylinders, total 976773168 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0xef7edf66

Device Boot Start End Blocks Id System
/dev/sdb1 2048 488519679 244258816 7 HPFS/NTFS/exFAT
/dev/sdb2 488519680 976769023 244124672 7 HPFS/NTFS/exFAT

And please put your sections of computer output between CODE tags by using the # button from the bar above your message editor.

That will make them readable as if they were on the termnal.

Your partitioning is realy weird. The sequence on the disk is:

sda1, primary partition, for NTFS
sda3, extended partition containing:
         sda5, logical partition, for Linux Swap
         sda6, logical partition, for Linux file system (probably /)
         sda7, logical partition, for Linnux file system (probably /home)
sda2, primary partition, for NTFS

In this case it seems to be rather easy (for the knowing) to add sda2 to sda7, because they are contiguous.
sda1 is not contiguous and and thus not simply be added to sda6 or sda7. A major reorganisation is needed.

/dev/sda1              63   238950872   119475405    7  HPFS/NTFS/exFAT
/dev/sda3   *   238950873   463732289   112390708+   f  W95 Ext'd (LBA)
/dev/sda5       238950936   243159839     2104452   82  Linux swap / Solaris
/dev/sda6       243159903   285105554    20972826   83  Linux
/dev/sda7       285105618   463732289    89313336   83  Linux
/dev/sda2       463732290   488392064    12329887+   7  HPFS/NTFS/exFAT


It’s not pretty is it.