I get boot-pardus_anka_alpha.jpeg (attachment) at the first start after the first stage of the installation.
known issue:
There is sometimes problem with setting proper anka root uuid in /etc/fstab and /etc/initramfs.conf.
It means you have to manual edit these files e.g. from other linux. Proper uuid for root partition you can find e.g. in /boot/grub2/grub.cfg file.
Another option is to make the required modifications as described bellow.
I use
Parted Magic as mentioned
here.
Use GParted to find out which /dev/sd.. partition Pardus-Anka 2013 alpha is installed.
Here are my examples how to modify the two concerned files
(in this example Pardus-Anka is installed on /dev/sda2)
1. file /etc/fstab
before modification:
#
# Created by YALI on Thu Feb 7 10:13:43 2013
#
UUID=a052d6f0-4b90-46ec-83e9-7588a0ea09d7 / ext4 defaults 1 1
UUID=011281b5-b65f-49b8-b392-de2a054cfbe5 swap swap defaults 0 0
tmpfs /dev/shm tmpfs nodev,nosuid,noexec 0 0
debugfs /sys/kernel/debug debugfs debugfs,defaults 0 0
sysfs /sys sysfs defaults 0 0
proc /proc proc defaults 0 0
after modification:
#
# Created by YALI on Thu Feb 7 10:13:43 2013
#
/dev/sda2 / ext4 defaults 1 1
UUID=011281b5-b65f-49b8-b392-de2a054cfbe5 swap swap defaults 0 0
tmpfs /dev/shm tmpfs nodev,nosuid,noexec 0 0
debugfs /sys/kernel/debug debugfs debugfs,defaults 0 0
sysfs /sys sysfs defaults 0 0
proc /proc proc defaults 0 0
2. file /etc/initramfs.conf
before modification:
root=UUID=a052d6f0-4b90-46ec-83e9-7588a0ea09d7
resume=/dev/sda5
after modification:
root=/dev/sda2
resume=/dev/sda5