[SOLVED]Incorrect UUIDs

I promise this isn't just another duplicate post like so many others from people who just start blindly posting when they have a problem. It's really not. I've searched thoroughly, and even found something of a solution to my original problem here on this very forum. Just give me a chance.
Anyway, I'll get to the point. After taking a break from Arch to experiment with Slackware, I decided that--while I did enjoy Slack--I missed Arch too much and wanted to return. Since it's been awhile I see some things have changed. The installation process seems mostly the same as when I had stopped, but it doesn't want to go as smoothly as it used to for me. I, like many others, have recently come across this error after what I thought was a successful install:
Booting 'Arch GNU/Linux, with Linux core repo kernel'
error: no such device: ad4103fa-d940-47ca-8506-301d8071d467.
Loading Linux core repo kernel ...
error: file '/boot/vmlinuz-linux' not found.
Loading initial ramdisk ...
error: you need to load the kernel first.
Press any key to continue...
Now wait! Don't start getting frustrated and tell me to use the Search function or otherwise label me as a leecher, noob, or idiot. I promise you, I did use the Search function. Quite a bit. I arrived at this thread: https://bbs.archlinux.org/viewtopic.php?id=157195, which helped me to achieve a semi-fix. I did as the link suggested, and when I rebooted, GRUB loads, and I saw three entries for Arch instead of the original two that are there by default with GRUB. Both of these had the random non-existent UUID posted above. The third entry, on the bottom, was simply labeled: Arch Linux. I checked my grub.cfg; indeed the UUID matches the one in my /etc/fstab. This one get's me into my installed system successfully, however, it does so without displaying any of those pretty Arch startup messages whatsoever. Just blank, then I'm at a login prompt. Weird. Another thing I noticed is that there's no Windows entry, however, there is an entry for it when I look at the actual grub.cfg. One other odd thing is that UUID in the above error is the exact same as the one mentioned in the solved thread I visited.
Now that I've given that background here's some info. Much like the link I posted above I have a dual-boot, installed Arch from USB. Partitioning scheme is as follows:
/dev/sda1 - Windows boot
/dev/sda2 - Windows
/dev/sda3 - Shared NTFS part visible in both windows and *nix
/dev/sda5 - logical /
/dev/sda6 - logical /boot
/etc/fstab:
# /etc/fstab: static file system information
# <file system> <dir> <type> <options> <dump> <pass>
# UUID=6b8bc0b7-0723-4227-8cd3-eb246fe71cfe
/dev/sda6 / ext4 rw,relatime,data=ordered 0 1
# UUID=2097ae5f-4235-436c-8fcf-c3451b0fe26a
/dev/sda5 /boot ext4 rw,relatime,stripe=4,data=ordered 0 2
grub.cfg
# DO NOT EDIT THIS FILE
# It is automatically generated by grub-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
### BEGIN /etc/grub.d/00_header ###
insmod part_gpt
insmod part_msdos
if [ -s $prefix/grubenv ]; then
load_env
fi
if [ "${next_entry}" ] ; then
set default="${next_entry}"
set next_entry=
save_env next_entry
set boot_once=true
else
set default="0"
fi
if [ x"${feature_menuentry_id}" = xy ]; then
menuentry_id_option="--id"
else
menuentry_id_option=""
fi
export menuentry_id_option
if [ "${prev_saved_entry}" ]; then
set saved_entry="${prev_saved_entry}"
save_env saved_entry
set prev_saved_entry=
save_env prev_saved_entry
set boot_once=true
fi
function savedefault {
if [ -z "${boot_once}" ]; then
saved_entry="${chosen}"
save_env saved_entry
fi
function load_video {
if [ x$feature_all_video_module = xy ]; then
insmod all_video
else
insmod efi_gop
insmod efi_uga
insmod ieee1275_fb
insmod vbe
insmod vga
insmod video_bochs
insmod video_cirrus
fi
if [ x$feature_default_font_path = xy ] ; then
font=unicode
else
insmod part_msdos
insmod ext2
set root='hd0,msdos6'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos6 --hint-efi=hd0,msdos6 --hint-baremetal=ahci0,msdos6 6b8bc0b7-0723-4227-8cd3-eb246fe71cfe
else
search --no-floppy --fs-uuid --set=root 6b8bc0b7-0723-4227-8cd3-eb246fe71cfe
fi
font="/usr/share/grub/unicode.pf2"
fi
if loadfont $font ; then
set gfxmode=auto
load_video
insmod gfxterm
set locale_dir=$prefix/locale
set lang=en_US
insmod gettext
fi
terminal_input console
terminal_output gfxterm
set timeout=5
### END /etc/grub.d/00_header ###
### BEGIN /etc/grub.d/10_linux ###
menuentry 'Arch Linux, with Linux core repo kernel' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-core repo kernel-true-6b8bc0b7-0723-4227-8cd3-eb246fe71cfe' {
load_video
set gfxpayload=keep
insmod gzio
insmod part_msdos
insmod ext2
set root='hd0,msdos5'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos5 --hint-efi=hd0,msdos5 --hint-baremetal=ahci0,msdos5 2097ae5f-4235-436c-8fcf-c3451b0fe26a
else
search --no-floppy --fs-uuid --set=root 2097ae5f-4235-436c-8fcf-c3451b0fe26a
fi
echo 'Loading Linux core repo kernel ...'
linux /vmlinuz-linux root=UUID=6b8bc0b7-0723-4227-8cd3-eb246fe71cfe rw quiet
echo 'Loading initial ramdisk ...'
initrd /initramfs-linux.img
menuentry 'Arch Linux, with Linux core repo kernel (Fallback initramfs)' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-core repo kernel-fallback-6b8bc0b7-0723-4227-8cd3-eb246fe71cfe' {
load_video
set gfxpayload=keep
insmod gzio
insmod part_msdos
insmod ext2
set root='hd0,msdos5'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos5 --hint-efi=hd0,msdos5 --hint-baremetal=ahci0,msdos5 2097ae5f-4235-436c-8fcf-c3451b0fe26a
else
search --no-floppy --fs-uuid --set=root 2097ae5f-4235-436c-8fcf-c3451b0fe26a
fi
echo 'Loading Linux core repo kernel ...'
linux /vmlinuz-linux root=UUID=6b8bc0b7-0723-4227-8cd3-eb246fe71cfe rw quiet
echo 'Loading initial ramdisk ...'
initrd /initramfs-linux-fallback.img
menuentry 'Arch Linux' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-6b8bc0b7-0723-4227-8cd3-eb246fe71cfe' {
load_video
set gfxpayload=keep
insmod gzio
insmod part_msdos
insmod ext2
set root='hd0,msdos5'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos5 --hint-efi=hd0,msdos5 --hint-baremetal=ahci0,msdos5 2097ae5f-4235-436c-8fcf-c3451b0fe26a
else
search --no-floppy --fs-uuid --set=root 2097ae5f-4235-436c-8fcf-c3451b0fe26a
fi
echo 'Loading Linux core repo kernel ...'
linux /vmlinuz-linux root=UUID=6b8bc0b7-0723-4227-8cd3-eb246fe71cfe rw quiet
echo 'Loading initial ramdisk ...'
initrd /initramfs-linux-fallback.img
submenu 'Advanced options for Arch Linux' $menuentry_id_option 'gnulinux-advanced-6b8bc0b7-0723-4227-8cd3-eb246fe71cfe' {
### END /etc/grub.d/10_linux ###
### BEGIN /etc/grub.d/20_linux_xen ###
### END /etc/grub.d/20_linux_xen ###
### BEGIN /etc/grub.d/30_os-prober ###
menuentry 'Windows 7 (loader) (on /dev/sda1)' --class windows --class os $menuentry_id_option 'osprober-chain-8832E79332E78512' {
insmod part_msdos
insmod ntfs
set root='hd0,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 8832E79332E78512
else
search --no-floppy --fs-uuid --set=root 8832E79332E78512
fi
chainloader +1
### END /etc/grub.d/30_os-prober ###
### BEGIN /etc/grub.d/40_custom ###
# This file provides an easy way to add custom menu entries. Simply type the
# menu entries you want to add after this comment. Be careful not to change
# the 'exec tail' line above.
### END /etc/grub.d/40_custom ###
### BEGIN /etc/grub.d/41_custom ###
if [ -f ${config_directory}/custom.cfg ]; then
source ${config_directory}/custom.cfg
elif [ -z "${config_directory}" -a -f $prefix/custom.cfg ]; then
source $prefix/custom.cfg;
fi
### END /etc/grub.d/41_custom ###
### BEGIN /etc/grub.d/60_memtest86+ ###
### END /etc/grub.d/60_memtest86+ ###
All the UUIDs seem to match the one in /etc/fstab. For some reason when I boot up it doesn't show any startup messages, as well, I get these errors:
When running grub-mkconfig -o /boot/grub/grub.cfg
Generating grub configuration file ...
Found linux image: /boot/vmlinuz-linux
Found initrd image: /boot/initramfs-linux.img
/run/lvm/lvmetad.socket: connect failed: No such file or directory
WARNING: Failed to connect to lvmetad: No such file or directory. Falling back to internal scanning.
/run/lvm/lvmetad.socket: connect failed: No such file or directory
/run/lvm/lvmetad.socket: connect failed: No such file or directory
No volume groups found
Found Windows 7 (loader) on /dev/sda1
error: out of memory.
error: syntax error.
error: Incorrect command.
error: syntax error.
Syntax error at line 175
Syntax errors are detected in generated GRUB config file.
Ensure that there are no errors in /etc/default/grub
and /etc/grub.d/* files or please file a bug report with
/boot/grub/grub.cfg.new file attached.done
[ 226.740489] SQUASHFS error: Can't find a SQUASHFS superblock on sda4
[ 226.744243] EXT4-fs (sda4): unable to read superblock
[ 226.747550] EXT4-fs (sda4): unable to read superblock
[ 226.750797] EXT4-fs (sda4): unable to read superblock
and when running os-prober:
/run/lvm/lvmetad.socket: connect failed: No such file or directory
WARNING: Failed to connect to lvmetad: No such file or directory. Falling back to internal scanning.
/run/lvm/lvmetad.socket: connect failed: No such file or directory
/run/lvm/lvmetad.socket: connect failed: No such file or directory
No volume groups found
/dev/sda1:Windows 7 (loader):Windows:chain
There error also displays EXT4-fs (sda4): unable to read superblock, three times but with different numbers in front of them. This obviously has a lot to do with why GRUB isn't detecting Windows.
I really don't understand why the command:
genfstab -p /mnt >> /mnt/etc/fstab
Seems to want to create this UUID: ad4103fa-d940-47ca-8506-301d8071d467
Because that's the UUID it puts in my /etc/fstab and that is the same exact one the other user was given in the link I provided. Is this some sort of bug? Generating fstab has always gone without a hitch before I left for Slackware. So, to summarize as to make the post less confusing:
Issues:
- genfstab /mnt >> /mnt/etc/fstab generates wrong UUIDs and I have to restart and implement the solution in the link provided.
- Aforementioned solution somewhat works, it boots me into my system but I see no startup messages(I like those startup messages), and there is obviously something wrong if this is happening anyway.
- GRUB refuses to detect Windows despite what is in grub.cfg, and os-prober and grub-mkconfig -o /boot/grub/grub.cfg spits out errors.
Thanks very much.
Last edited by xworld (2013-12-19 07:02:47)

Thanks for the tip with the english output, didn't know that.
I hadn't searched that problem as my boot process works, lowering the severity-level of this particular error to 'interesting'.
In english the message says
LC_ALL=C sudo grub-mkconfig -o /boot/grub/grub.cfg
Generating grub configuration file ...
Found linux image: /boot/vmlinuz-linux
Found initrd image: /boot/initramfs-linux.img
No volume groups found
error: out of memory.
error: syntax error.
error: Incorrect command.
error: syntax error.
Syntax error at line 166
Syntax errors are detected in generated GRUB config file.
Ensure that there are no errors in /etc/default/grub
and /etc/grub.d/* files or please file a bug report with
/boot/grub/grub.cfg.new file attached.done
Now I had  time to mess around with the grub files, here's what's going wrong:
Syntax error at line 166
Line 166 happens to be the last line in /boot/grub/grub.cfg.new.
If I remove the 40_memtest file from /etc/grub.d/, the resulting grub.cfg.new is shorter and the error message is just
Syntax error at line 142
Such last line errors normally hint to a missing semicolon or unclosed brackets, something like that.
That's what happens here too.
menuentry 'Arch Linux' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-ba68a391-44a1-4849-aa24-1ed08facbd0f' {
load_video
set gfxpayload=keep
insmod gzio
insmod part_msdos
insmod ext2
set root='hd1,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1 ba68a391-44a1-4849-aa24-1ed08facbd0f
else
search --no-floppy --fs-uuid --set=root ba68a391-44a1-4849-aa24-1ed08facbd0f
fi
echo 'Loading Linux core repo kernel ...'
linux /boot/vmlinuz-linux root=UUID=ba68a391-44a1-4849-aa24-1ed08facbd0f rw quiet
echo 'Loading initial ramdisk ...'
initrd /boot/initramfs-linux-fallback.img
submenu 'Advanced options for Arch Linux' $menuentry_id_option 'gnulinux-advanced-ba68a391-44a1-4849-aa24-1ed08facbd0f' {
### END /etc/grub.d/10_linux ###
### BEGIN /etc/grub.d/20_linux_xen ###
### END /etc/grub.d/20_linux_xen ###
At the bottom, the submenu entry? This bracket never gets closed.
The reason for this lies in /etc/grub.d/10_linux line 274 ff:
echo "submenu '$(gettext_printf "Advanced options for %s" "${OS}" | grub_quote)' \$menuentry_id_option 'gnulinux-advanced-$boot_device_id' {"
is_top_level=false
fi
if ! test -e "/etc/arch-release" ; then
linux_entry "${OS}" "${version}" advanced \
"${GRUB_CMDLINE_LINUX} ${GRUB_CMDLINE_LINUX_DEFAULT}"
fi
if [ "x${GRUB_DISABLE_RECOVERY}" != "xtrue" ]; then
linux_entry "${OS}" "${version}" recovery \
"single ${GRUB_CMDLINE_LINUX}"
fi
list=`echo $list | tr ' ' '\n' | grep -vx $linux | tr '\n' ' '`
done
# If at least one kernel was found, then we need to
# add a closing '}' for the submenu command.
if ! test -e "/etc/arch-release" ; then
if [ x"$is_top_level" != xtrue ]; then
echo '}'
fi
fi
The first line in this excerpt opens the bracket, the two if clauses at the bottom should close it but they don't.
At leas the first clause returns false.
After just commenting out line 274, thus never opening the submenu entry, the error mesage is gone
LC_ALL=C sudo grub-mkconfig -o /boot/grub/grub.cfg
Generating grub configuration file ...
Found linux image: /boot/vmlinuz-linux
Found initrd image: /boot/initramfs-linux.img
No volume groups found
done
So, large text, small insight;
the problem isn't the submenu or the  10_Linux script itself but rather that
if ! test -e "/etc/arch-release" ;
isn't true.
That's because the file is there, it's empty (0B) but it should contain something or not be there at all. It being there but empty borks the whole thing
Removing it (= renaming it to "arch-release~")  solves the issue kind of.
It changes the appearance of the grub menu quite heavily (only Arch and Advanced are there, the 2 core repo kernel entries not) but the boot process still works.
Last edited by Caldazar (2013-12-20 17:20:55)

Similar Messages

  • [Solved] Incorrect volume size (LVM related?)

    For some reason I get incorrect volume size for my partition, when mounting.
    This is the correct size.
    lvdisplay
    --- Logical volume ---
    LV Name /dev/VolGroup00/ArchRules
    VG Name VolGroup00
    LV UUID 25HBCU-eBIF-cgsv-7exb-XE1y-c15E-MU1BQO
    LV Write Access read/write
    LV Status available
    # open 1
    LV Size 1,84 TB
    Current LE 482908
    Segments 5
    Allocation inherit
    Read ahead sectors auto
    - currently set to 256
    Block device 254:0
    After mounting.
    df -h
    /dev/mapper/VolGroup00-ArchRules 917G 529G 342G 61% /mnt/ArchRules
    Is this normal?
    Last edited by nuxorg (2009-08-11 20:36:35)

    Zariel wrote:What filesystem?
    EXT4

  • [SOLVED] Incorrect / Ugly Fonts in Epiphany Web Browser

    Hello everyone. I've done a ton of a searching (here and google) on this subject to no avail. It seems fonts on Facebook / Tumblr as well as some other sites have very incorrectly rendered fonts.
    I am currently using the freetype2-ubuntu patch and I have the ttf-win8 fonts installed as well. I also have the google fonts package installed.
    Here are some screenshots of what I am seeing.
    http://i.imgur.com/Ecem4HH.png
    http://i.imgur.com/bJqL82J.png
    Any input on this? Has anyone else experienced this?
    -- mod edit: read the Forum Etiquette and only post thumbnails http://wiki.archlinux.org/index.php/For … s_and_Code [jwr] --
    Last edited by jmanes (2015-01-18 08:29:16)

    Hello everyone. I solved the issue myself.
    It turns out that installing infinality from AUR was NOT a good idea. After doing a proper install using the pacman key and adding it to pacman.conf I now have beautiful fonts. Thanks for the responses!

  • [SOLVED] no UUID for /

    I just noticed that in the /dev/disk/by-uuid directory, the partition mounted on / isn't listed.
    There are no particular problems, and I can obtain the UUID with blkid, but I'm curious to know how are generated the links in that directory and how can I have all of them.
    EDIT: I've found out that udev is responsible for the symlink creation, executing /lib/dev/vol_id - I still don't understand why it's missing one partition...
    SOLVED: it was obviously my fault
    I cloned the first partition with Arch on the second partition, and now they have the same UUID, so one of them doesn't show up anymore.
    Last edited by daneel971 (2008-07-13 09:10:14)

    You only need to recompile virtualbox-modules. I did that yesterday and worked flawlessly.
    The thing you have to notice, is that you must update the kernel version defined in the PKGBUILD and virtualbox-modules.install:
    cp -r /var/abs/community/modules/virtualbox-modules .
    cd virtualbox-modules
    sed -i 's|2.6.26-ARCH|2.6.27-ARCH|' PKGBUILD virtualbox-modules.install
    makepkg

  • [SOLVED] Incorrect time displayed in my system

    Hey Archers,
    I have trouble correct time being displayed in my system.
    My BIOS time is:
    May 18 2012 08:39:21 PM IST
    Date command displays
    Sat May 19 02:09:59 IST 2012
    Clearly the time displayed by date command is localtime+05:30 (Asia/Kolkata), when I expect it to be just localtime.
    How do I correct this?
    I dont dual boot and have just Arch installed on my machine.
    And my /etc/rc.conf has this:
    HARDWARECLOCK="UTC"
    TIMEZONE="Asia/Kolkata"
    Please correct if my understanding is wrong, but is this how it works?
    When I say HARDWARECLOCK=UTC and TIMEZONE=''Asia/Kolkata",
    It assumes, hardwareclock, time displayed by BIOS, is infact UTC, and, since the user is interested in timezone, +0530, it adds 0530 to hardware clock.
    Thanks,
    Nachiket.
    Last edited by Nachiket (2012-05-19 07:22:47)

    Hey Tectu,
    The wiki article on Time was indeed splendid. It had all the information I needed. Thank you.
    Trilby,
    You were right, my hardware clock was on local time.
    So this is what I did to set it correct.
    1. Set the HARDWARECLOCK to "localtime" in /etc/rc.conf
    HARDWARECLOCK="localtime"
    TIMEZONE="Asia/Kolkata"
    2. Reboot the system
    3. Set the systemclock to UTC by doing a -0530 (minus 05 hours 30 minutes)
    # date `date -d "-05 hours -30 mins" +%m%d%H%M%Y`
    4. Copy the system clock value to hardware clock
    # hwclock --systohc
    5. Edit the /etc/rc.conf to set HARDWARECLOCK back to UTC
    HARDWARECLOCK="UTC"
    TIMEZONE="Asia/Kolkata"
    6. Reboot the system.
    And yes, now my system clock displays correct time
    Just setting HARDWARECLOCK to "localtime" also worked. But since I the beginners guide recomments "UTC" I did all this.
    Marking the thread as SOLVED.
    Regards,
    Nachiket.
    Last edited by Nachiket (2012-05-19 07:23:33)

  • [SOLVED]Incorrect character codification in openbox dialogs

    I'm triyng standalone openbox, and have noticed dialogs do not show the correct character codification, showing, for example, weird characters instead of accent vowels. What should I check to solve this? Normal windows (firefox, pcmanfm... ) do show them correctly, but not their dialogs.
    Last edited by Daerun (2012-02-08 13:33:16)

    That was the first thing I looked up.
    locale.gen has only two uncomented entries: ca_ES.UTF-8 UTF-8  and ca_ES ISO-8859-1  wich correspond to my locale;  rc.conf is set to LOCALE="ca_ES.UTF-8", and keymap to KEYMAP="es" (just in case that's of any relevance).
    Last edited by Daerun (2012-02-05 21:08:04)

  • [SOLVED] incorrect navigation after migration 6i - 10g

    Hi,
    we have a big problem after forms migration from 6i to 10g. :-(
    Our forms appliction contains a lot of forms with master detail data blocks in tabular layout. In most cases we have text fields inside the data blocks.
    After migration we are not able to set the focus on any record by mouse. We are also unable to change the focus from one data block to another. The only way to set the focus is clicking on a check box (if there is one).
    In 6i everything works: you can select records by mouse and you can focus another data block. (we tried migration by forms migration assistant and migration by forms builder with same results)
    Any hints?
    Thanks in advance, florian.
    Message was edited by:
    fschulze

    problem solved!
    applying patchset 3 (5983622) solved all navigation probs without programmig. just recompiled with 10.1.2.3 and everthing works as expected ;-))

  • [solved] Incorrect Screen Resolution on Boot

    As the title suggests my screen has the incorrect resolution on boot. I have an Nvidia card with two monitors plugged into it.
    After installing arch I found that screen was blank on boot. This could be fixed in two ways.
    Unplugging one monitor from the graphic's card DVI output and plugging it into the motherboard's DVI output. This gave me the correct resolution but if It would require me to reconnect the monitor to the graphics card after I logged in and started X (configured to use twinview with nvidia)
    Adding 'nomodeset' to the end of the my kernel line. This option will not require me to reconnect one monitor but uses an incorrect resolution
    The second option is what I am currently using. I am wondering if there is anything I can do to fix the resolution whilst retaining the convenience of not unplugging my monitor.
    Last edited by Pat55word (2012-03-17 01:03:25)

    Sounds like you have the internal graphics activated in the bios even though you use a dedicated Nvidia card. If I were you, I'd deactivate the internal graphics.
    Then we come to the resolution. The nvidia driver does not handle the console, so you'll have tp use either vesafb or uvesafb for it. They generally work ok, but they're limited to resolutions in your card's vbios, and in many cases the resolution you want isn't there.
    Do a search on the forums and the wiki about (u)vesafb, there's plenty written about them.
    Last edited by Gusar (2012-03-17 00:28:38)

  • [SOLVED]Incorrect time - 1h+

    Hello,
    I've followed the wiki's page: https://wiki.archlinux.org/index.php/time
    timedatectl status | grep local
    RTC in local TZ: no
    I've tried this, but didn't help:
    timedatectl set-local-rtc false
    timedatectl status
    Local time: Sat 2014-02-22 12:17:18 CET
    Universal time: Sat 2014-02-22 11:17:18 UTC
    Timezone: Europe/Copenhagen (CET, +0100)
    NTP enabled: n/a
    NTP synchronized: no
    RTC in local TZ: no
    DST active: no
    Last DST change: DST ended at
    Sun 2013-10-27 02:59:59 CEST
    Sun 2013-10-27 02:00:00 CET
    Next DST change: DST begins (the clock jumps one hour forward) at
    Sun 2014-03-30 01:59:59 CET
    Sun 2014-03-30 03:00:00 CEST
    UTC time is correct, but my arch uses localtime (shown in tint2). How to fix this? I've searched this forum and Google, but nothing solved the problem.
    Last edited by decas (2014-02-22 18:57:20)

    Either adjust it manually (e.g. in the BIOS), or use something like NTP to sync your software clock, then use hwclock to save the changes to the hardware clock (I believe that it saves it as UTC by default, but you might want to check that).

  • [SOLVED] Incorrect kernel version on core repository?

    I went on kernel.org this morning after I read a message somewhere about kernel 3.2 rc1 and noticed the "Latest Stable Kernel" is 3.0.4
    I'm thinking to myself "odd... didn't I upgrade my arch to 3.0.6 not long ago"
    First thing I did was went here
    http://projects.archlinux.org/svntogit/ … ages/linux
    and on line number 9
    _basekernel=3.0
    and on line number 17
    source=("ftp://ftp.kernel.org/pub/linux/kernel/v3.0/linux-${_basekernel}.tar.bz2"
    and then I went to ftp://ftp.kernel.org/pub/linux/kernel/v3.0/
    based on the PKGBUILD file ( from my point of view )... your only downloading "linux-3.0.tar.bz2" yet you've labelled it 3.0.6-2 ( "-2" being archlinux second revision of "3.0.6" ) in the core repository when really the latest version is 3.0.4 and we're actually using kernel 3.0.0
    am I missing something or what the hell is going on?
    edit: typo errors
    Last edited by sinatosk (2011-10-16 18:52:37)

    sinatosk wrote:ok but where is 3.0.6?
    http://git.kernel.org/?p=linux/kernel/g … ;a=summary

  • [SOLVED]Incorrect mountpoint for /home and /boot

    Hello Archers,
    I'm new to Arch, if you find my question is so dummy, let me know
    I have manually setup the partition like this:
    1. sdb1 NTFS with boot flag toggle, primary (My existing Windows XP)
    2. sdb2  with boot flag toggle, primary (will be used as /boot), type 83
    3. sdb5 logical (will be used as swap), type 82
    4. sdb6 logical (will be used as /), type 83
    5. sdb7 logical (will be used as /home), type 83
    6. sdb8 logical NTFS
    I have a small problem when installing Arch, it's about setting up filesystem and mountpoint.
    The installer asked me to select the swap, I chose sdb5, for / I chose sdb6, and it asked me to select additional partition to be mounted under new root, I chose sdb5 with the mount point /boot, sdb7 for /home. The installer show a summary of the filesystem and mountpoint before it makes changes to the hdd, everything is correct. But when it makes changes to my hdd, it said that it make a mountpoint at /mnt/boot and /mnt/home.:rolleyes:. It should make mountpoints at /boot and /home respectively. Why does it add a prefix /mnt to my custom mountpoint?
    It seems to be a bug in the installer.
    Any help are appreciated.
    Thanks
    Tinh
    Last edited by tinhtruong (2008-12-28 09:46:43)

    fumbles wrote:Because you are still running Arch from the CD and not the one you just installed on your computer.
    If so, the message generated by the installer is confusing, it need to be fixed to save some posts like this on the forum:D
    I'm not at that computer right now, so I cannot verify this. I will verify this problem in the evening and report back.
    Thanks for a quick reply.

  • [SOLVED] Incorrect File Permissions

    I did something very stupid involving a recursive chmod in the wrong directory.  I realized my mistake right away and stopped the execution, but I don't know how many files got hit.  I at least know /usr/bin got changed since I get the wonderful "sudo: must be setuid root". 
    Is it practical to try and fix some of the file permissions in single user mode or should I just wipe and reinstall Arch? It's a relatively clean/recent installation.
    Last edited by mdschechtman (2011-08-05 17:12:11)

    mdschechtman wrote:I did "# chown -R root:root .*", or at least I thought I did.
    So you did `chown', not `chmod' as you initially stated. If you did run that command, with ".*" as argument, it should have only changed the hidden files and directories recursively. But you seem unsure about the actual command you ran? Try `history | grep chown' maybe...
    mdschechtman wrote:In my panic, I forgot to check which directory I ran the command from.
    OK. My script should be able to fix the system files, provided you adjust $min accordingly.
    On the other hand, since you don't have an idea which directory is affected, `find' needs to do a lot of work on the whole /, you might as well just reinstall all of your packages... i.e. `pacman -S $(pacman -Qq)'. (Edit: Note though, pacman will not fix permissions or ownership of directories, but will, AFAIK, print a warning when they differ).
    Next time... Remember, don't panic!!!1
    Last edited by lolilolicon (2011-08-05 17:09:31)

  • [SOLVED]Incorrect thunar folder icons

    Hello I've been using the Area Blue icon theme for a few days but after a reboot yesterday the folder icons are GNOME icons. All the other icons are unaffected. I've tried deleting and re-downloading the icons but the folder icons just won't work. Any ideas?
    Edit:
    this is only happening in thunar all other programs and unaffected. PCmanFM works too
    Last edited by TheCash (2012-07-21 04:47:15)

    No I was saying that since I was setting up everything(themes, compositing, etc..) today I may have changed something that after the reboot caused the icons to "disappear".
    Also it is only in thunar that the folder icons are missing.
    I've tried searching around but I haven't seen anything so far, but I may have missed somthing
    "Having the icon pack in /usr/share/icons (not "/usr/share/themes") makes it available system-wide, for other users as well."
    Thank you that's what I meant.
    Last edited by TheCash (2012-07-20 09:16:10)

  • [SOLVED] Suddenly booting in emergency mode, why?

    Hi,
    i already searched here and with google and I could find problems regarding the emergency mode but none fitting to mine
    I really dont know what I shall do now.
    I just rebooted because my wifi was connected but i had no internet connection although it was there on other devices. after reboot it showed emergency mode like in the pictures below.
    plus i posted the error parts of the journal output.
    can someone help me with that?
    thank you very much
    Last edited by christian1337 (2015-04-28 18:20:31)

    christian1337 wrote:
    that actually helped, thank you very much
    But how can I prevent this? I guess it was because my notebook booted into windows and because II didn't want it to boot I just restarted while booting. not the gentle way but usually I had no problems with that. I mean I won't do that again now but can I maybe fix something in my fstab?
    # /etc/fstab: static file system information
    # <file system> <dir> <type> <options> <dump> <pass>
    tmpfs /tmp tmpfs nodev,nosuid 0 0
    # /dev/sdb8 UUID=3699c7ac-8e3e-42c6-b215-19965446990e
    LABEL=arch / ext4 rw,relatime,data=ordered 0 2
    # /dev/sdb7 UUID=570f4617-353e-4631-9825-2bc569f35af0
    LABEL=swap none swap defaults 0 0
    LABEL=stuff /media/stuff ntfs defaults,rw 0 2
    why is there a swap at all? When I installed arch I especially tried doing it without a swap drive because I have 16gb of ram, so I thought I don't need that?
    but to be safe I should exchange all the labels with UUIDs right?
    afterwards I will mark this thread as solved.
    UUID's are generally safer because they won't change over time. I got mixed up with labels referring to "/dev/sdb8" or "arch", so your current definitions should be fine as long as you don't introduce a new drive labelled arch.
    To get rid of mounting the swap partition, (This WILL disable hibernation) you can just prefix the swap line with a hash so it isn't parsed.
    To allow skipping of the Windows partition if it's in HybridBoot, add "nofail" to the options region. E.G: LABEL=stuff /media/stuff ntfs defaults,rw,nofail 0 0
    Last thing (Hopefully), the pass field, (the digit 2 in the "stuff" line) should be a zero, as fsck cannot scan NTFS as far as I know.

  • Grub, UEFI, and encrypted partitions

    I followed the tutorials on the Wiki regarding setting up luks encryption over LVM which worked fine. Part of this process involved getting grub to decrypt the root partition, which also worked. However, I later went and followed instructions for getting UEFI boot to work; I created a separate /boot partition, used grub-install, etc. I'm now in a weird state, though: grub is still using (and unlocking) the root partition and using whatever is in its /boot directory when it really should be using the /boot partition. I've managed to confuse myself enough through all this that I'm not sure what config files and commands I need to mess with to get grub to load the initramfs from the actual boot partition while not also screwing up the root partition that should be unlocked/mounted by systemd.
    My common sense tells me that the latter has nothing to do with the former but it took me long enough to figure out the hack of copying everything in the boot partition to root's /boot just to get the thing booting again after a kernel update that I'd rather just ask here

    tcdavis wrote:I'm now in a weird state, though: grub is still using (and unlocking) the root partition and using whatever is in its /boot directory when it really should be using the /boot partition.
    UEFI and a dedicated /boot partition are separate things, and they are not dependent on one another. The problem is most likely coincidental.
    Make sure your "root=" and "cryptdevice=" kernel parameters are correct. Edit /etc/default/grub, and use the UUID of the LUKS container on the new /boot partition, replacing the old UUID of the root filesystem. This should be the UUID of the LUKS container itself, not the filesystem contained within it. Use `cryptsetup luksUUID /dev/sda2` substituting sda2 with your /boot partition. This only applies to the kernel and is not directly related to GRUB, so it's just a precautionary measure.
    Make sure /boot is mounted, and regenerate grub.cfg:
    mount /boot
    grub-mkconfig -o /boot/grub/grub.cfg
    Delete the contents of /boot on the root partition to prevent confusion:
    umount /boot
    rm -r /boot
    mkdir /boot
    mount /boot
    Also make sure your /boot partition is being mounted (via crypttab and a keyfile) automatically at boot, or you will run into problems later on.
    Strike0 wrote:If you, in your first attempt, installed grub to the MBR and your bios is set to dual legacy/uefi, the grub bios may take precedence now. You should boot the machine/install ISO in pure efi mode before executing the grub install for uefi and best wipe the grub bios which probably installed itself to sectors before the first partition.
    I don't know enough about the GRUB internals to say whether or not the UUID of the /boot partition is embedded in GRUB's UEFI stub, but in theory the following commands should overwrite both the BIOS boot loader and UEFI.
    mount /boot
    grub-install --target=i386-pc --recheck
    grub-install --target=x86_64-efi --efi-directory=/boot/efi --bootloader-id=grub_uefi --recheck
    This way GRUB should use the correct /boot no matter if it is booting in BIOS or UEFI mode.
    If these instructions don't solve your problem, please specify what stage of the boot process is failing, and what you saw prior to the boot failure (e.g. did you get a GRUB rescue shell? Did you see the GRUB menu? Did GRUB indicate an incorrect UUID?)

Maybe you are looking for

  • To run a java program on windows xp startup

    hi , i have a sample HelloWorld.java program. i wrote a batch file to run this program as follows: set PATH=%PATH%;C:\Program Files\Java\jre1.6.0\bin; cd c:\test java HelloWorld This program runs when i click on the bat file. Next i add this batch fi

  • Cube w/ Bluetooth keyboard and mouse

    Hi ALL, Has anyone tried using their G4 Cube with a Bluetooth keyboard and/or mouse? I was thinking of using a USB D-Link bluetooth adapter with my new Bluetooth Apple keyboard and BT Mighty Mouse. I know the USB ports are only v1.1, so I thought I'd

  • Problems syncing BB Bold to Google apps email

    I have a BB Bold 9780.  I have my personal gmail account synced to it and previously had my work email synced to it through Outlook.  I just started a new job and deleted the old email sync.  However, my new job uses Google Business Apps and I cannot

  • How do I hide my iPad from a network?

    I am a computer network administrator, and I was hoping there was some sort of way I can hide my iPad from the network like you can do on laptops and computers.

  • Potential dynamic server list updating problem in cluster

    We are running a cluster of four Windows 2000 Server boxes under WLS           6.1SP2. We have seen the following behavior in our cluster. We shutdown           a cluster member and then bring it back up. When it comes back up, the           IIS plug