[Unsolved, closed] Grub not showing other kernel (linux-lts)

Hi,
Stuck with Grub not showing other kernel, started with willing to keep two kernels.
grub config file shows both kernels correctly but still not appearing at boot (it's like pale black/blue, seems I am stuck with grub legacy? tried reinstallation etc but didn't work):
Boot menu
Arch Linux
Arch Linux Fallback
HDT
Reboot
Power
Sorry can't produce screenshot.
Disk info
Device Type
/dev/sda1 Linux filesystem
/dev/sda2 Linux swap
/dev/sda3 Linux home
Note: gparted shows 'legacy_boot' flag on /sda1
Config/files/output are:
# update-grub
Generating grub configuration file ...
Found linux image: /boot/vmlinuz-linux-lts
Found initrd image: /boot/initramfs-linux-lts.img
Found fallback initramfs image: /boot/initramfs-linux-lts-fallback.img
Found linux image: /boot/vmlinuz-linux
Found initrd image: /boot/initramfs-linux.img
Found fallback initramfs image: /boot/initramfs-linux-fallback.img
No volume groups found
done
# cat /boot/grub/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_gpt
insmod ext2
set root='hd0,gpt1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt1 --hint-efi=hd0,gpt1 --hint-baremetal=ahci0,gpt1 c5349960-1eb2-4af6-a5c0-6b4356da4ae1
else
search --no-floppy --fs-uuid --set=root c5349960-1eb2-4af6-a5c0-6b4356da4ae1
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
if [ x$feature_timeout_style = xy ] ; then
set timeout_style=menu
set timeout=5
# Fallback normal timeout code in case the timeout_style feature is
# unavailable.
else
set timeout=5
fi
### END /etc/grub.d/00_header ###
### BEGIN /etc/grub.d/01_grub-customizer_menu_color_helper ###
### END /etc/grub.d/01_grub-customizer_menu_color_helper ###
### BEGIN /etc/grub.d/10_linux_proxy ###
menuentry "Arch Linux" --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-c5349960-1eb2-4af6-a5c0-6b4356da4ae1' {
load_video
set gfxpayload=keep
insmod gzio
insmod part_gpt
insmod ext2
set root='hd0,gpt1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt1 --hint-efi=hd0,gpt1 --hint-baremetal=ahci0,gpt1 c5349960-1eb2-4af6-a5c0-6b4356da4ae1
else
search --no-floppy --fs-uuid --set=root c5349960-1eb2-4af6-a5c0-6b4356da4ae1
fi
echo 'Loading Linux linux-lts ...'
linux /boot/vmlinuz-linux-lts root=UUID=c5349960-1eb2-4af6-a5c0-6b4356da4ae1 rw quiet
echo 'Loading initial ramdisk ...'
initrd /boot/initramfs-linux-lts.img
menuentry "Arch Linux, with Linux linux-lts" --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-linux-lts-advanced-c5349960-1eb2-4af6-a5c0-6b4356da4ae1' {
load_video
set gfxpayload=keep
insmod gzio
insmod part_gpt
insmod ext2
set root='hd0,gpt1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt1 --hint-efi=hd0,gpt1 --hint-baremetal=ahci0,gpt1 c5349960-1eb2-4af6-a5c0-6b4356da4ae1
else
search --no-floppy --fs-uuid --set=root c5349960-1eb2-4af6-a5c0-6b4356da4ae1
fi
echo 'Loading Linux linux-lts ...'
linux /boot/vmlinuz-linux-lts root=UUID=c5349960-1eb2-4af6-a5c0-6b4356da4ae1 rw quiet
echo 'Loading initial ramdisk ...'
initrd /boot/initramfs-linux-lts.img
menuentry "Arch Linux, with Linux linux-lts (fallback initramfs)" --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-linux-lts-fallback-c5349960-1eb2-4af6-a5c0-6b4356da4ae1' {
load_video
set gfxpayload=keep
insmod gzio
insmod part_gpt
insmod ext2
set root='hd0,gpt1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt1 --hint-efi=hd0,gpt1 --hint-baremetal=ahci0,gpt1 c5349960-1eb2-4af6-a5c0-6b4356da4ae1
else
search --no-floppy --fs-uuid --set=root c5349960-1eb2-4af6-a5c0-6b4356da4ae1
fi
echo 'Loading Linux linux-lts ...'
linux /boot/vmlinuz-linux-lts root=UUID=c5349960-1eb2-4af6-a5c0-6b4356da4ae1 rw quiet
echo 'Loading initial ramdisk ...'
initrd /boot/initramfs-linux-lts-fallback.img
submenu "Advanced options for Arch Linux"{
menuentry "Arch Linux, with Linux linux" --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-linux-advanced-c5349960-1eb2-4af6-a5c0-6b4356da4ae1' {
load_video
set gfxpayload=keep
insmod gzio
insmod part_gpt
insmod ext2
set root='hd0,gpt1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt1 --hint-efi=hd0,gpt1 --hint-baremetal=ahci0,gpt1 c5349960-1eb2-4af6-a5c0-6b4356da4ae1
else
search --no-floppy --fs-uuid --set=root c5349960-1eb2-4af6-a5c0-6b4356da4ae1
fi
echo 'Loading Linux linux ...'
linux /boot/vmlinuz-linux root=UUID=c5349960-1eb2-4af6-a5c0-6b4356da4ae1 rw quiet
echo 'Loading initial ramdisk ...'
initrd /boot/initramfs-linux.img
menuentry "Arch Linux, with Linux linux (fallback initramfs)" --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-linux-fallback-c5349960-1eb2-4af6-a5c0-6b4356da4ae1' {
load_video
set gfxpayload=keep
insmod gzio
insmod part_gpt
insmod ext2
set root='hd0,gpt1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt1 --hint-efi=hd0,gpt1 --hint-baremetal=ahci0,gpt1 c5349960-1eb2-4af6-a5c0-6b4356da4ae1
else
search --no-floppy --fs-uuid --set=root c5349960-1eb2-4af6-a5c0-6b4356da4ae1
fi
echo 'Loading Linux linux ...'
linux /boot/vmlinuz-linux root=UUID=c5349960-1eb2-4af6-a5c0-6b4356da4ae1 rw quiet
echo 'Loading initial ramdisk ...'
initrd /boot/initramfs-linux-fallback.img
### END /etc/grub.d/10_linux_proxy ###
### BEGIN /etc/grub.d/20_linux_xen ###
### END /etc/grub.d/20_linux_xen ###
### BEGIN /etc/grub.d/30_os-prober ###
### 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+ ###
cat /etc/default/grub shows:
GRUB_DEFAULT="0"
GRUB_TIMEOUT="5"
GRUB_DISTRIBUTOR="Arch"
GRUB_CMDLINE_LINUX_DEFAULT="quiet"
GRUB_CMDLINE_LINUX=""
# Preload both GPT and MBR modules so that they are not missed
GRUB_PRELOAD_MODULES="part_gpt part_msdos"
# Uncomment to enable Hidden Menu, and optionally hide the timeout count
#GRUB_HIDDEN_TIMEOUT="5"
#GRUB_HIDDEN_TIMEOUT_QUIET="true"
# Uncomment to use basic console
GRUB_TERMINAL_INPUT="console"
# Uncomment to disable graphical terminal
#GRUB_TERMINAL_OUTPUT="console"
# The resolution used on graphical terminal
# note that you can use only modes which your graphic card supports via VBE
# you can see them in real GRUB with the command `vbeinfo'
GRUB_GFXMODE="auto"
# Uncomment to allow the kernel use the same resolution used by grub
GRUB_GFXPAYLOAD_LINUX="keep"
# Uncomment if you want GRUB to pass to the Linux kernel the old parameter
# format "root=/dev/xxx" instead of "root=/dev/disk/by-uuid/xxx"
#GRUB_DISABLE_LINUX_UUID="true"
# Uncomment to disable generation of recovery mode menu entries
GRUB_DISABLE_RECOVERY="true"
# Uncomment and set to the desired menu colors. Used by normal and wallpaper
# modes only. Entries specified as foreground/background.
#GRUB_COLOR_NORMAL="light-blue/black"
#GRUB_COLOR_HIGHLIGHT="light-cyan/blue"
# Uncomment one of them for the gfx desired, a image background or a gfxtheme
#GRUB_BACKGROUND="/path/to/wallpaper"
#GRUB_THEME="/path/to/gfxtheme"
# Uncomment to get a beep at GRUB start
#GRUB_INIT_TUNE="480 440 1"
#GRUB_SAVEDEFAULT="true"
Last edited by jackpot (2014-08-20 07:53:27)

clfarron4 wrote:Did you install os-prober? Try running that and then running the other commands.
Yes, did. Same result.
Sanity Check: Is it booting from LiveUSB/CD? I would not expect HDT/Reboot or Power Off entries from a generated grub config. I would expect those entries from a LiveUSB/CD.
From system itself, but tried all options (I knew) like 1) using fallback to install LTS and run commands, 2) live-CD, 3) kernel parameter systemd.unit etc
No worries, I am giving up on issue for some time.
EDIT:
Thanks
Last edited by jackpot (2014-08-20 11:14:32)

Similar Messages

  • [Solved] Grub not showing windows partition

    Hey all,
    So I tried setting up my Win7/Arch dual boot system yesterday and I think I got the partitions right (correct me if I made any mistakes), but GRUB was not showing my main windows partition. I went into the menu.lst file and uncommented what I thought was my windows partition, but turned out to be my Samsung recovery partition. After a reboot, Grub now won't even load and automatically reboots the computer on failing. I'm sure that once I can figure out how to get back into that config file from my installer CD, I will be able to re-comment that windows entry, but I still am unsure how to get it to recognize my main windows partition.
    Here are the partitions:
    Name   Flags    Part Type       FS type     [Label]            Size
    sda1    (Boot)   Primary           ntfs          [RECOVERY]   16GB
    sda2                Primary           ntfs           [SYSTEM]       104MB
    sda3                Primary           ntfs                                 372GB  (main windows7 partition)
    sda5                Logical            ext2           [root]             15GB
    sda6                Logical            swap          [swap]            4GB
    sda7    (Boot)   Logical            ext2           [boot]            100 MB
    sda8                Logical            ext3                                 92GB  (home Linux partition)
    Thanks for your help
    Last edited by RichardPW (2011-12-05 00:01:57)

    Okay so first I tried recommenting all of the windows boot information with no luck. Then I changed the windows line to "rootnoverify (hd0,1)," also with no luck. Grub still tries to load but crashes and reboots the system before presenting me with any options.
    Here are the options, if this helps at all.
    # (0) Arch Linux
    title Arch Linus
    root (hd0,6)
    kernel /vmlinuz-linux root=/dev/sda5 ro
    initrd /initramfs-linux.img
    # (1) Arch Linux
    title Arch Linux Fallback
    root (hd0,6)
    kernel /vmlinuz-linux root=/dev/sda5 ro
    initrd /initramfs-linux-fallback.img
    # (2) Windows
    title Windows
    rootnoverify (hd0,1)
    makeactive
    chainloader +1

  • Edited picture closed & saved not showing in organizer as edited?

    Today, I have edited, saved and closed pictures as I have been doing for years but they are not showing up in organizer in the edited version.  Using Photoshop Elements 9.  Anybody know what may have happened?
    Sandy

    This could be because the option "Include in Elements Organizer" is not checked in Save As dialog.
    See when you save the image in Editor, above option is checked.

  • LDOM dladm does not show other interface.

    Create another vnet1 on LDOM (ldg0). But dladm does not show it. There are entries in path-to-inst for it and I was able plumb interface.
    bash-3.00# ifconfig -a
    lo0: flags=2001000849<UP,LOOPBACK,RUNNING,MULTICAST,IPv4,VIRTUAL> mtu 8232 index 1
    inet 127.0.0.1 netmask ff000000
    vnet0: flags=1000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4> mtu 1500 index 2
    inet 10.2.100.77 netmask ffffff00 broadcast 10.2.100.255
    ether 0:14:4f:fb:32:a
    vnet1: flags=1000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4> mtu 1500 index 3
    inet 192.168.30.30 netmask ffffff00 broadcast 192.168.30.255
    ether 0:14:4f:fb:6c:99
    bash-3.00# dladm show-dev
    vnet0 link: unknown speed: 0 Mbps duplex: unknown
    bash-3.00#
    Yet dladm does not show device. What have I done wrong?
    Here the ldm binding info for just networking
    # ldm list-bindings primary (network only)
    VSW
    NAME MAC NET-DEV ID DEVICE LINKPROP DEFAULT-VLAN-ID PVID VID MTU MODE
    primary-vsw0 00:14:4f:fb:1d:38 e1000g0 0 switch@0 1 1 1500
    PEER MAC PVID VID MTU LINKPROP
    vnet0@ldg0 00:14:4f:fb:32:0a 1 1500
    vnet1@lqwest 00:14:4f:fb:b0:34 1 1500
    vnet2@ldg0 00:14:4f:fb:6c:99 1 1500
    # ldm list-bindings ldg0 (network only)
    NETWORK
    NAME SERVICE ID DEVICE MAC MODE PVID VID MTU LINKPROP
    vnet0 primary-vsw0@primary 0 network@0 00:14:4f:fb:32:0a 1 1500
    PEER MAC MODE PVID VID MTU LINKPROP
    primary-vsw0@primary 00:14:4f:fb:1d:38 1 1500
    vnet1@lqwest 00:14:4f:fb:b0:34 1 1500
    vnet2@ldg0 00:14:4f:fb:6c:99 1 1500
    NAME SERVICE ID DEVICE MAC MODE PVID VID MTU LINKPROP
    vnet2 primary-vsw0@primary 1 network@1 00:14:4f:fb:6c:99 1 1500
    PEER MAC MODE PVID VID MTU LINKPROP
    primary-vsw0@primary 00:14:4f:fb:1d:38 1 1500
    vnet0@ldg0 00:14:4f:fb:32:0a 1 1500
    vnet1@lqwest 00:14:4f:fb:b0:34 1 1500
    It appears to be working, but is this correct since dladm does not show the vnet1 interface?

    I had the same problem. SUN support recommends latest kernel patches. That solved my problem.

  • 3.14 announced as Greg's next LTS kernel. linux-lts -- 3.14?

    As the title says, Greg has announced officially that 3.14 will be the next LTS kernel he is maintaining. Will ArchLinux be moving the linux-lts branch to 3.14? (Should I have posted this on the Arch Mailing Lists?)
    Last edited by clfarron4 (2014-07-03 19:54:24)

    Indeed it is. I'll request for this to be closed.

  • Closed Captioning not showing up at specified In / Out points

    Hi all,
    I recently upgraded to a trial of 7.2.1 (I'm a *long* time CS user) and am having an issue with closed captioning that's got me pulling my hair out. Upon importing a .scc file and inspecting it in the captions tab, I have all the captions I'm expecting at the proper timecodes (for example if I look up the start of a line in the program window the start timecode matches the "In" timecode listed in the Captions tab).
    However upon playing the timeline and turning on Closed Caption display - the captions are not displaying (nor disappearing) at the in/out timecodes listed in the caption tab. They're showing up (roughly) seven seconds later at the beginning of the program, and over 11 seconds late by the end of the program.
    Does anyone have the foggiest idea how to resolve this? I guess it's possible it's just a player issue and the issue will correct itself on output, but that's not really comforting. I could do what I need on this job by renewing my license for some other software, but Premiere would be a more versitile use of my limited software upgrade budget - but only if it can actually do the job properly.

    Hi Mark and monstremoi,
    With all the fiddling I've been doing in raw captioning files the fact that I didn't just try increasing the hight of the track is completely rediculous. Lo and behold, there are the handles! Once I could actually see the captions in the track I noticed something interesting - that the .scc and .xml files are being interpreted quite differently.
    If I take the same caption source file and output one xml and one scc and lay them on top of each other, this is what it looks like:
    The XML is starting immediately at timecode 0, even though the first start time should be 4:06 (weirdly the scc is actually starting at the right time code in this test, something it's refused to do previously).
    If I manually set the offset of the first caption by forwarding the xml caption track to 4:06 we get this:
    *This* XML track seems to play out synchronous with the program albeit with some odd formatting (it doesn't appear to be reading any of the font positioning information from the timed text file, it's just playing everything top frame, justified left.
    Already though up above you can see though that although the SCC stars at the right timecode, it's starting to drift out of sync less than 30 seconds in - which doesn't make any sense when both have been output from the same 29.97 timebase source.
    Monstremoi - to answer you questions, no I've not done any captioning work in premiere pro previously. I actually didn't even know it was a feature until I read about the improvements in CC. Most of our captioning files come from Annotation Edit (zeitanker.com). If they're not prepared in AnnotationEdit / AnnotationTranscriber, we usually do some conversion work through it before outputting (usually to set offsets or whatever if we're adding presentation cards or something).
    Happy to send you files to pull apart - although I'd rather not post them as a forum d/l link. Do you have an e-mail I can send them to?

  • Japanese font "MS PGothic" not showing properly in linux machine

    Hi,
    I am using this font "MS PGothic" in my swings application to display Japanese font,
    But in SOME of the linux machines, it is not displayed properly
    linux os : Red Hat linux Enterprise edition 5.0.
    Do I need to install some packages for MS PGothic font to get installed in red hat linux.
    please help.
    Regards,
    bt

    You can get the TTF file and put it in your project, so will not have to care about system configuration.
    Good luck

  • AirPort Menu not showing other networks except the one it's connected to.

    AirPort menu is strange indeed. Only for the first time, it shows the list of all available networks.
    Now I cannot see any other networks. Is this a bug or something?

    Andy34567 wrote:
    I recently updated to OS X version 10.6.4 and since then my airport does not want to start up. I was able to previously find my own network (and others in range), but now I can see no networks to join.
    Welcome to Apple's discussion groups.
    You might try resetting your connection settings using the steps listed in this message:
    http://discussions.apple.com/thread.jspa?messageID=10695921&start=1
    They're not guaranteed to solve the problem, but they'll only take you a minute or so to try.

  • NOTES show other IMAP messages.....why?

    In the section called REMINDERS, that shows Notes and To Do, Mail is displaying folders that should be in the IMAP area, not in here.
    Does anyone know why?

    looks like messed up mail preferences. quit Mail and move the file homedirectory/library/preferences/com.apple.mail.plist to the desktop. start Mail. it will be empty and you'll have to recreate all your accounts. once you do Mail will recognize existing mailboxes so you won't have to redownload your messages. the problem should hopefully go away.

  • Family sharing not showing other family members' purchases

    I installed Family Sharing about a week ago.  It worked great, and everyone was able to download music (didn't try apps). Now not listing any family members under Purchased in iTunes (whether on Mac or iOS).  Same for other family members.   In app store, I see other family members listed, but, if I click on it, it says they have no purchases (clearly not true).  Tried all hints at If you don't see your family's shared content - Apple Support with no luck.  Also, fully disabled family sharing and then re-invited everyone, but still no luck.  Any idea how to correct this issue?

    I have the same issue. I can see my wife's purchases but on her phone, it says that I have no purchases. I also tried If you don't see your family's shared content - Apple Support and disabling family sharing and re-inviting her. I would also like to know how to fix this.

  • Network not showing up on Linux (Ubuntu 13.10)

    Product:  Linksys Wireless-G 2.4 GHz 54Mbps Broadband Router WRT54G v.4
    OS: Ubuntu 13.10 on Samsung N150 Netbook -- works when hardwired into router, but not wirelessly
    OS: Windows 7 on Lenovo Windows 7 PC -- does not work even hardwired in
    Was working fine for over a year, but all of a sudden the network disappeared from the Wireless list this afternoon.
    Solved!
    Go to Solution.

    Wireless Configurations
    What wireless modes are you using?
    Try setting a manual Channel to a open or unused channel. 1, 6 or 11. 11 for single mode N if the channel is clear. 13 for EU regions.
    What security mode are you using? Preferred security is WPA-Personal. WPA2/AES Only. Some WiFi adapters don't support AES, so you might want to try TPIK [/url] only or Auto TPIK and AES.
    What wireless devices do you have connected?
    Any 2.4Ghz or 5Ghz cordless house phones or WiFi APs near by?
    Any other WiFi routers in the area? Link> Use http://www.metageek.net/support/metageek-software-archives/ to find out. How many?
    Router Placement
    Forum User - "Well I feel really dumb. After moving the router away from other electronic devices my speeds are back to normal. Just a heads up for anyone experiencing slow speeds, you might want to move it away from other electronics and see if that helps."
    3-6' feet minimum safe distance between devices.
    Placement on main level floor and central in the building and WELL ventilated is preferred. Not in basements or closets as building materials, or near by electronics devices could interfere or hinder good signal propagation.

  • AP 1141 SSIDL not showing other ssids

    I have configured our Ap 1141 with two ssid. One is the guest ssid and the other is marked to advertise in the SSIDl IE.  I can only see the guest-mode ssid in the broadcast.  I can connect to both if I manually configure the client to connect to the non-guest mode ssid.  Im wondering if my understanding of of the SSIDL advertise command is incorrect or if I have missed something.
    My goal is to get boath ssids to broadcast without having to put them on seperate vlans, as I dont want to configure trunking and routing for vlans just to broadcast a second ssid.
    Alternativly, if the only way to get multiple ssids to broadcast is to enable mbssid and configure the vlans, then would it be possible to to get the ap to do the inter vlan routing or have all traffic exiting the ap untagged? Again I dont want to have to configure the switches and the router to route the vlans.
    config is
    version 12.4
    no service pad
    service timestamps debug datetime msec
    service timestamps log datetime msec
    service password-encryption
    hostname CiscoAP1
    aaa new-model
    aaa authentication login default local
    aaa authorization exec default local
    aaa session-id common
    dot11 syslog
    dot11 ssid AccuAccess new
       authentication open
       authentication key-management wpa version 2
       wpa-psk ascii 7
       information-element ssidl advertisement
    dot11 ssid Hub 100 new
       authentication open
       authentication key-management wpa version 2
       guest-mode
       infrastructure-ssid optional
       wpa-psk ascii 7
       information-element ssidl
    power inline negotiation injector 4055.39f2.1203
    crypto pki trustpoint TP-self-signed-972165635
    enrollment selfsigned
    subject-name cn=IOS-Self-Signed-Certificate-972165635
    revocation-check none
    rsakeypair TP-self-signed-972165635
    crypto pki certificate chain TP-self-signed-972165635
    certificate self-signed 01
    omitted
      quit
    username admin privilege 15 secret 5
    bridge irb
    interface Dot11Radio0
    no ip address
    no ip route-cache
    encryption mode ciphers aes-ccm
    ssid AccuAccess new
    ssid Hub 100 new
    antenna gain 0
    power local 17
    power client 17
    channel least-congested 2412 2437 2462
    station-role root
    bridge-group 1
    bridge-group 1 block-unknown-source
    no bridge-group 1 source-learning
    no bridge-group 1 unicast-flooding
    bridge-group 1 spanning-disabled
    interface GigabitEthernet0
    no ip address
    no ip route-cache
    duplex auto
    speed auto
    no keepalive
    bridge-group 1
    no bridge-group 1 source-learning
    bridge-group 1 spanning-disabled
    interface BVI1
    ip address 172.16.20.95 255.255.255.0
    no ip route-cache
    ip default-gateway 172.16.20.1
    no ip http server
    ip http authentication aaa
    ip http secure-server
    ip http help-path http://www.cisco.com/warp/public/779/smbiz/prodconfig/help/eag
    bridge 1 route ip
    line con 0
    line vty 0 4
    transport input ssh
    transport output ssh
    end
    Key hashes removed to prevent rainbow table lookups.
    Thanks for your help and let me know if my objectives are not clear
    Nick

    >> In Autonomous infrastructure.. its always 1:1 Mapping between SSID and the VLAN... Its not possible to map 2 SSIDs with the same VLAN.
    >> To broadcast multiple SSID, the command is as follows..
    dot11 ssid AccuAccess new
       authentication open
       authentication key-management wpa version 2
       wpa-psk ascii 7
       mbssid guest-mode
       information-element ssidl advertisement
    dot11 ssid Hub 100 new
       authentication open
       authentication key-management wpa version 2
       mbssid guest-mode
       infrastructure-ssid optional
       wpa-psk ascii 7
       information-element ssidl
    en
    conf t
    int dot11 0
    mbssid
    end
    Lemme know if this answered ur question and please dont forget to rate the usefull posts!!
    Regards
    Surendra

  • Meeting request do not show other attendees

    I'm having an issue where when I receive a meeting request (redirected from MS Outlook 2003, via Rule), I cannot see any other attendees invited to the meeting.
    Similarly, when receiving emails, I cannot see any one else copied (To or CC'ed) on the email.
    Have I missed a setting?
    Any assistance is appreciated!

    Hi,
    Reload the calendar database by following the steps provided:
    To delete contact list data over the wireless network and then reload it from the BlackBerry® Enterprise Server, complete the following steps:
        1. On the Home screen of the BlackBerry smartphone, click Contacts.
       2. Display the menu and click Options.
       3. Highlight "Desktop"
       4. Type RSET.  ( You will not see anything happen until the "T" is clicked"
       5.  This will erase your Desktop address book, and reload it from your server. Continue?  YES
       6.  The Desktop address book has been wiped. It will be repopulated from your server.  OK
       7.  On the homescreen > search Service Book
       8.  Choose service book>  highlight  DESKTOP SYNC - menu key, delete.
       9. Highligh DESKTOP CICAL - menu key, delete.
       10. Send new service books from the user's account in the BAS.
       11. Confirm if the attendees are listed.
    Try and let us know.
    Thanks

  • FaceTime not showing other person on ipad

    Hi. I am using FaceTime on the iPad2 3G/wifi version, 64GB. I  used it tonight to communicate with someone using the same iPad, but the 32GB. Both of us we connected to wifi, however, when I left FaceTime running, and clicked on the home key to check on an app, upon clicking the green bar at the top to 'return to facetime', I could no longer see the person I was talking to. Only myself. I could hear him, and he could hear and see me, but I could not get the camera to switch back to the original format. He tried the same thing to test it on his iPad,, and was able to return to the standard FaceTime screen. any thoughts?

    Ok I guess I posted prematurely. I did a reset and FaceTime now seems to be working properly even if I leave the application to check on something else and return.

  • Onustream can see chat and ads with sound but when eagles do not show, other videos do

    Have been watching eagles for months on ustreamtv. today I can get on chat line and watch and hear ads. When eagles are supose to be on I have black screen. Some other people are having the same problem.
    I am sure I have the latest irefox update.

    Hi
    I understand  - sorry to have missed your point before now.
    Some sites don't display those previews in safari - secure pages (https) for one, and also sites that are redirected.
    Taking the example in your screenshot, the site http://fabulouslyartsy.blogspot.com/ actually redirects to http://www.fabulouslyartsy.com/ and Safari (rather annoyingly) doesn't 'follow' the redirection & show the appropriate preview. See the image below - the blank preview is for the blogspot address, and the one visible to the right is from going directly to the site.

Maybe you are looking for