Teddy's q&a

Hi again guys... I thought it'd be pretty stupid of me that whenever I would run into a problem I would make a new thread about it. Hence, this is the only thread I am ever going to post in regarding my own questions.
I would like to start off with a small question. I have the following:
    private int getButtonIndex(Object o)
        for(int i=0;i<b.length;i++)
            if(b==o)
return i;
return -1;
} //Just wrote this to clarify, has nothing to do with my problem
public void actionPerformed(ActionEvent e)
int buttonIndex = getButtonIndex(e.getSource());
if(buttonIndex>-1 && buttonIndex<24)
this.s[buttonIndex].play();
guitarstring[0]=s[buttonIndex];
Now this code works perfectly. However, I want that whenever I play a sound (this.s[buttonIndex].play();) I want all other sounds that might be playing to stop playing. Is this possible? Thanks in advance!
/Teddy

Well it's a strange thing really... I'm sorry for not being more informative in my last post, I had other things on my mind I suppose. The code you gave me serves its purpose but it screwed up alot of other methods for a reason I can not find :S
This is my entire code, the problems are described in the comments (brace yourselves!):
import java.awt.*;
import java.awt.event.*;
import java.applet.*;
public class JavaForum extends Applet implements ActionListener
    Button[] b = new Button[150];
    Button [] b_function = new Button[8];
    Button[] b_chord = new Button[7];
    AudioClip[] s = new AudioClip[b.length];
    AudioClip[] guitarstring = new AudioClip[6];
    Color c1 = new Color(213,174,124,0);
    Color c2 = new Color(171,155,138,0);
    TextField ackord, delay;
    Font font = new Font("Times New Roman", Font.PLAIN, 8);
    //String values which represent the corresponding notes of the AudioClips
    String[] st_b = {"B","C","C#","D","D#","E","F","F#","G","G#","A","A#","B","C","C#","D","D#","E","F","F#","G","G#","A","A#","B"};
    String[] st_g = {"G","G#","A","A#","B","C","C#","D","D#","E","F","F#","G","G#","A","A#","B","C","C#","D","D#","E","F","F#","G"};
    String[] st_d = {"D","D#","E","F","F#","G","G#","A","A#","B","C","C#","D","D#","E","F","F#","G","G#","A","A#","B","C","C#","D"};
    String[] st_a = {"A","A#","B","C","C#","D","D#","E","F","F#","G","G#","A","A#","B","C","C#","D","D#","E","F","F#","G","G#","A"};
    String[] st_e = {"E","F","F#","G","G#","A","A#","B","C","C#","D","D#","E","F","F#","G","G#","A","A#","B","C","C#","D","D#","E"};
    int[] xpos = {0,48,93,133,169,202,234,264,292,318,344,370,393,414,435,456,476,496,516,535,552,569,583,597,609};
    int delay1;
    Image g_greppbrada;
    //Creates button for ONE guitar string
    private void addButtons(int startnr, int ypos, String[] notes)
        for(int i=startnr;i<(startnr+25);i++)
          b[i] = new Button(notes[i-startnr]);
          b.addActionListener(this);
add(b[i]);
b[i].setLocation(xpos[i-startnr],ypos);
b[i].setSize(10, 10);
b[i].setFont(font);
b[i].setBackground(c2);
b[i].setForeground(Color.black);
//Method which help create buttons with different functions
private void addButtonFunction(int index, String st_name, int x, int y, int w, int h)
b_function[index] = new Button(st_name);
b_function[index].addActionListener(this);
add(b_function[index]);
b_function[index].setLocation(x,y);
b_function[index].setSize(w, h);
//b_function[index].setFont(font1);
//Function which gets an index value from a specified object
private int getButtonIndex(Object o)
for(int i=0;i<b.length;i++)
if(b[i]==o)
return i;
return -1;
//Method which delays the playing of an audioclip
public void delay(int delaytime)
try
Thread.sleep(delaytime);
catch (Exception e)
System.out.println("Failed to sleep - " + e);
//Method which plays all elements in the guitarstring array. Takes the delay value into consideration.
public void strumChord()
for(int i = 0; i<guitarstring.length; i++)
this.guitarstring[i].play();
this.delay(delay1);
//The famous "Stairway to Heaven" intro -- in Java! Haha...
public void stairWay()
this.s[82].play();
this.delay(delay1);
this.s[55].play();
this.delay(delay1);
this.s[30].play();
this.delay(delay1);
this.s[5].play();
this.delay(delay1);
this.s[81].play();
this.s[7].play();
this.delay(delay1);
this.s[30].play();
this.delay(delay1);
this.s[55].play();
this.delay(delay1);
this.s[7].play();
this.delay(delay1);
this.s[80].play();
this.s[8].play();
this.delay(delay1);
this.s[30].play();
this.delay(delay1);
this.s[55].play();
this.delay(delay1);
this.s[8].play();
this.delay(delay1);
this.s[79].play();
this.s[2].play();
this.delay(delay1);
this.s[28].play();
this.delay(delay1);
this.s[52].play();
this.delay(delay1);
this.s[2].play();
this.delay(delay1);
this.s[78].play();
this.s[0].play();
this.delay(delay1);
this.s[26].play();
this.delay(delay1);
this.s[52].play();
this.delay(delay1);
this.s[26].play();
this.delay(delay1*2);
this.s[0].play();
this.delay(delay1);
this.s[26].play();
this.delay(delay1);
this.s[52].play();
this.delay(delay1);
this.s[102].play();
this.s[75].play();
this.s[50].play();
this.delay(delay1);
this.s[102].stop();
this.s[75].stop();
this.s[50].stop();
this.s[100].play();
this.s[77].play();
this.s[52].play();
this.s[26].play();
this.delay(delay1);
this.s[100].play();
this.s[77].play();
this.s[52].play();
this.s[26].play();
//Method which "forms" a chord by giving the six "guitar strings"
//(the guitarstring array) different audio values
public void formChord(int e, int b, int g, int d, int a, int e2)
guitarstring[0] = s[e];
guitarstring[1] = s;
guitarstring[2] = s[g];
guitarstring[3] = s[d];
guitarstring[4] = s[a];
guitarstring[5] = s[e2];
//Method which creates a button which plays a predefined chord
private void addChordButton(int index, String chord, int x, int y)
b_chord[index] = new Button(chord);
b_chord[index].addActionListener(this);
add(b_chord[index]);
b_chord[index].setLocation(x,y);
b_chord[index].setSize(40,20);
//Method which creates textfields with various functions
private void addTextFieldFunction(TextField name, int num, int x, int y, int w, int h, String text)
name = new TextField(4);
add(name);
name.setSize(w,h);
name.setLocation(x,y);
name.setText(text);
name.addActionListener(this);
public void init()
setLayout(null);
g_greppbrada = this.getImage(getDocumentBase (),"grafik/greppbrada.png");
//Various textfield functions
//this.addTextFieldFunction(ackord, 2, 0, 84, 40, 20, "E");
//this.addTextFieldFunction(delay, 4, 160, 84, 40, 20, "200");
//Another strange thing: this one works, but not the above one. How very odd!
delay = new TextField(4);
add(delay);
delay.setSize(40,20);
delay.setLocation(536,105);
delay.setText("200");
delay.setBackground(c1);
//delay.setFont(font1);
delay.addActionListener(this);
//Adds all button elements from the "b" array. New clause for new corresponding guitar string.
this.addButtons(0, 3, st_e);
this.addButtons(25, 15, st_b);
this.addButtons(50, 30, st_g);
this.addButtons(75, 44, st_d);
this.addButtons(100, 58, st_a);
this.addButtons(125, 72, st_e);
//Adds buttons which will play predefined chords
this.addChordButton(0, "E", 80, 104);
//Adds various button functions
this.addButtonFunction(0, "Strum", 581, 105, 40, 20);
this.addButtonFunction(1, "Tryck h�r om du heter Tomas", 140, 104, 170, 20);
//I should really simplify this...
this.addButtonFunction(2, "", 650, 7, 80, 2);
b_function[2].addMouseListener(new MouseAdapter()
public void mouseEntered(MouseEvent me)
guitarstring[0].play();
this.addButtonFunction(3, "", 650, 20, 80, 2);
b_function[3].addMouseListener(new MouseAdapter()
public void mouseEntered(MouseEvent me)
guitarstring[1].play();
this.addButtonFunction(4, "", 650, 34, 80, 2);
b_function[4].addMouseListener(new MouseAdapter()
public void mouseEntered(MouseEvent me)
guitarstring[2].play();
this.addButtonFunction(5, "", 650, 49, 80, 2);
b_function[5].addMouseListener(new MouseAdapter()
public void mouseEntered(MouseEvent me)
guitarstring[3].play();
this.addButtonFunction(6, "", 650, 63, 80, 2);
b_function[6].addMouseListener(new MouseAdapter()
public void mouseEntered(MouseEvent me)
guitarstring[4].play();
this.addButtonFunction(7, "", 650, 77, 80, 2);
b_function[7].addMouseListener(new MouseAdapter()
public void mouseEntered(MouseEvent me)
guitarstring[5].play();
//All AudioClip-objects are given corresponding audiofiles (with the same name)
for(int i=0;i<s.length;i++)
s[i] = this.getAudioClip(getDocumentBase(), "sound/s"+i+".wav");
//The inital values for the guitar strings
for(int i=0;i<guitarstring.length;i++)
guitarstring[i] = s[25*i];
//Paints the fret board
public void paint(Graphics g)
g.drawImage(g_greppbrada,0,0,this);
g.drawString("Strum delay",536,100);
g.setColor(Color.red);
g.drawString("ms",604,100);
this.showStatus("F�r sn�l f�r att k�pa en riktig gitarr?");
public void actionPerformed(ActionEvent e)
//Relates Button index to correpsonding AudioClip index and allots an index interval's
//corresponding guitar string the last played AudioClip
int buttonIndex = getButtonIndex(e.getSource());
//If I add this instead of the code below all my buttons and textfields
//with actionlisteners stop working
this.s[buttonIndex].play();
guitarstring[buttonIndex / 25]=s[buttonIndex];
/*if(buttonIndex>-1 && buttonIndex<24)
this.s[buttonIndex].play();
guitarstring[0]=s[buttonIndex];
else if(buttonIndex>24 && buttonIndex<49)
this.s[buttonIndex].play();
guitarstring[1]=s[buttonIndex];
else if(buttonIndex>49 && buttonIndex<74)
this.s[buttonIndex].play();
guitarstring[2]=s[buttonIndex];
else if(buttonIndex>74 && buttonIndex<99)
this.s[buttonIndex].play();
guitarstring[3]=s[buttonIndex];
else if(buttonIndex>99 && buttonIndex<124)
this.s[buttonIndex].play();
guitarstring[4]=s[buttonIndex];
else if(buttonIndex>124 && buttonIndex<150)
this.s[buttonIndex].play();
guitarstring[5]=s[buttonIndex];
delay1 = Integer.parseInt(delay.getText());
//Various button functions
if (e.getSource() == b_function[0]) this.strumChord();
if (e.getSource() == b_function[1]) this.stairWay();
//This textfield does not serve its purpose for some reason
/*if (e.getSource() == ackord)
if(ackord.getText() == "E" || ackord.getText() == "e")
this.formChord(0,25,51,77,102,125);
this.strumChord();
if (e.getSource() == delay)
this.strumChord();
//Knappar vilka spelar f�rbest�mda ackord
for(int i = 0; i < b_chord.length; i++)
if (e.getSource() == b_chord)
this.formChord(0,25,51,77,102,125);
this.strumChord();
As seen it should work, but it doesn't...

Similar Messages

  • ITunes 11 for OSX 10.5.8 or else the teddy loses it's stuffing!

    Teddy said 'PLEASE'.

    This is not possible!
    iTunes 11 requires an absolute minimum of OS X 10.6.8.  (There have been some issues reported here with this combination).
    Even OS X 10.6.8 is quite old these days.  Current OS X is 10.9.1.

  • What is the name of the App with the Teddy Bear icon on the countdown page?

    What is the name of the App with the Teddy Bear icon on the countdown page? http://www.apple.com/itunes/25-billion-app-countdown/

    Yes, something like that, but if someone knows the App already, then it's a lot easier.
    You can see the same artwork on this page: http://store.apple.com/us/browse/home/giftcards/itunes/gallery
    And on this page: http://store.apple.com/us/personalize/itunes?product=MC231
    It's present on the $15 gift card's picture.

  • How do i get a refund for a push on app from teddy bear maker at £10.50 that i didnt want to buy

    How do i get a refund for an app i didnt want to buy

    Hi ...
    Apple's policy states that, "all sales are final" >  iTUNES STORE - TERMS AND CONDITIONS

  • CPU Upgrade on Satellite L30-134

    Has anyone managed to upgrade the CPU on one of these yet??? Ive already maxed out the memory, but its still a bit slow if you know what I mean...:P
    Ive been looking at the Core2 SLV3W 2x1.33Ghz, same operating temperature and FSB, both socket 478/9 but not sure if the BIOS is going to chuck a teddy, the Pentium mobiles look a little to hot to run on this board, although its amazing what you can do with a dremel tool and a bit of copper tubing, if needs be I will doctor the existing cooling....
    Any feedback or suggestions greatfully recieved.

    i mate,
    unfortunately no one here would be able to give you really good information which could be useful for you. Since youre a Pro you should check e.g. this site: http://www.irisvista.com/tech/
    The BIOS cannot be modified but if the chipset is able you can try it. The socket is always the same so the package should fit in the hole ;)
    But I recommend you NOT to modify the cooling system because its aligned to work with the whole system together. The system would perhaps run a little bit "non-cooler" and wouldnt be quiet as before but it should work.
    So, how you see on your own. I am with you but I cannot give you proper information since I am just modding desktops (and already upgraded a notebook with some new CPU so I know something about it and I can just tell you: Dont ask here. Just read the topics and you will see why :) )
    Good luck and Greets
    Dennis

  • Sound stopped working

    Hi.
    It used to work.
    I have problem with sound. Yesterday It does work, but today it stopped working. I'm not sure if it is because of some updates, I haven't noticed anything connected to sound. The only difference is that I uninstalled mplayer2. Then it stopped working - but I'm not sure if it was because of this.
    I tried:
    reinstall alsa, alsa-plugins, alsa-utils, vlc, mplayer2
    install pulseaudio, oss (without configuration)
    reboot
    unmute all chanels in alsamixer
    connecting headphones
    aplay -L
    null
    Discard all samples (playback) or generate zero samples (capture)
    pulse
    PulseAudio Sound Server
    default:CARD=PCH
    HDA Intel PCH, ALC269VC Analog
    Default Audio Device
    sysdefault:CARD=PCH
    HDA Intel PCH, ALC269VC Analog
    Default Audio Device
    front:CARD=PCH,DEV=0
    HDA Intel PCH, ALC269VC Analog
    Front speakers
    surround40:CARD=PCH,DEV=0
    HDA Intel PCH, ALC269VC Analog
    4.0 Surround output to Front and Rear speakers
    surround41:CARD=PCH,DEV=0
    HDA Intel PCH, ALC269VC Analog
    4.1 Surround output to Front, Rear and Subwoofer speakers
    surround50:CARD=PCH,DEV=0
    HDA Intel PCH, ALC269VC Analog
    5.0 Surround output to Front, Center and Rear speakers
    surround51:CARD=PCH,DEV=0
    HDA Intel PCH, ALC269VC Analog
    5.1 Surround output to Front, Center, Rear and Subwoofer speakers
    surround71:CARD=PCH,DEV=0
    HDA Intel PCH, ALC269VC Analog
    7.1 Surround output to Front, Center, Side, Rear and Woofer speakers
    hdmi:CARD=PCH,DEV=0
    HDA Intel PCH, HDMI 0
    HDMI Audio Output
    aplay -l
    **** List of PLAYBACK Hardware Devices ****
    card 0: PCH [HDA Intel PCH], device 0: ALC269VC Analog [ALC269VC Analog]
    Subdevices: 1/1
    Subdevice #0: subdevice #0
    card 0: PCH [HDA Intel PCH], device 3: HDMI 0 [HDMI 0]
    Subdevices: 1/1
    Subdevice #0: subdevice #0
    lspci|grep -i audio
    00:1b.0 Audio device: Intel Corporation 6 Series/C200 Series Chipset Family High Definition Audio Controller (rev 04)
    lsmod|grep '^snd'|column -t
    snd_hda_codec_hdmi 27857 1
    snd_hda_codec_realtek 62279 1
    snd_hda_intel 33946 0
    snd_hda_codec 101474 3 snd_hda_codec_realtek,snd_hda_codec_hdmi,snd_hda_intel
    snd_hwdep 6364 1 snd_hda_codec
    snd_pcm 76956 3 snd_hda_codec_hdmi,snd_hda_codec,snd_hda_intel
    snd_page_alloc 7298 2 snd_pcm,snd_hda_intel
    snd_timer 18687 1 snd_pcm
    snd 58893 7 snd_hda_codec_realtek,snd_hwdep,snd_timer,snd_hda_codec_hdmi,snd_pcm,snd_hda_codec,snd_hda_intel
    pacman -Q |egrep -wi --color 'vlc|audio|alsa|mplayer2|oss|pulse|sound'
    alsa-lib 1.0.27-1
    alsa-plug]alsa-lib 1.0.27-1
    alsa-plugins 1.0.27-1
    alsa-utils 1.0.27-4
    lib32-alsa-lib 1.0.27-1ins 1.0.27-1
    alsa-utils 1.0.27-4
    lib32-alsa-lib 1.0.27-1
    dmesg
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Linux version 3.8.8-1-ARCH (tobias@T-POWA-LX) (gcc version 4.8.0 20130411 (prerelease) (GCC) ) #1 SMP PREEMPT Wed Apr 17 10:57:28 CEST 2013
    [ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=49f66c2c-5bd3-4843-bd24-714dc1c0d188 ro quiet
    [ 0.000000] Disabled fast string operations
    [ 0.000000] e820: BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009d7ff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000000009d800-0x000000000009ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000001fffffff] usable
    [ 0.000000] BIOS-e820: [mem 0x0000000020000000-0x00000000201fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000020200000-0x000000003fffffff] usable
    [ 0.000000] BIOS-e820: [mem 0x0000000040000000-0x00000000401fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000040200000-0x00000000d9c9efff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000d9c9f000-0x00000000dae7efff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000dae7f000-0x00000000daf9efff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000daf9f000-0x00000000daffefff] ACPI data
    [ 0.000000] BIOS-e820: [mem 0x00000000dafff000-0x00000000daffffff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000db000000-0x00000000df9fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed08000-0x00000000fed08fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed10000-0x00000000fed19fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000ffd80000-0x00000000ffffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000019fdfffff] usable
    [ 0.000000] NX (Execute Disable) protection: active
    [ 0.000000] SMBIOS 2.6 present.
    [ 0.000000] DMI: SAMSUNG ELECTRONICS CO., LTD. 530U3BI/530U4BI/530U4BH/530U3BI/530U4BI/530U4BH, BIOS 06XK 03/16/2012
    [ 0.000000] e820: update [mem 0x00000000-0x0000ffff] usable ==> reserved
    [ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
    [ 0.000000] No AGP bridge found
    [ 0.000000] e820: last_pfn = 0x19fe00 max_arch_pfn = 0x400000000
    [ 0.000000] MTRR default type: uncachable
    [ 0.000000] MTRR fixed ranges enabled:
    [ 0.000000] 00000-9FFFF write-back
    [ 0.000000] A0000-BFFFF uncachable
    [ 0.000000] C0000-FFFFF write-protect
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 000000000 mask F80000000 write-back
    [ 0.000000] 1 base 080000000 mask FC0000000 write-back
    [ 0.000000] 2 base 0C0000000 mask FE0000000 write-back
    [ 0.000000] 3 base 0DC000000 mask FFC000000 uncachable
    [ 0.000000] 4 base 0DB000000 mask FFF000000 uncachable
    [ 0.000000] 5 base 100000000 mask F80000000 write-back
    [ 0.000000] 6 base 180000000 mask FE0000000 write-back
    [ 0.000000] 7 base 19FE00000 mask FFFE00000 uncachable
    [ 0.000000] 8 base 0FFC00000 mask FFFC00000 write-protect
    [ 0.000000] 9 disabled
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] e820: last_pfn = 0xdb000 max_arch_pfn = 0x400000000
    [ 0.000000] found SMP MP-table at [mem 0x000f00e0-0x000f00ef] mapped at [ffff8800000f00e0]
    [ 0.000000] initial memory mapped: [mem 0x00000000-0x1fffffff]
    [ 0.000000] Base memory trampoline at [ffff880000097000] 97000 size 24576
    [ 0.000000] reserving inaccessible SNB gfx pages
    [ 0.000000] init_memory_mapping: [mem 0x00000000-0xdaffffff]
    [ 0.000000] [mem 0x00000000-0xdaffffff] page 2M
    [ 0.000000] kernel direct mapping tables up to 0xdaffffff @ [mem 0x1fffb000-0x1fffffff]
    [ 0.000000] init_memory_mapping: [mem 0x100000000-0x19fdfffff]
    [ 0.000000] [mem 0x100000000-0x19fdfffff] page 2M
    [ 0.000000] kernel direct mapping tables up to 0x19fdfffff @ [mem 0xd9c9b000-0xd9c9efff]
    [ 0.000000] RAMDISK: [mem 0x37a50000-0x37d1ffff]
    [ 0.000000] ACPI: RSDP 00000000000f0100 00024 (v02 SECCSD)
    [ 0.000000] ACPI: XSDT 00000000daffe120 00084 (v01 SECCSD LH43STAR 00000002 PTEC 00000002)
    [ 0.000000] ACPI: FACP 00000000dafef000 000F4 (v03 SECCSD LH43STAR 00000002 PTL 00000002)
    [ 0.000000] ACPI: DSDT 00000000daff2000 0803C (v02 SECCSD SNB-CPT 00000000 INTL 20061109)
    [ 0.000000] ACPI: FACS 00000000daf47000 00040
    [ 0.000000] ACPI: SLIC 00000000daffd000 00176 (v01 SECCSD LH43STAR 00000002 PTEC 00000001)
    [ 0.000000] ACPI: SSDT 00000000daffb000 01068 (v01 SECCSD PtidDevc 00001000 INTL 20061109)
    [ 0.000000] ACPI: ASF! 00000000daff1000 000A5 (v32 SECCSD LH43STAR 00000002 PTL 00000002)
    [ 0.000000] ACPI: HPET 00000000dafee000 00038 (v01 SECCSD LH43STAR 00000002 PTL 00000002)
    [ 0.000000] ACPI: APIC 00000000dafed000 00098 (v01 SECCSD LH43STAR 00000002 PTL 00000002)
    [ 0.000000] ACPI: MCFG 00000000dafec000 0003C (v01 SECCSD LH43STAR 00000002 PTL 00000002)
    [ 0.000000] ACPI: SSDT 00000000dafeb000 00804 (v01 PmRef Cpu0Ist 00003000 INTL 20061109)
    [ 0.000000] ACPI: SSDT 00000000dafea000 00996 (v01 PmRef CpuPm 00003000 INTL 20061109)
    [ 0.000000] ACPI: UEFI 00000000dafe9000 0003E (v01 SECCSD LH43STAR 00000002 PTL 00000002)
    [ 0.000000] ACPI: UEFI 00000000dafe8000 00042 (v01 PTL COMBUF 00000001 PTL 00000001)
    [ 0.000000] ACPI: UEFI 00000000dafe7000 0022E (v01 SECCSD LH43STAR 00000002 PTL 00000002)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] No NUMA configuration found
    [ 0.000000] Faking a node at [mem 0x0000000000000000-0x000000019fdfffff]
    [ 0.000000] Initmem setup node 0 [mem 0x00000000-0x19fdfffff]
    [ 0.000000] NODE_DATA [mem 0x19fdfb000-0x19fdfffff]
    [ 0.000000] [ffffea0000000000-ffffea00067fffff] PMD -> [ffff880199400000-ffff88019f3fffff] on node 0
    [ 0.000000] Zone ranges:
    [ 0.000000] DMA [mem 0x00010000-0x00ffffff]
    [ 0.000000] DMA32 [mem 0x01000000-0xffffffff]
    [ 0.000000] Normal [mem 0x100000000-0x19fdfffff]
    [ 0.000000] Movable zone start for each node
    [ 0.000000] Early memory node ranges
    [ 0.000000] node 0: [mem 0x00010000-0x0009cfff]
    [ 0.000000] node 0: [mem 0x00100000-0x1fffffff]
    [ 0.000000] node 0: [mem 0x20200000-0x3fffffff]
    [ 0.000000] node 0: [mem 0x40200000-0xd9c9efff]
    [ 0.000000] node 0: [mem 0xdafff000-0xdaffffff]
    [ 0.000000] node 0: [mem 0x100000000-0x19fdfffff]
    [ 0.000000] On node 0 totalpages: 1545773
    [ 0.000000] DMA zone: 64 pages used for memmap
    [ 0.000000] DMA zone: 141 pages reserved
    [ 0.000000] DMA zone: 3776 pages, LIFO batch:0
    [ 0.000000] DMA32 zone: 13859 pages used for memmap
    [ 0.000000] DMA32 zone: 873085 pages, LIFO batch:31
    [ 0.000000] Normal zone: 10232 pages used for memmap
    [ 0.000000] Normal zone: 644616 pages, LIFO batch:31
    [ 0.000000] ACPI: PM-Timer IO Port: 0x408
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x02] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x03] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x00] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x00] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x00] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x00] disabled)
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
    [ 0.000000] ACPI: IOAPIC (id[0x0e] address[0xfec00000] gsi_base[0])
    [ 0.000000] IOAPIC[0]: apic_id 14, version 32, address 0xfec00000, GSI 0-23
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    [ 0.000000] ACPI: IRQ0 used by override.
    [ 0.000000] ACPI: IRQ2 used by override.
    [ 0.000000] ACPI: IRQ9 used by override.
    [ 0.000000] Using ACPI (MADT) for SMP configuration information
    [ 0.000000] ACPI: HPET id: 0x8086a301 base: 0xfed00000
    [ 0.000000] smpboot: Allowing 8 CPUs, 4 hotplug CPUs
    [ 0.000000] nr_irqs_gsi: 40
    [ 0.000000] PM: Registered nosave memory: 000000000009d000 - 000000000009e000
    [ 0.000000] PM: Registered nosave memory: 000000000009e000 - 00000000000a0000
    [ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000
    [ 0.000000] PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
    [ 0.000000] PM: Registered nosave memory: 0000000020000000 - 0000000020200000
    [ 0.000000] PM: Registered nosave memory: 0000000040000000 - 0000000040200000
    [ 0.000000] PM: Registered nosave memory: 00000000d9c9f000 - 00000000dae7f000
    [ 0.000000] PM: Registered nosave memory: 00000000dae7f000 - 00000000daf9f000
    [ 0.000000] PM: Registered nosave memory: 00000000daf9f000 - 00000000dafff000
    [ 0.000000] PM: Registered nosave memory: 00000000db000000 - 00000000dfa00000
    [ 0.000000] PM: Registered nosave memory: 00000000dfa00000 - 00000000f8000000
    [ 0.000000] PM: Registered nosave memory: 00000000f8000000 - 00000000fc000000
    [ 0.000000] PM: Registered nosave memory: 00000000fc000000 - 00000000fec00000
    [ 0.000000] PM: Registered nosave memory: 00000000fec00000 - 00000000fec01000
    [ 0.000000] PM: Registered nosave memory: 00000000fec01000 - 00000000fed08000
    [ 0.000000] PM: Registered nosave memory: 00000000fed08000 - 00000000fed09000
    [ 0.000000] PM: Registered nosave memory: 00000000fed09000 - 00000000fed10000
    [ 0.000000] PM: Registered nosave memory: 00000000fed10000 - 00000000fed1a000
    [ 0.000000] PM: Registered nosave memory: 00000000fed1a000 - 00000000fed1c000
    [ 0.000000] PM: Registered nosave memory: 00000000fed1c000 - 00000000fed20000
    [ 0.000000] PM: Registered nosave memory: 00000000fed20000 - 00000000fee00000
    [ 0.000000] PM: Registered nosave memory: 00000000fee00000 - 00000000fee01000
    [ 0.000000] PM: Registered nosave memory: 00000000fee01000 - 00000000ffd80000
    [ 0.000000] PM: Registered nosave memory: 00000000ffd80000 - 0000000100000000
    [ 0.000000] e820: [mem 0xdfa00000-0xf7ffffff] available for PCI devices
    [ 0.000000] Booting paravirtualized kernel on bare hardware
    [ 0.000000] setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:8 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 28 pages/cpu @ffff88019fa00000 s85184 r8192 d21312 u262144
    [ 0.000000] pcpu-alloc: s85184 r8192 d21312 u262144 alloc=1*2097152
    [ 0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 6 7
    [ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 1521477
    [ 0.000000] Policy zone: Normal
    [ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=49f66c2c-5bd3-4843-bd24-714dc1c0d188 ro quiet
    [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    [ 0.000000] __ex_table already sorted, skipping sort
    [ 0.000000] xsave: enabled xstate_bv 0x7, cntxt size 0x340
    [ 0.000000] Checking aperture...
    [ 0.000000] No AGP bridge found
    [ 0.000000] Calgary: detecting Calgary via BIOS EBDA area
    [ 0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
    [ 0.000000] Memory: 6002944k/6813696k available (4908k kernel code, 630604k absent, 180148k reserved, 4024k data, 820k init)
    [ 0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
    [ 0.000000] Preemptible hierarchical RCU implementation.
    [ 0.000000] RCU dyntick-idle grace-period acceleration is enabled.
    [ 0.000000] Dump stacks of tasks blocking RCU-preempt GP.
    [ 0.000000] RCU restricting CPUs from NR_CPUS=64 to nr_cpu_ids=8.
    [ 0.000000] NR_IRQS:4352 nr_irqs:744 16
    [ 0.000000] Extended CMOS year: 2000
    [ 0.000000] Console: colour dummy device 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] allocated 25165824 bytes of page_cgroup
    [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
    [ 0.000000] hpet clockevent registered
    [ 0.000000] tsc: Fast TSC calibration using PIT
    [ 0.003333] tsc: Detected 1596.383 MHz processor
    [ 0.000002] Calibrating delay loop (skipped), value calculated using timer frequency.. 3194.79 BogoMIPS (lpj=5321276)
    [ 0.000005] pid_max: default: 32768 minimum: 301
    [ 0.000038] Security Framework initialized
    [ 0.000045] AppArmor: AppArmor disabled by boot time parameter
    [ 0.000630] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
    [ 0.002565] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
    [ 0.003415] Mount-cache hash table entries: 256
    [ 0.003607] Initializing cgroup subsys cpuacct
    [ 0.003609] Initializing cgroup subsys memory
    [ 0.003616] Initializing cgroup subsys devices
    [ 0.003618] Initializing cgroup subsys freezer
    [ 0.003620] Initializing cgroup subsys net_cls
    [ 0.003622] Initializing cgroup subsys blkio
    [ 0.003647] Disabled fast string operations
    [ 0.003649] CPU: Physical Processor ID: 0
    [ 0.003650] CPU: Processor Core ID: 0
    [ 0.003655] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
    ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
    [ 0.003658] mce: CPU supports 7 MCE banks
    [ 0.003671] CPU0: Thermal monitoring enabled (TM1)
    [ 0.003677] process: using mwait in idle threads
    [ 0.003681] Last level iTLB entries: 4KB 512, 2MB 0, 4MB 0
    Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32
    tlb_flushall_shift: 5
    [ 0.003835] Freeing SMP alternatives: 20k freed
    [ 0.004849] ACPI: Core revision 20121018
    [ 0.011331] ftrace: allocating 19310 entries in 76 pages
    [ 0.022372] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.055356] smpboot: CPU0: Intel(R) Core(TM) i5-2467M CPU @ 1.60GHz (fam: 06, model: 2a, stepping: 07)
    [ 0.055365] TSC deadline timer enabled
    [ 0.055369] Performance Events: PEBS fmt1+, 16-deep LBR, SandyBridge events, Intel PMU driver.
    [ 0.055376] perf_event_intel: PEBS disabled due to CPU errata, please upgrade microcode
    [ 0.055378] ... version: 3
    [ 0.055379] ... bit width: 48
    [ 0.055380] ... generic registers: 4
    [ 0.055381] ... value mask: 0000ffffffffffff
    [ 0.055382] ... max period: 000000007fffffff
    [ 0.055383] ... fixed-purpose events: 3
    [ 0.055384] ... event mask: 000000070000000f
    [ 0.093170] Disabled fast string operations
    [ 0.095374] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    [ 0.113177] Disabled fast string operations
    [ 0.126599] Disabled fast string operations
    [ 0.082145] smpboot: Booting Node 0, Processors #1 #2 #3
    [ 0.128712] Brought up 4 CPUs
    [ 0.128716] smpboot: Total of 4 processors activated (12776.19 BogoMIPS)
    [ 0.132574] devtmpfs: initialized
    [ 0.133773] PM: Registering ACPI NVS region [mem 0xdae7f000-0xdaf9efff] (1179648 bytes)
    [ 0.134524] RTC time: 14:38:00, date: 04/23/13
    [ 0.134565] NET: Registered protocol family 16
    [ 0.134701] ACPI: bus type pci registered
    [ 0.134776] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
    [ 0.134779] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
    [ 0.142122] PCI: Using configuration type 1 for base access
    [ 0.142308] mtrr: your CPUs had inconsistent variable MTRR settings
    [ 0.142309] mtrr: probably your BIOS does not setup all CPUs.
    [ 0.142310] mtrr: corrected configuration.
    [ 0.142733] bio: create slab <bio-0> at 0
    [ 0.142794] ACPI: Added _OSI(Module Device)
    [ 0.142795] ACPI: Added _OSI(Processor Device)
    [ 0.142797] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.142798] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.144238] ACPI: EC: Look up EC in DSDT
    [ 0.145725] ACPI: Executed 1 blocks of module-level executable AML code
    [ 0.148149] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
    [ 0.149385] ACPI: SSDT 00000000dae70718 00688 (v01 PmRef Cpu0Cst 00003001 INTL 20061109)
    [ 0.149747] ACPI: Dynamic OEM Table Load:
    [ 0.149750] ACPI: SSDT (null) 00688 (v01 PmRef Cpu0Cst 00003001 INTL 20061109)
    [ 0.150021] ACPI: SSDT 00000000dae71a98 00303 (v01 PmRef ApIst 00003000 INTL 20061109)
    [ 0.150411] ACPI: Dynamic OEM Table Load:
    [ 0.150414] ACPI: SSDT (null) 00303 (v01 PmRef ApIst 00003000 INTL 20061109)
    [ 0.150533] ACPI: SSDT 00000000dae6fd98 00119 (v01 PmRef ApCst 00003000 INTL 20061109)
    [ 0.150890] ACPI: Dynamic OEM Table Load:
    [ 0.150892] ACPI: SSDT (null) 00119 (v01 PmRef ApCst 00003000 INTL 20061109)
    [ 0.152416] ACPI: Interpreter enabled
    [ 0.152421] ACPI: (supports S0 S1 S3 S4 S5)
    [ 0.152442] ACPI: Using IOAPIC for interrupt routing
    [ 0.159354] ACPI: Power Resource [FN00] (off)
    [ 0.159432] ACPI: Power Resource [FN01] (off)
    [ 0.159506] ACPI: Power Resource [FN02] (off)
    [ 0.159581] ACPI: Power Resource [FN03] (off)
    [ 0.159654] ACPI: Power Resource [FN04] (off)
    [ 0.159950] ACPI: EC: GPE = 0x17, I/O: command/status = 0x66, data = 0x62
    [ 0.160074] ACPI: No dock devices found.
    [ 0.160078] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [ 0.160290] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e])
    [ 0.160292] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    [ 0.160531] \_SB_.PCI0:_OSC invalid UUID
    [ 0.160532] _OSC request data:1 8 1f
    [ 0.160943] PCI host bridge to bus 0000:00
    [ 0.160946] pci_bus 0000:00: root bus resource [bus 00-3e]
    [ 0.160949] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    [ 0.160951] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    [ 0.160952] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    [ 0.160954] pci_bus 0000:00: root bus resource [mem 0xdfa00000-0xfeafffff]
    [ 0.160956] pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfed44fff]
    [ 0.160965] pci 0000:00:00.0: [8086:0104] type 00 class 0x060000
    [ 0.161009] pci 0000:00:02.0: [8086:0116] type 00 class 0x030000
    [ 0.161021] pci 0000:00:02.0: reg 10: [mem 0xf0000000-0xf03fffff 64bit]
    [ 0.161028] pci 0000:00:02.0: reg 18: [mem 0xe0000000-0xefffffff 64bit pref]
    [ 0.161033] pci 0000:00:02.0: reg 20: [io 0x3000-0x303f]
    [ 0.161093] pci 0000:00:16.0: [8086:1c3a] type 00 class 0x078000
    [ 0.161118] pci 0000:00:16.0: reg 10: [mem 0xf0705000-0xf070500f 64bit]
    [ 0.161201] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
    [ 0.161240] pci 0000:00:1a.0: [8086:1c2d] type 00 class 0x0c0320
    [ 0.161264] pci 0000:00:1a.0: reg 10: [mem 0xf070a000-0xf070a3ff]
    [ 0.161361] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
    [ 0.161391] pci 0000:00:1b.0: [8086:1c20] type 00 class 0x040300
    [ 0.161408] pci 0000:00:1b.0: reg 10: [mem 0xf0700000-0xf0703fff 64bit]
    [ 0.161483] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    [ 0.161509] pci 0000:00:1c.0: [8086:1c10] type 01 class 0x060400
    [ 0.161596] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    [ 0.161628] pci 0000:00:1c.3: [8086:1c16] type 01 class 0x060400
    [ 0.161714] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
    [ 0.161746] pci 0000:00:1c.4: [8086:1c18] type 01 class 0x060400
    [ 0.161876] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
    [ 0.161921] pci 0000:00:1d.0: [8086:1c26] type 00 class 0x0c0320
    [ 0.161945] pci 0000:00:1d.0: reg 10: [mem 0xf0709000-0xf07093ff]
    [ 0.162042] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
    [ 0.162072] pci 0000:00:1f.0: [8086:1c49] type 00 class 0x060100
    [ 0.162207] pci 0000:00:1f.2: [8086:1c03] type 00 class 0x010601
    [ 0.162228] pci 0000:00:1f.2: reg 10: [io 0x3088-0x308f]
    [ 0.162236] pci 0000:00:1f.2: reg 14: [io 0x3094-0x3097]
    [ 0.162245] pci 0000:00:1f.2: reg 18: [io 0x3080-0x3087]
    [ 0.162254] pci 0000:00:1f.2: reg 1c: [io 0x3090-0x3093]
    [ 0.162263] pci 0000:00:1f.2: reg 20: [io 0x3060-0x307f]
    [ 0.162272] pci 0000:00:1f.2: reg 24: [mem 0xf0708000-0xf07087ff]
    [ 0.162324] pci 0000:00:1f.2: PME# supported from D3hot
    [ 0.162346] pci 0000:00:1f.3: [8086:1c22] type 00 class 0x0c0500
    [ 0.162363] pci 0000:00:1f.3: reg 10: [mem 0xf0704000-0xf07040ff 64bit]
    [ 0.162392] pci 0000:00:1f.3: reg 20: [io 0xefa0-0xefbf]
    [ 0.162635] pci 0000:01:00.0: [8086:0091] type 00 class 0x028000
    [ 0.162815] pci 0000:01:00.0: reg 10: [mem 0xf0600000-0xf0601fff 64bit]
    [ 0.163511] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
    [ 0.169202] pci 0000:00:1c.0: PCI bridge to [bus 01]
    [ 0.169209] pci 0000:00:1c.0: bridge window [mem 0xf0600000-0xf06fffff]
    [ 0.169339] pci 0000:02:00.0: [10ec:8168] type 00 class 0x020000
    [ 0.169408] pci 0000:02:00.0: reg 10: [io 0x2000-0x20ff]
    [ 0.169530] pci 0000:02:00.0: reg 18: [mem 0xf0404000-0xf0404fff 64bit pref]
    [ 0.169605] pci 0000:02:00.0: reg 20: [mem 0xf0400000-0xf0403fff 64bit pref]
    [ 0.169935] pci 0000:02:00.0: supports D1 D2
    [ 0.169937] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.175788] pci 0000:00:1c.3: PCI bridge to [bus 02]
    [ 0.175797] pci 0000:00:1c.3: bridge window [io 0x2000-0x2fff]
    [ 0.175816] pci 0000:00:1c.3: bridge window [mem 0xf0400000-0xf04fffff 64bit pref]
    [ 0.175957] pci 0000:03:00.0: [1b21:1042] type 00 class 0x0c0330
    [ 0.175995] pci 0000:03:00.0: reg 10: [mem 0xf0500000-0xf0507fff 64bit]
    [ 0.176190] pci 0000:03:00.0: PME# supported from D3hot D3cold
    [ 0.182448] pci 0000:00:1c.4: PCI bridge to [bus 03]
    [ 0.182462] pci 0000:00:1c.4: bridge window [mem 0xf0500000-0xf05fffff]
    [ 0.182529] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP01._PRT]
    [ 0.182568] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP04._PRT]
    [ 0.182598] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP05._PRT]
    [ 0.182726] \_SB_.PCI0:_OSC invalid UUID
    [ 0.182727] _OSC request data:1 1f 1f
    [ 0.182731] pci0000:00: ACPI _OSC support notification failed, disabling PCIe ASPM
    [ 0.182732] pci0000:00: Unable to request _OSC control (_OSC support mask: 0x08)
    [ 0.183395] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 10 *11 12 14 15)
    [ 0.183442] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.183487] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 *10 11 12 14 15)
    [ 0.183530] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 *10 11 12 14 15)
    [ 0.183573] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 10 11 12 14 15) *9
    [ 0.183616] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.183662] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 10 *11 12 14 15)
    [ 0.183709] ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 10 11 12 14 15) *9
    [ 0.183797] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
    [ 0.183801] vgaarb: loaded
    [ 0.183802] vgaarb: bridge control possible 0000:00:02.0
    [ 0.183834] PCI: Using ACPI for IRQ routing
    [ 0.185498] PCI: pci_cache_line_size set to 64 bytes
    [ 0.185611] e820: reserve RAM buffer [mem 0x0009d800-0x0009ffff]
    [ 0.185613] e820: reserve RAM buffer [mem 0xd9c9f000-0xdbffffff]
    [ 0.185615] e820: reserve RAM buffer [mem 0xdb000000-0xdbffffff]
    [ 0.185616] e820: reserve RAM buffer [mem 0x19fe00000-0x19fffffff]
    [ 0.185709] NetLabel: Initializing
    [ 0.185711] NetLabel: domain hash size = 128
    [ 0.185712] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.185729] NetLabel: unlabeled traffic allowed by default
    [ 0.185745] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
    [ 0.185750] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
    [ 0.187760] Switching to clocksource hpet
    [ 0.192350] pnp: PnP ACPI init
    [ 0.192366] ACPI: bus type pnp registered
    [ 0.192633] pnp 00:00: [dma 4]
    [ 0.192731] pnp 00:00: Plug and Play ACPI device, IDs PNP0200 (active)
    [ 0.192753] pnp 00:01: Plug and Play ACPI device, IDs INT0800 (active)
    [ 0.192844] pnp 00:02: Plug and Play ACPI device, IDs PNP0103 (active)
    [ 0.192878] pnp 00:03: Plug and Play ACPI device, IDs PNP0c04 (active)
    [ 0.192924] system 00:04: [io 0x0680-0x069f] has been reserved
    [ 0.192927] system 00:04: [io 0x1000-0x100f] has been reserved
    [ 0.192929] system 00:04: [io 0x5000-0x5003] has been reserved
    [ 0.192931] system 00:04: [io 0xffff] has been reserved
    [ 0.192932] system 00:04: [io 0x0400-0x0453] has been reserved
    [ 0.192938] system 00:04: [io 0x0458-0x047f] has been reserved
    [ 0.192940] system 00:04: [io 0x0500-0x057f] has been reserved
    [ 0.192942] system 00:04: [io 0x0a00-0x0a0f] has been reserved
    [ 0.192944] system 00:04: [io 0x164e-0x164f] has been reserved
    [ 0.192946] system 00:04: [io 0x5000-0x500f] could not be reserved
    [ 0.192949] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.192975] pnp 00:05: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 0.193023] system 00:06: [io 0x0454-0x0457] has been reserved
    [ 0.193027] system 00:06: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
    [ 0.193068] pnp 00:07: Plug and Play ACPI device, IDs PNP0303 (active)
    [ 0.193112] pnp 00:08: Plug and Play ACPI device, IDs ETD0b00 SYN0002 PNP0f13 (active)
    [ 0.193267] system 00:09: [mem 0xfed1c000-0xfed1ffff] has been reserved
    [ 0.193270] system 00:09: [mem 0xfed10000-0xfed17fff] has been reserved
    [ 0.193272] system 00:09: [mem 0xfed18000-0xfed18fff] has been reserved
    [ 0.193274] system 00:09: [mem 0xfed19000-0xfed19fff] has been reserved
    [ 0.193276] system 00:09: [mem 0xf8000000-0xfbffffff] has been reserved
    [ 0.193278] system 00:09: [mem 0xfed20000-0xfed3ffff] has been reserved
    [ 0.193280] system 00:09: [mem 0xfed90000-0xfed93fff] has been reserved
    [ 0.193282] system 00:09: [mem 0xfed45000-0xfed8ffff] has been reserved
    [ 0.193284] system 00:09: [mem 0xff000000-0xffffffff] could not be reserved
    [ 0.193286] system 00:09: [mem 0xfee00000-0xfeefffff] could not be reserved
    [ 0.193288] system 00:09: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.193629] ACPI Error: Invalid/unsupported resource descriptor: Type 0x00 (20121018/utresrc-650)
    [ 0.193634] pnp 00:0a: can't evaluate _CRS: 12311
    [ 0.193738] system 00:0a: Plug and Play ACPI device, IDs PNP0c01 (active)
    [ 0.193762] pnp: PnP ACPI: found 11 devices
    [ 0.193764] ACPI: ACPI bus type pnp unregistered
    [ 0.200460] pci 0000:00:1c.0: PCI bridge to [bus 01]
    [ 0.200467] pci 0000:00:1c.0: bridge window [mem 0xf0600000-0xf06fffff]
    [ 0.200477] pci 0000:00:1c.3: PCI bridge to [bus 02]
    [ 0.200481] pci 0000:00:1c.3: bridge window [io 0x2000-0x2fff]
    [ 0.200489] pci 0000:00:1c.3: bridge window [mem 0xf0400000-0xf04fffff 64bit pref]
    [ 0.200497] pci 0000:00:1c.4: PCI bridge to [bus 03]
    [ 0.200503] pci 0000:00:1c.4: bridge window [mem 0xf0500000-0xf05fffff]
    [ 0.200541] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    [ 0.200543] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    [ 0.200545] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.200546] pci_bus 0000:00: resource 7 [mem 0xdfa00000-0xfeafffff]
    [ 0.200548] pci_bus 0000:00: resource 8 [mem 0xfed40000-0xfed44fff]
    [ 0.200550] pci_bus 0000:01: resource 1 [mem 0xf0600000-0xf06fffff]
    [ 0.200552] pci_bus 0000:02: resource 0 [io 0x2000-0x2fff]
    [ 0.200554] pci_bus 0000:02: resource 2 [mem 0xf0400000-0xf04fffff 64bit pref]
    [ 0.200556] pci_bus 0000:03: resource 1 [mem 0xf0500000-0xf05fffff]
    [ 0.200587] NET: Registered protocol family 2
    [ 0.200783] TCP established hash table entries: 65536 (order: 8, 1048576 bytes)
    [ 0.201021] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    [ 0.201188] TCP: Hash tables configured (established 65536 bind 65536)
    [ 0.201218] TCP: reno registered
    [ 0.201232] UDP hash table entries: 4096 (order: 5, 131072 bytes)
    [ 0.201269] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
    [ 0.201357] NET: Registered protocol family 1
    [ 0.201372] pci 0000:00:02.0: Boot video device
    [ 0.201548] PCI: CLS 64 bytes, default 64
    [ 0.201591] Unpacking initramfs...
    [ 0.261406] Freeing initrd memory: 2880k freed
    [ 0.261899] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    [ 0.261905] software IO TLB [mem 0xd5c9b000-0xd9c9b000] (64MB) mapped at [ffff8800d5c9b000-ffff8800d9c9afff]
    [ 0.262304] audit: initializing netlink socket (disabled)
    [ 0.262319] type=2000 audit(1366727880.259:1): initialized
    [ 0.276840] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    [ 0.278407] VFS: Disk quotas dquot_6.5.2
    [ 0.278450] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [ 0.278614] msgmni has been set to 11730
    [ 0.278836] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    [ 0.278888] io scheduler noop registered
    [ 0.278891] io scheduler deadline registered
    [ 0.278897] io scheduler cfq registered (default)
    [ 0.279146] vesafb: mode is 1024x768x32, linelength=4096, pages=0
    [ 0.279147] vesafb: scrolling: redraw
    [ 0.279149] vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
    [ 0.279531] vesafb: framebuffer at 0xe0000000, mapped to 0xffffc90004f00000, using 3072k, total 3072k
    [ 0.344149] Console: switching to colour frame buffer device 128x48
    [ 0.408701] fb0: VESA VGA frame buffer device
    [ 0.408712] intel_idle: MWAIT substates: 0x21120
    [ 0.408714] intel_idle: v0.4 model 0x2A
    [ 0.408715] intel_idle: lapic_timer_reliable_states 0xffffffff
    [ 0.408750] GHES: HEST is not enabled!
    [ 0.408800] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 0.409237] Linux agpgart interface v0.103
    [ 0.409304] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:EPAD] at 0x60,0x64 irq 1,12
    [ 0.416404] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 0.416417] serio: i8042 AUX port at 0x60,0x64 irq 12
    [ 0.416540] mousedev: PS/2 mouse device common for all mice
    [ 0.416900] rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0
    [ 0.416930] rtc0: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
    [ 0.417022] cpuidle: using governor ladder
    [ 0.417127] cpuidle: using governor menu
    [ 0.417129] EFI Variables Facility v0.08 2004-May-17
    [ 0.417180] drop_monitor: Initializing network drop monitor service
    [ 0.417252] TCP: cubic registered
    [ 0.417348] NET: Registered protocol family 10
    [ 0.417495] NET: Registered protocol family 17
    [ 0.417505] Key type dns_resolver registered
    [ 0.417796] PM: Hibernation image not present or could not be loaded.
    [ 0.417805] registered taskstats version 1
    [ 0.418395] Magic number: 9:780:637
    [ 0.418468] rtc_cmos 00:05: setting system clock to 2013-04-23 14:38:01 UTC (1366727881)
    [ 0.420125] Freeing unused kernel memory: 820k freed
    [ 0.420254] Write protecting the kernel read-only data: 8192k
    [ 0.423156] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    [ 0.424428] Freeing unused kernel memory: 1224k freed
    [ 0.425960] Freeing unused kernel memory: 440k freed
    [ 0.433142] systemd-udevd[57]: starting version 201
    [ 0.458283] ACPI: bus type usb registered
    [ 0.458349] usbcore: registered new interface driver usbfs
    [ 0.458370] usbcore: registered new interface driver hub
    [ 0.458506] usbcore: registered new device driver usb
    [ 0.458848] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 0.458984] ehci-pci: EHCI PCI platform driver
    [ 0.459037] ehci-pci 0000:00:1a.0: setting latency timer to 64
    [ 0.459041] ehci-pci 0000:00:1a.0: EHCI Host Controller
    [ 0.459047] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
    [ 0.459062] ehci-pci 0000:00:1a.0: debug port 2
    [ 0.462962] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
    [ 0.462983] ehci-pci 0000:00:1a.0: irq 16, io mem 0xf070a000
    [ 0.463303] SCSI subsystem initialized
    [ 0.464366] ACPI: bus type scsi registered
    [ 0.464443] libata version 3.00 loaded.
    [ 0.464501] xhci_hcd 0000:03:00.0: xHCI Host Controller
    [ 0.464512] xhci_hcd 0000:03:00.0: new USB bus registered, assigned bus number 2
    [ 0.470946] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
    [ 0.471264] hub 1-0:1.0: USB hub found
    [ 0.471272] hub 1-0:1.0: 2 ports detected
    [ 0.471541] ehci-pci 0000:00:1d.0: setting latency timer to 64
    [ 0.471545] ehci-pci 0000:00:1d.0: EHCI Host Controller
    [ 0.471551] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 3
    [ 0.471576] ehci-pci 0000:00:1d.0: debug port 2
    [ 0.475501] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
    [ 0.475524] ehci-pci 0000:00:1d.0: irq 23, io mem 0xf0709000
    [ 0.484257] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
    [ 0.484616] hub 3-0:1.0: USB hub found
    [ 0.484625] hub 3-0:1.0: 2 ports detected
    [ 0.484916] ahci 0000:00:1f.2: version 3.0
    [ 0.485018] ahci 0000:00:1f.2: irq 40 for MSI/MSI-X
    [ 0.485078] ahci: SSS flag set, parallel bus scan disabled
    [ 0.485142] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x19 impl SATA mode
    [ 0.485145] ahci 0000:00:1f.2: flags: 64bit ncq sntf ilck stag pm led clo pio slum part ems sxs apst
    [ 0.485152] ahci 0000:00:1f.2: setting latency timer to 64
    [ 0.498266] scsi0 : ahci
    [ 0.498400] scsi1 : ahci
    [ 0.498501] scsi2 : ahci
    [ 0.498607] scsi3 : ahci
    [ 0.498716] scsi4 : ahci
    [ 0.498823] scsi5 : ahci
    [ 0.498879] ata1: SATA max UDMA/133 abar m2048@0xf0708000 port 0xf0708100 irq 40
    [ 0.498883] ata2: DUMMY
    [ 0.498885] ata3: DUMMY
    [ 0.498888] ata4: SATA max UDMA/133 abar m2048@0xf0708000 port 0xf0708280 irq 40
    [ 0.498891] ata5: SATA max UDMA/133 abar m2048@0xf0708000 port 0xf0708300 irq 40
    [ 0.498893] ata6: DUMMY
    [ 0.527671] xhci_hcd 0000:03:00.0: irq 41 for MSI/MSI-X
    [ 0.527678] xhci_hcd 0000:03:00.0: irq 42 for MSI/MSI-X
    [ 0.527683] xhci_hcd 0000:03:00.0: irq 43 for MSI/MSI-X
    [ 0.527688] xhci_hcd 0000:03:00.0: irq 44 for MSI/MSI-X
    [ 0.527693] xhci_hcd 0000:03:00.0: irq 45 for MSI/MSI-X
    [ 0.527949] xHCI xhci_add_endpoint called for root hub
    [ 0.527951] xHCI xhci_check_bandwidth called for root hub
    [ 0.527980] hub 2-0:1.0: USB hub found
    [ 0.527988] hub 2-0:1.0: 2 ports detected
    [ 0.528084] xhci_hcd 0000:03:00.0: xHCI Host Controller
    [ 0.528088] xhci_hcd 0000:03:00.0: new USB bus registered, assigned bus number 4
    [ 0.528278] xHCI xhci_add_endpoint called for root hub
    [ 0.528282] xHCI xhci_check_bandwidth called for root hub
    [ 0.528325] hub 4-0:1.0: USB hub found
    [ 0.528336] hub 4-0:1.0: 2 ports detected
    [ 0.777504] usb 1-1: new high-speed USB device number 2 using ehci-pci
    [ 0.817457] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
    [ 0.818156] ata1.00: ATA-9: SAMSUNG MZ7PC128HAFU-000, CXM02K1Q, max UDMA/133
    [ 0.818173] ata1.00: 250069680 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
    [ 0.818687] ata1.00: configured for UDMA/133
    [ 0.818930] scsi 0:0:0:0: Direct-Access ATA SAMSUNG MZ7PC128 CXM0 PQ: 0 ANSI: 5
    [ 0.901417] hub 1-1:1.0: USB hub found
    [ 0.901487] hub 1-1:1.0: 6 ports detected
    [ 1.007327] usb 3-1: new high-speed USB device number 2 using ehci-pci
    [ 1.131530] hub 3-1:1.0: USB hub found
    [ 1.131707] hub 3-1:1.0: 6 ports detected
    [ 1.137166] ata4: SATA link down (SStatus 0 SControl 300)
    [ 1.210698] usb 1-1.4: new high-speed USB device number 3 using ehci-pci
    [ 1.263792] tsc: Refined TSC clocksource calibration: 1596.373 MHz
    [ 1.263808] Switching to clocksource tsc
    [ 1.456959] ata5: SATA link down (SStatus 0 SControl 300)
    [ 1.460046] sd 0:0:0:0: [sda] 250069680 512-byte logical blocks: (128 GB/119 GiB)
    [ 1.460135] sd 0:0:0:0: [sda] Write Protect is off
    [ 1.460139] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 1.460170] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 1.461145] sda: sda1 sda2 sda3 sda4 < sda5 >
    [ 1.461569] sd 0:0:0:0: [sda] Attached SCSI disk
    [ 1.668989] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
    [ 1.706891] usb 3-1.5: new full-speed USB device number 3 using ehci-pci
    [ 1.790244] systemd[1]: systemd 202 running in system mode. (+PAM -LIBWRAP -AUDIT -SELINUX -IMA -SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ)
    [ 1.791051] systemd[1]: Set hostname to <530uarch>.
    [ 1.859141] systemd[1]: Cannot add dependency job for unit ntpd.service, ignoring: Unit ntpd.service failed to load: No such file or directory. See system logs and 'systemctl status ntpd.service' for details.
    [ 1.859155] systemd[1]: Cannot add dependency job for unit laptop-mode.service, ignoring: Unit laptop-mode.service failed to load: No such file or directory. See system logs and 'systemctl status laptop-mode.service' for details.
    [ 1.859170] systemd[1]: Cannot add dependency job for unit display-manager.service, ignoring: Unit display-manager.service failed to load: No such file or directory. See system logs and 'systemctl status display-manager.service' for details.
    [ 1.859349] systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
    [ 1.859395] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    [ 1.859406] systemd[1]: Starting Remote File Systems.
    [ 1.859417] systemd[1]: Reached target Remote File Systems.
    [ 1.859425] systemd[1]: Expecting device sys-subsystem-net-devices-wlp1s0.device...
    [ 1.859434] systemd[1]: Starting Delayed Shutdown Socket.
    [ 1.859461] systemd[1]: Listening on Delayed Shutdown Socket.
    [ 1.859468] systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
    [ 1.859487] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
    [ 1.859494] systemd[1]: Starting LVM2 metadata daemon socket.
    [ 1.859516] systemd[1]: Listening on LVM2 metadata daemon socket.
    [ 1.859524] systemd[1]: Starting Device-mapper event daemon FIFOs.
    [ 1.859547] systemd[1]: Listening on Device-mapper event daemon FIFOs.
    [ 1.859558] systemd[1]: Starting Dispatch Password Requests to Console Directory Watch.
    [ 1.859587] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    [ 1.859595] systemd[1]: Starting Paths.
    [ 1.859603] systemd[1]: Reached target Paths.
    [ 1.859626] systemd[1]: Starting Arbitrary Executable File Formats File System Automount Point.
    [ 1.859714] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
    [ 1.859722] systemd[1]: Starting Encrypted Volumes.
    [ 1.859731] systemd[1]: Reached target Encrypted Volumes.
    [ 1.859784] systemd[1]: Starting udev Kernel Socket.
    [ 1.859803] systemd[1]: Listening on udev Kernel Socket.
    [ 1.859845] systemd[1]: Starting udev Control Socket.
    [ 1.859868] systemd[1]: Listening on udev Control Socket.
    [ 1.859877] systemd[1]: Starting Journal Socket.
    [ 1.859912] systemd[1]: Listening on Journal Socket.
    [ 1.859945] systemd[1]: Mounting Huge Pages File System...
    [ 1.893494] systemd[1]: Mounting POSIX Message Queue File System...
    [ 1.898344] systemd[1]: Started Load Kernel Modules.
    [ 1.898365] systemd[1]: Mounted FUSE Control File System.
    [ 1.899753] systemd[1]: Starting Apply Kernel Variables...
    [ 1.923663] systemd[1]: Mounting Configuration File System...
    [ 1.930086] systemd[1]: Starting udev Coldplug all Devices...
    [ 1.936854] systemd[1]: Starting Journal Service...
    [ 1.950121] systemd[1]: Started Journal Service.
    [ 1.950178] systemd[1]: Starting Setup Virtual Console...
    [ 1.960089] systemd[1]: Starting Create static device nodes in /dev...
    [ 1.967386] systemd[1]: Started Set Up Additional Binary Formats.
    [ 1.967414] systemd[1]: Mounting Debug File System...
    [ 1.976595] systemd[1]: Starting Swap.
    [ 1.976618] systemd[1]: Reached target Swap.
    [ 1.976647] systemd[1]: Mounting Temporary Directory...
    [ 2.023332] systemd[1]: Started File System Check on Root Device.
    [ 2.023347] systemd[1]: Starting Remount Root and Kernel File Systems...
    [ 2.060070] systemd[1]: Expecting device dev-disk-by\x2duuid-1166c42d\x2dd01a\x2d40bf\x2d8926\x2d2795b3f0b834.device...
    [ 2.060097] systemd[1]: Expecting device dev-disk-by\x2duuid-C332\x2d535C.device...
    [ 2.060597] systemd[1]: Mounted Huge Pages File System.
    [ 2.060732] systemd[1]: Mounted POSIX Message Queue File System.
    [ 2.062885] EXT4-fs (sda1): re-mounted. Opts: commit=15,data=ordered,discard
    [ 2.079953] systemd[1]: Started Apply Kernel Variables.
    [ 2.080081] systemd[1]: Mounted Configuration File System.
    [ 2.091845] systemd[1]: Started Setup Virtual Console.
    [ 2.093312] systemd[1]: Started Create static device nodes in /dev.
    [ 2.093419] systemd[1]: Mounted Debug File System.
    [ 2.093493] systemd[1]: Mounted Temporary Directory.
    [ 2.093753] systemd[1]: Started Remount Root and Kernel File Systems.
    [ 2.106639] systemd[1]: Started udev Coldplug all Devices.
    [ 2.106691] systemd[1]: Starting Load Random Seed...
    [ 2.113536] systemd[1]: Starting udev Kernel Device Manager...
    [ 2.119903] systemd[1]: Started Load Random Seed.
    [ 2.122479] systemd-udevd[142]: starting version 202
    [ 2.126885] systemd[1]: Started udev Kernel Device Manager.
    [ 2.126941] systemd[1]: Starting Local File Systems (Pre).
    [ 2.126955] systemd[1]: Reached target Local File Systems (Pre).
    [ 2.182697] ACPI Warning: 0x0000000000000428-0x000000000000042f SystemIO conflicts with Region \PMIO 1 (20121018/utaddress-251)
    [ 2.182707] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 2.182713] ACPI Warning: 0x0000000000000540-0x000000000000054f SystemIO conflicts with Region \GPIO 1 (20121018/utaddress-251)
    [ 2.182718] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 2.182720] ACPI Warning: 0x0000000000000530-0x000000000000053f SystemIO conflicts with Region \GPIO 1 (20121018/utaddress-251)
    [ 2.182724] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 2.182726] ACPI Warning: 0x0000000000000500-0x000000000000052f SystemIO conflicts with Region \GPIO 1 (20121018/utaddress-251)
    [ 2.182731] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 2.182733] lpc_ich: Resource conflict(s) found affecting gpio_ich
    [ 2.183607] ACPI: AC Adapter [ADP1] (on-line)
    [ 2.184967] ACPI: Requesting acpi_cpufreq
    [ 2.187346] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input1
    [ 2.187393] ACPI: Lid Switch [LID0]
    [ 2.187480] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input2
    [ 2.187487] ACPI: Power Button [PWRB]
    [ 2.190425] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
    [ 2.190433] ACPI: Power Button [PWRF]
    [ 2.191578] mei 0000:00:16.0: setting latency timer to 64
    [ 2.191674] mei 0000:00:16.0: irq 46 for MSI/MSI-X
    [ 2.198369] [drm] Initialized drm 1.1.0 20060810
    [ 2.198487] ACPI Warning: 0x000000000000efa0-0x000000000000efbf SystemIO conflicts with Region \_SB_.PCI0.SBUS.SMBI 1 (20121018/utaddress-251)
    [ 2.198496] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 2.207287] ACPI: Battery Slot [BAT1] (battery present)
    [ 2.210635] ACPI: Fan [FAN0] (off)
    [ 2.210696] ACPI: Fan [FAN1] (off)
    [ 2.210754] ACPI: Fan [FAN2] (off)
    [ 2.210806] ACPI: Fan [FAN3] (off)
    [ 2.210877] ACPI: Fan [FAN4] (off)
    [ 2.211218] snd_hda_intel 0000:00:1b.0: irq 47 for MSI/MSI-X
    [ 2.213278] thermal LNXTHERM:00: registered as thermal_zone0
    [ 2.213283] ACPI: Thermal Zone [TZ00] (61 C)
    [ 2.214137] thermal LNXTHERM:01: registered as thermal_zone1
    [ 2.214139] ACPI: Thermal Zone [TZ01] (30 C)
    [ 2.231486] input: PC Speaker as /devices/platform/pcspkr/input/input4
    [ 2.231742] microcode: CPU0 sig=0x206a7, pf=0x10, revision=0x25
    [ 2.236625] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
    [ 2.236988] r8169 0000:02:00.0: irq 48 for MSI/MSI-X
    [ 2.237512] r8169 0000:02:00.0 eth0: RTL8168evl/8111evl at 0xffffc90004ef8000, e8:03:9a:97:b5:a7, XID 0c900800 IRQ 48
    [ 2.237516] r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
    [ 2.254854] cfg80211: Calling CRDA to update world regulatory domain
    [ 2.258073] samsung_laptop: detected SABI interface: SwSmi@
    [ 2.258077] samsung_laptop: Backlight controlled by ACPI video driver
    [ 2.271599] Intel(R) Wireless WiFi driver for Linux, in-tree:
    [ 2.271604] Copyright(c) 2003-2012 Intel Corporation
    [ 2.272199] iwlwifi 0000:01:00.0: irq 49 for MSI/MSI-X
    [ 2.273865] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1b.0/sound/card0/input5
    [ 2.274238] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input6
    [ 2.274354] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input7
    [ 2.276284] systemd[1]: Found device SAMSUNG_MZ7PC128HAFU-000.
    [ 2.276358] iwlwifi 0000:01:00.0: loaded firmware version 18.168.6.1
    [ 2.276360] systemd[1]: Starting File System Check on /dev/disk/by-uuid/1166c42d-d01a-40bf-8926-2795b3f0b834...
    [ 2.277330] [drm] Memory usable by graphics device = 2048M
    [ 2.277337] checking generic (e0000000 300000) vs hw (e0000000 10000000)
    [ 2.277340] fb: conflicting fb hw usage inteldrmfb vs VESA VGA - removing generic driver
    [ 2.277356] Console: switching to colour dummy device 80x25
    [ 2.277856] i915 0000:00:02.0: setting latency timer to 64
    [ 2.293728] iTCO_vendor_support: vendor-support=0
    [ 2.294474] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.10
    [ 2.295948] iTCO_wdt: Found a Cougar Point TCO device (Version=2, TCOBASE=0x0460)
    [ 2.296080] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
    [ 2.296784] iwlwifi 0000:01:00.0: CONFIG_IWLWIFI_DEBUG disabled
    [ 2.296789] iwlwifi 0000:01:00.0: CONFIG_IWLWIFI_DEBUGFS disabled
    [ 2.296792] iwlwifi 0000:01:00.0: CONFIG_IWLWIFI_DEVICE_TRACING enabled
    [ 2.296794] iwlwifi 0000:01:00.0: CONFIG_IWLWIFI_DEVICE_TESTMODE disabled
    [ 2.296797] iwlwifi 0000:01:00.0: CONFIG_IWLWIFI_P2P disabled
    [ 2.296800] iwlwifi 0000:01:00.0: Detected Intel(R) Centrino(R) Advanced-N 6230 AGN, REV=0xB0
    [ 2.297034] iwlwifi 0000:01:00.0: L1 Enabled; Disabling L0S
    [ 2.309676] systemd[1]: Found device SAMSUNG_MZ7PC128HAFU-000.
    [ 2.309725] systemd[1]: Mounting /mnt/shard...
    [ 2.315045] microcode: CPU1 sig=0x206a7, pf=0x10, revision=0x25
    [ 2.326398] i915 0000:00:02.0: irq 50 for MSI/MSI-X
    [ 2.326694] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
    [ 2.326697] [drm] Driver supports precise vblank timestamp query.
    [ 2.326780] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
    [ 2.329470] ieee80211 phy0: Selected rate control algorithm 'iwl-agn-rs'
    [ 2.335638] microcode: CPU2 sig=0x206a7, pf=0x10, revision=0x25
    [ 2.339306] microcode: CPU3 sig=0x206a7, pf=0x10, revision=0x25
    [ 2.339922] systemd[1]: Starting Sound Card.
    [ 2.339944] systemd[1]: Reached target Sound Card.
    [ 2.344210] microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    [ 2.353017] systemd-udevd[151]: renamed network interface eth0 to enp2s0
    [ 2.356365] systemd-udevd[152]: renamed network interface wlan0 to wlp1s0
    [ 2.359280] FAT-fs (sda3): utf8 is not a recommended IO charset for FAT filesystems, filesystem will be case sensitive!
    [ 2.403861] fbcon: inteldrmfb (fb0) is primary device
    [ 2.412172] EXT4-fs (sda5): mounted filesystem with ordered data mode. Opts: commit=15,data=ordered,discard
    [ 2.523824] usb 3-1.5: USB disconnect, device number 3
    [ 2.608485] iwlwifi 0000:01:00.0: L1 Enabled; Disabling L0S
    [ 2.615267] iwlwifi 0000:01:00.0: Radio type=0x1-0x2-0x0
    [ 2.885607] psmouse serio1: elantech: assuming hardware version 3 (with firmware version 0x450f00)
    [ 2.900591] psmouse serio1: elantech: Synaptics capabilities query result 0x08, 0x17, 0x0c.
    [ 2.975438] input: ETPS/2 Elantech Touchpad as /devices/platform/i8042/serio1/input/input8
    [ 3.013202] iwlwifi 0000:01:00.0: L1 Enabled; Disabling L0S
    [ 3.020042] iwlwifi 0000:01:00.0: Radio type=0x1-0x2-0x0
    [ 3.252446] IPv6: ADDRCONF(NETDEV_UP): wlp1s0: link is not ready
    [ 3.415660] Console: switching to colour frame buffer device 170x48
    [ 3.424244] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
    [ 3.424247] i915 0000:00:02.0: registered panic notifier
    [ 3.436609] acpi device:32: registered as cooling_device9
    [ 3.436968] ACPI: Video Device [GFX0] (multi-head: yes rom: no post: no)
    [ 3.437019] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input9
    [ 3.437169] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
    [ 3.496648] Non-volatile memory driver v1.3
    [ 3.963276] Bluetooth: Core ver 2.16
    [ 3.963296] NET: Registered protocol family 31
    [ 3.963298] Bluetooth: HCI device and connection manager initialized
    [ 3.963305] Bluetooth: HCI socket layer initialized
    [ 3.963307] Bluetooth: L2CAP socket layer initialized
    [ 3.963313] Bluetooth: SCO socket layer initialized
    [ 3.964708] usbcore: registered new interface driver btusb
    [ 4.338375] [drm] Enabling RC6 states: RC6 on, RC6p off, RC6pp off
    [ 4.468607] media: Linux media interface: v0.10
    [ 4.471891] Linux video capture interface: v2.00
    [ 4.518478] uvcvideo: Found UVC 1.00 device WebCam SC-13HDL11431N (2232:1018)
    [ 4.537926] input: WebCam SC-13HDL11431N as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.4/1-1.4:1.0/input/input10
    [ 4.538078] usbcore: registered new interface driver uvcvideo
    [ 4.538083] USB Video Class driver (1.1.1)
    [ 6.473768] wlp1s0: authenticate with 00:24:8c:eb:ff:66
    [ 6.480100] wlp1s0: send auth to 00:24:8c:eb:ff:66 (try 1/3)
    [ 6.482750] wlp1s0: authenticated
    [ 6.483074] iwlwifi 0000:01:00.0 wlp1s0: disabling HT as WMM/QoS is not supported by the AP
    [ 6.483084] iwlwifi 0000:01:00.0 wlp1s0: disabling VHT as WMM/QoS is not supported by the AP
    [ 6.483367] wlp1s0: associate with 00:24:8c:eb:ff:66 (try 1/3)
    [ 6.486701] wlp1s0: RX AssocResp from 00:24:8c:eb:ff:66 (capab=0x431 status=0 aid=2)
    [ 6.496708] wlp1s0: associated
    [ 6.496833] IPv6: ADDRCONF(NETDEV_CHANGE): wlp1s0: link becomes ready
    [ 6.534112] wlp1s0: Limiting TX power to 20 (20 - 0) dBm as advertised by 00:24:8c:eb:ff:66
    [ 776.460690] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
    [ 776.473529] psmouse serio1: Touchpad at isa0060/serio1/input0 - driver resynced.
    [ 969.874854] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
    [ 969.887746] psmouse serio1: Touchpad at isa0060/serio1/input0 - driver resynced.
    [ 1061.757868] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
    [ 1061.790334] psmouse serio1: Touchpad at isa0060/serio1/input0 - driver resynced.
    [ 1346.112078] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
    [ 1346.143576] psmouse serio1: Touchpad at isa0060/serio1/input0 - driver resynced.
    [ 2241.768058] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
    [ 2241.780927] psmouse serio1: Touchpad at isa0060/serio1/input0 - driver resynced.
    [ 2341.444767] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
    [ 2341.479230] psmouse serio1: Touchpad at isa0060/serio1/input0 - driver resynced.
    cat /etc/asound.conf (which was working)
    defaults.pcm.card 0
    defaults.pcm.device 0
    defaults.ctl.card 0
    Trying to play a file:
    mplayer Music/Arctic\ Monkeys/Favourite\ Most\ Nightmare/02-arctic_monkeys-teddy_picker-mst.mp3
    MPlayer2 UNKNOWN (C) 2000-2012 MPlayer Team
    [ass] FcFreeTypeQueryFace failed
    Cannot open file '/home/dan/.mplayer/input.conf': No such file or directory
    Failed to open /home/dan/.mplayer/input.conf.
    Can't open joystick device /dev/input/js0: No such file or directory
    Can't init input joystick
    Playing Music/Arctic Monkeys/Favourite Most Nightmare/02-arctic_monkeys-teddy_picker-mst.mp3.
    Detected file format: MP2/3 (MPEG audio layer 2/3) (libavformat)
    [mp3 @ 0x7f7b7e07d760]max_analyze_duration 5000000 reached at 5015510 microseconds
    [lavf] stream 0: audio (mp3), -aid 0
    Clip info:
    title: teddy picker
    artist: Arctic Monkeys
    album: Favourite Worst Nightmare
    track: 2
    language: German
    genre: Rock
    encoded_by: LAME 3.97
    date: 2007
    Load subtitles in Music/Arctic Monkeys/Favourite Most Nightmare/
    Selected audio codec: MPEG 1.0/2.0/2.5 layers I, II, III [mpg123]
    AUDIO: 44100 Hz, 2 ch, s16le, 128.0 kbit/9.07% (ratio: 16000->176400)
    AO: [pulse] Init failed: Connection refused
    AO: [alsa] 48000Hz 2ch s16le (2 bytes per sample)
    Video: no video
    Starting playback...
    A: 1.9 (01.8) of 163.2 (02:43.1) 1.6%
    aplay -D plughw:0,0 /usr/share/sounds/alsa/Front_Center.wav
    Playing WAVE '/usr/share/sounds/alsa/Front_Center.wav' : Signed 16 bit Little Endian, Rate 48000 Hz, Mono
    speaker-test -c 2
    speaker-test 1.0.27
    Playback device is default
    Stream parameters are 48000Hz, S16_LE, 2 channels
    Using 16 octaves of pink noise
    Rate set to 48000Hz (requested 48000Hz)
    Buffer size range from 2048 to 16384
    Period size range from 1024 to 1024
    Using max buffer size 16384
    Periods = 4
    was set period_size = 1024
    was set buffer_size = 16384
    0 - Front Left
    1 - Front Right
    Time per period = 5.651455
    Last edited by Kotrfa (2013-04-23 15:32:42)

    Same for me after system upgrade on 2013-05-01:
    pacmatic -Syu
    Since then, no Audio output via HDMI anymore. Mainboard is Intel DH67BL.
    Before upgrade, it worked. Audio via normal audio connector also still works.
    $ aplay -D plughw:0,3 /usr/share/sounds/alsa/Front_Center.wav
    Wiedergabe: WAVE '/usr/share/sounds/alsa/Front_Center.wav' : Signed 16 bit Little Endian, Rate: 48000 Hz, mono
    But on the connected (via HDMI) TV is nothing to hear. Video on TV via HDMI works. Checked also alsamixer volume setting.
    With this, I hear the sound on the speakers connected with the Mainboard:
    $ aplay /usr/share/sounds/alsa/Front_Center.wav
    Wiedergabe: WAVE '/usr/share/sounds/alsa/Front_Center.wav' : Signed 16 bit Little Endian, Rate: 48000 Hz, mono
    $ aplay -l
    **** Liste der Hardware-Geräte (PLAYBACK) ****
    Karte 0: PCH [HDA Intel PCH], Gerät 0: ALC892 Analog [ALC892 Analog]
    Sub-Geräte: 1/1
    Sub-Gerät #0: subdevice #0
    Karte 0: PCH [HDA Intel PCH], Gerät 1: ALC892 Digital [ALC892 Digital]
    Sub-Geräte: 1/1
    Sub-Gerät #0: subdevice #0
    Karte 0: PCH [HDA Intel PCH], Gerät 3: HDMI 0 [HDMI 0]
    Sub-Geräte: 1/1
    Sub-Gerät #0: subdevice #0
    $ lsmod | grep snd
    snd_hda_codec_hdmi 24877 1
    snd_hda_codec_realtek 53315 1
    snd_hda_intel 28850 1
    snd_hda_codec 87310 3 snd_hda_codec_realtek,snd_hda_codec_hdmi,snd_hda_intel
    snd_hwdep 4746 1 snd_hda_codec
    snd_pcm 62851 3 snd_hda_codec_hdmi,snd_hda_codec,snd_hda_intel
    snd_page_alloc 6038 2 snd_pcm,snd_hda_intel
    snd_timer 14846 1 snd_pcm
    snd 44486 9 snd_hda_codec_realtek,snd_hwdep,snd_timer,snd_hda_codec_hdmi,snd_pcm,snd_hda_codec,snd_hda_intel
    soundcore 4386 1 snd
    $ cat /proc/asound/modules
    0 snd_hda_intel
    I've read this, but did not help:
    https://wiki.archlinux.org/index.php/Ta … chitecture
    Here the list of upgraded packages:
    grep 2013-05-01.*pgraded /var/log/pacman.log
    http://pastebin.com/vXjp3Bw4
    I also downgraded to the kernel version before upgrade:
    pacman -U /var/cache/pacman/pkg/linux-3.7.4-1-i686.pkg.tar.xz
    But that did not solve the problem. Also using linux-lts kernel did not help.
    I have posted this also on the german Arch Linux board:
    https://bbs.archlinux.de/viewtopic.php?id=23955
    Last edited by 1970 (2013-05-06 05:23:59)

  • SAPScript Image not printing

    Hi all,
    In SAPScript I can see an image in the print preview, but when i print it is not printing from spool, other text parts are printing.
    Please help me in solving this.
    Thanks

    Hi,
    It should print from spool. Please check the spool whether the image is there or not.
    Regards,
    Teddy Kurniawan

  • How do I prevent the Darker Shade Box (color shift) around Vector Objects when Printing

    Sorry in advance for the novelette. I am absolutely mystified and frustrated and would love some help! I've been working on this problem for about 30 hours over the last 4 days to figure out what the heck is happening and cannot find an answer through various forms of research.
    Basically, when I print a JPEG, I am getting this area (a box) of darker shaded coloring around my heart and love text.  I've tested it a million different ways and am at a loss as to what the problem is ... is it an application problem, a color profile problem between my applications and printer, an improper way that I saved my file, etc.
    Here is a photo I took of the image printed out (so it is slightly skewed from camera distortion):
    The details:
    (1) I create graphic art and sell it online. I save all of my printable art as JPEG files because of my customer base (diy hobbyists that print on their home printers without much knowledge base nor graphic design software).
    (2) I use both Adobe Illustrator (AI) and Photoshop Elements 11 (PSE11) to design and save my artwork.
    (3) I insert JPEG images into Microsoft Word 2003 documents to "test print" since most of my customers use home printers to print. Since most people have this basic software, it is a good gauge of the kind of print out they might get using the same or similar software.
    (4) My PSE11 color profile setting is the default sRGB. I have test printed many times and I get the truest colors with this color profile.
    (5) My AI color settings are normally also an sRGB color mode, but on occasion, I use a CMYK color mode if I am creating a larger document that I know the customer will need to take to a professional printer to print out.
    (6) I do my home printing (for proofs) on an Epson Stylus Photo 1400 (which has the 6 color ink cartridges).
    (7) Until this printing problem occurred on this test print out, I always used the "photo enhance" option when I designate settings for my printer via the Microsoft Word documents.
    IMPORTANT: This is when I have the color shift?? or color rendering issues?? and it is the only time. If I use the regular ICM/ICC color profile of sRGB, the printing issue doesn't occur. Instead, I have a solid color background instead of this one with the strips of lighter color on the top and bottom.  However, I can't control how the customer prints, so I need to feel confident that whatever color profile setting they use, they will not run into this problem.  I even test printed the documents over at FedEx and the darker box/color shift did not occur.
    (8) The document in question only has 3 sets of objects: the heart, the solid colored rectangle colored background and the text.  All 3 objects are vectors, they are at 100% opacity and there are no "special effects" applied.
    (9) The image was entirely created in AI this time and exported as a maximum quality JPEG file, although you will see below that I tried many ways to create and save the file so that I didn't have the color band borders on top/bottom.
    (10) I regularly use AI for part of my art, then I drag it to my PSE11 open document and it becomes a Vector Object (it cannot by copying/pasting into a PSE11 document).  I also regularly export AI images as PNG files, then insert them into an open PSE11 document. This printing issue has not occurred until recently.  Here is an example of a very complex AI image I created, then inserted into PSE11 just to add the background (the Teddy Bear and books are AI vector objects) that were exported as PNG files then inserted into PSE11 to integrate with the background image - I test printed with Photo Enhance and had no printing issues:
    So, from the research I have done, it looks like it is a color rendering or color space issue with conflicting color profiles in the same document. I checked my color profile settings and both sRGB and CMYK were set to embed ICC color profiles.
    I tried changing AI settings to Preserve Numbers (ignore linked profiles) for CMYK, but that didn't work.
    I also checked and made sure that not only the document setup showed the sRGB color profile, but that all the objects within the document also were converted to sRGB as well for consistency. That didn't work.
    I tried converting the document to CMYK along with the vector objects. That didn't work.
    I tried saving the heart image as a PNG file alone, the "love" text as a PNG file alone, both the heart and text together as a PNG files alone. Once saved as PNG files, I inserted them into an open empty PSE11 document - as I normally do. I then added the background color I wanted. That didn't work - the print still showed the color changes.
    I tried dragging each vector object separately and even as a group and got the same color change issue when printing.
    I tried "expanding" and "outlining" the text before exporting as JPEG, before exporting as a PNG and before dragging as a vector object into PSE11. Expanding the text did not help the situation.
    I tried exporting as Adobe PDF, then opening in PSE11, then resaving as JPEG. That didn't work.
    I tried flattening transparency (even though there is no transparency in the AI file). That didn't work.
    I tried rasterizing the image. That didn't work.
    Thinking that the file might be corrupt, I started from scratch and redesigned the same heart and love text.  Unfortunately, I had the same problem as before.  At this point, my AI started becoming buggy and would not open new files. It happened repeatedly and I decided it was best to uninstall and reinstall AI (and maybe that would fix the problem).
    I created just the heart in AI, then inserted it into an open PSE11 document (both after exporting as PNG and also by dragging as Vector Object from AI). It seemed to work. I could both drag the vector into PSE11 from AI and export from AI as a PNG, then insert into open PSE11 document with a background color - and it printed a solid background.
    So, I thought that reinstalling and setting back to defaults worked. But, then I added the love text around the heart and tried exporting as JPEG files and the same problem continued to recur. Whether I dragged as a Vector object into PSE11 (the heart object and love text separately and also another time with the vector objects dragged as a group) or saved them as PNG files and inserted into PSE11 - I got the different shades of color on what should be a solid background. I even tried saving the PSE11 as a PSD file first, then resaving as JPEG and I tried saving as PNG and printing and this didn't help solve the problem.
    I really think it is some color conflict issue but I can't figure it out. I am definitely not very knowledgeable about color profiles and how to sync all my devices, however, as I mentioned, this was not an issue until recently (and I think??? I recall changing the CMYK setting from Preserve Numbers to embed color profile a month or so ago - however, it should have been solved when AI went back to its defaults upon reinstall).
    The reason I believe it is a color rendering/color space issue is because I could see the color output when I saved the JPEG with CMYK color profile versus sRGB color profile and the sRGB colors were much richer, not surprisingly. The top and bottom colors matched the sRGB printout and the middle darker box section matched the CMYK printout.
    I am sure it is something fundamental or simple and I am completely overlooking it.  I wish it were just a transparency issue, because people know how to fix or do workarounds for it. But, there are no vector objects with any transparency ...
    If I missed some detail, I apologize. Any help would be a dream come true at this point! lol
    Thank you!

    Okay, I got motivated to try again.  From doing a bit more research on troubleshooting AI printing problems, the Adobe article talks about print drivers. It was advised to uninstall and reinstall the print driver if the printing issue persists. So, I did. Unfortunately, I still had the same result after reinstalling and trying a test print! Ugh.
    So, as Jacob said upfront, I seem to have an overactive print driver that is trying too hard (and it is a non-postscript printer which I realize is part of the problem).
    There are so many variables in my situation as to how I create art and save/export art. I sometimes work solely in AI, sometimes solely in PSE and sometimes I use both programs to create. Consequently, I will:
    (1) export directly from AI as JPEG if I am not adding PSE11 artwork.
    (2) export directly from AI as PNG  if I plan on inserting that image into PSE11 to add to artwork I have created in PSE11.
    (3) drag vector objects as a Smart Objects directly from AI to PSE11 to add to artwork I am creating in PSE11 if I know I will playing with the vector object and resizing in PSE11.
    So, I did a test print using scenario 2, where I inserted the heart and love text PNG (AI created vector object) into an old PSE11 document. This old document already had a vector object from AI with a solid background and I knew it printed correctly. So, after inserting this new PNG from AI into this old document, it printed correctly using the photo enhance mode.
    However, I haven't had a chance to actually create new art in the older AI files (that I know print properly), resave as something else and try another test print (either by exporting as JPEG and printing in Word or by exporting as PNG file and inserting into PSE11 document, then saving as JPEG and printing in Word).
    After testing the different possibilities of ICM settings within my printer, I found that the JPEG images printed out with the truest colors and best quality if I simply selected "no color management" from the printer. Shocker, huh? lol
    MY SOLUTION: So, what I think I will simply do is add an instruction sheet with the printables I sell, explaining that the color profile setting should never be handled by the printer so make sure to turn off color management by printer (and if they feel they must use the printer for color management, make sure the setting is sRGB since I embed that color profile in my JPEG's).
    Edited to add: Since my issue was never about how I could print a successful image (I knew I could simply change the color profile settings), but rather about how to make sure that customers would get consistent and high quality print outputs of my digital images, this seems like the best approach.
    I don't think I will every really know exactly why I am now getting color shifts in the "photo enhance" mode when I did not have this problem a couple months ago - applying the same methods of creating artwork. I was concerned that I was saving/exporting using incorrect or mismatched color settings or something of that nature.  However, since I went through the process of making my color spaces the same for everything, and I still have issue, clearly that is not the culprit. The only thing I can do to solve the problem and it is a straightforward solution anyway -> is to educate the buyer on how to print successfully (don't use photo enhance! ha ha).
    Thanks again to everyone who chimed in and offered advice!

  • How Verizon WIreless Deals With A Customer's Issues With A Flawed Device

    (link removed)
    Let me start at the beginning…
    I have had a bad history with phones during my 6 years I been with Verizon Wireless(VZW). All the phones I had with them always have some manufacturer issues. I either had to pay a deductible or was allowed to exchange it for free due to it still being under warranty.  I had to go through this 14 times in under 6 years. For the most part, Verizon Wireless has been very helpful with these issues & the amazing service they provided as kept me a very loyal customer. These qualities even lead me to sign up for Verizon FiOS over Comcast when I moved into my new apartment.
    On February 17th, 2014, I received my tax refund. Most of it was going to repairs for my car, but for a birthday gift to me, I wanted to upgrade my phone. At the time, VZW had a deal to trade in your old phone & upgrade to a new phone. Your trade in got $100 taken off the cost of your new phone. I thought that was a sweet deal since the phone I had, The Motorola Razr Maxx HD was my 4th replacement to replace my original phone from when I first upgrade my phone with a new contract 2 years ago, The Motorola Droid 3. The Razr Maxx HD was a good phone but not what I wanted, It did what it needed to do & the technology was steller. Just not my first choice in a phone.
    Since the Droid 3 was no longer in production, i always had to get a replacement phone VZW saw fit for me to get. Now with my contract up & my opportunity to get a new phone, I knew what I wanted   I wanted the Samsung Galaxy Note 3 now. It has so many amazing features, apps & it is the perfect phone for someone my size. I can easily text with it, I do not feel I will crush the phone holding on to it & all of the hardware in it is like nothing on the market at that time. I been researching the phone months before it came out & I knew once I had the money, this is the phone I wanted.
    So I went to the VZW Store ready to make the exchange and have a phone I wanted finally for once in nearly 2 years. I got there to be helped my a gentleman named Teddy. He was eager to help me. I told him why I was there & instantly got the ball rolling. My phone I wanted was in stock, I was able to get $100 from the trade-in promotion. HE also informed me I could get a free tablet by just paying the taxes for it, A mere $15 & The Note 3 was on sale. I could walk out this day with a new phone AND a tablet for $172! So I agreed to it & all I had to do was pay. Then the problems started…
    I was told I could not pay with my debit card. This was due to an issue of a returned payment. An issue I had with VZW due to their company in October 2013 in which they took 9 days to process my monthly bill payment to only return it when the funds was still available to complete it. So I had to leave the store to find an ATM to withdrawal the cash so I could purchase the phone & tablet. Once I came back, we tried to finish the sale. Now I was told I could not trade in my phone due to the fact VZW did not allow me to make debit payments because of their own error. I was told i could pay full price for the phone and I could not get the tablet. I declined & left the store.
    Very upset, I called VZW’s customer service line to formally complain. They could do nothing to help me since no one, not even a supervisor could fix these restrictions to my account. This made me more upset, so I went above their head & reported my situation to The Better Business Bureau(BBB). Within 7 days, a Manager From VZW’s Home Headquarters, named Brian (removed), finally called me to resolve my issues. HE apologized, removed my account restrictions & was sending me A Galaxy Note 3 for my troubles free of charge. I wanted the tablet too but did not care at this point. I just wanted a phone I wanted for once & I can do without a tablet. I never went out of my way to get one before & I was not planning to now.
    On February 25, I received my new phone. I instantly fell in love. The phone was the perfect size for me & it worked just like every review I read online said it would. Then on February 27th, the phone began to have charging issues. The factory charging cable that came the the phone began to have issues charging the phone, then not recognizing the charger at all. I called customer service to make a complaint. This is when I learned for the first time that The Samsung Galaxy Note 3 has a defect with it’s charging cable & charging the device. They told me I could either mail the cable for a replacement or try to get the replacement at a store. So I decided to go to the same VZW store to get the replacement.
    Once I got there, I had to wait in line for 30 minutes to finally speak to someone. Once I did, I was told they had no chargers in store. All that could be done was call Samsung & have a replacement phone sent to me. I asked what would I do for a charger until then & they said I could use the micro USB charger from my last phone to charge it.
    So I mailed the charger to Samsung, who said it would take 8-10 days to get my replacement. During this time, the phone began to now stop holding a long charge. So I again called customer service. I was again told to go to the VZW store to get a replacement charger. I went back to the store again to be told they could do nothing for me since I did not have to original charger. All I the could do was sell me a mobile charger for 50% off. Since i need my phone, I had no choice. I had to spend $30 now on a device to help my faulty one.
    March 6th, my replacement charger arrived. I was happy because now I can charge my phone with the proper charger & get a full battery life from it. That same day the charger had the same issues again. So i instantly took it to the Verizon Store to be told I need to call customer service for a replacement phone. So I return home to see in my mailbox is my VZW bill. The statement says my bill is $400! Verizon Wireless & Brian (removed) had charged me full price for my phone despite what he told me when he called me.
    I instantly called his office to only get his answering machine. I left a very angry yet respectful message explaining my disgust with what he & VZW have done since I got this phone. I said I refuse to pay anything until this issue is fully resolved. I then proceeded to file another complaint to The BBB. This time I would get no response from VZW. Instead i had to call and chat online with their customer service lines for over a month to have a REFURBISHED device, a replacement battery & a generic charging cable sent to me. My phone still has charging issues & I must travel around DAILY with my mobile charger to make it a whole day to be able to use my device.
    Verizon Wireless and Brian (removed) will not resolve this issue for me. Instead they have suspended services to my phone and are forcing me to pay the full price for the phone or having my service “permanently discontinued”.
    I am left with no choice but to pay this by next month. I need my phone for personal, business & emergency reasons just like everyone else. I can not pay this AND an early termination fee. Verizon Wireless has done nothing to help me & now I am stuck in a contract for the next 16 months with a company that has done this to me during the last 2+ months. I have a improper working phone and they get $400 for it and Brian (removed) gets his commission.
    Before I pay this bill, I am making one last complaint to The BBB & I am spreading my story across social media like wildfire, I am hoping someone at Verizon Wireless sees this. MAYBE they will do the right thing. Then again, they had the chance to & have not….
    Mr. Brian (removed) & Verizon Wireless,
    My Name IS Reginald (removed). Due to months of complaints you should very well know who I am. Since you will NOT help me, I have no choice but to play by your rules and pay you ridiculous cost for a phone despite the act of what I was verbally told. You & your company you work for have had countess times to make this right & you have not. I might have to be stuck in a situation like this, but the entire internet will now learn of your actions & how you treat people. Maybe this will teach you all how to properly treat your paying customers. Someone can still make this right. You have my number, but you would have to reactivate it to contact me though.
    Regards,
    Reginald (removed)
    Edited as required by the Verizon Wireless Terms of Service
    Message was edited by: Admin Moderator

        Reginald, We absolutely want to make this a better experience. Would it be possible for us to work together in direct message. Please follow us and we can get started.
    Sheritah_vzw
    Follow us on Twitter
    @VZWSupport

  • How do I update all the records in a table from the contents of another table?

    Ok some situation information, I have a pervasive database that runs our accounting software that I am pulling a product list from.  I have that list stored in a table in SQL.  From time to time we update the records in the pervasive database and
    I want to be able to pull those changes into the SQL table.  I don't want to drop the table and recreate it because if a product is no longer active in the pervasive database it will not be returned by the query (if I return all the products even the
    inactive ones I will get thousands of records rather than just a few hundred) and I do not want to loose the products from the table that are now inactive.  
    So what I want to be able to do is pull the list from pervasive, compare it to the list that exists in SQL and update any changed records, add any new records, and leave any now missing records alone(missing from the pervasive list but present in the SQL
    list).  I have no trouble pulling the records from pervasive (now) but I am a little stumped on how to do the rest.  I am not sure if this is a situation to use MERGE or not.  I also do not really need this to be done on a regular basis as the
    changes do not happen often enough for that, the ability to manually trigger it would be enough.
    Any help would be appreciated.
    David

    Hi David,
    lets say you want to go with the lookup transformation.
    lets say u want to move the data from server A table A1 to Server B table B1
    What you need to do is the following:
    Cofigure the Lookup options as follows:
    - In general -> Specify how to handle rows with no macthing entries -> "Redirect Rows to no Match Output"
    -  In Connection -> Set the ole db connection to the Server B and select the table B you want to lookup the values in your case the table where you want to input the changes 
    -  In columns -> link the product column from table A to product column in table B. And do not select any rows to output.
    - now your component is ready next you need to input. so when u connect your lookup to the destination component You will get an option to select which output you want to use - use "Lookup No Match Output".
    this will actually just allow you to add only new items only to the table B.
    Teddy Bejjani - BI Specialist @ Netways

  • Alphabetical problems with composer view in iTunes?

    I have mostly classical music in my iTunes library and would find the Composer view function really helpful... but it doesn't work properly.
    When I click on a composer within the letter A (Alwyn for example) then it lists all the albums that feature that composer on the right panel - like it should. However, when I carry on and get toward the end of letter B (Britten for example) then it starts to include albums featuring composers who is next alphabetically. And there after the alphabet is messed up.
    So when I click on Scarlatti, the only albums I also see albums featuring Schöenberg, etc. Some Scarlatti albums are also on the previous entry (Sawer). What is going on? And how do I fix it??
    Many thanks.

    .... would find the Composer view function really helpful... but it doesn't work properly.
    Teddy,
    The only view in iTunes that works properly is Songs view (IMHO).  Use Songs view.  Enable the Column Browser, and make sure that Composer is one of the fields.  Click on a composer's name, and you will get an accurate list of tracks for that composer.

  • Error while running "Create Application" wizard

    Hello,
    I'm trying to use the "Create Application" wizard (APEX 3.1.0) to generate a report/form application based on a table. When running the last step of the wizard, the process fails with the following info:
    ORA-20001: Unable to create modules. ORA-20001: Create pages error. ORA-20001: Unable to create form page. ORA-20001: Error page=2 item="P2_SZRXSTG_APPL_COLLEGE_STATE_" id="1625410167910413" ORA-20001: Error page=2 item="P2_SZRXSTG_APPL_COLLEGE_STATE_" id="1625410167910413" has same name as existing application-level item. ORA-0000: normal, successful completion
    Unable to create application.
    These are the three table columns that seem to be causing the error:
    SZRXSTG_APPL_COLLEGE_STATE_1
    SZRXSTG_APPL_COLLEGE_STATE_2
    SZRXSTG_APPL_COLLEGE_STATE_3
    From what I can tell, when generating the code, APEX seems to be cutting off the last character from the column names and it's attempting to create multiple items for the same column.
    Any ideas on how to work around this?
    Thank you,
    Teddy
    Update:
    Seems the reason is because total length of an item name in APEX is 30 chars. My column name is 28 characters, and when the wizard is creating the page items, it prefixes each column name with a "P2_" which pushes the last char off the column name.
    As a work around, I just created the report and form pages separately, and chose not to add those three columns to the form page.
    Out of curiosity, is this something we can avoid or work around any other way, or will I have to always be wary of my column names in this sense?

    Looks like the long column names mess up the wizard. You can create an application on a "similar" table, one with shorter column names. Then edit it the page processes that refer to the column names/table name to refer to the real table name and column names.
    Scott

  • In Smartform i am getting a Error Message Graphic cannot be displayed

    Hi All,
               I am trying to display a image in smartform . In the Code i have created a BDC for SE78 for Image upload and when the Image is Upload and when i try to execute the Smartform i am getting a Error Message : Graphic cannot be displayed
    I am trying to load a BMP image in  the form.
    Can anyone help me out .
    Thanks in Advance .
    Regards
    Shankar

    Hi,
    There are two possibilies of issue here.
    1. The BDC is not correct so the image is not uploaded.
    2. Graphic parameter is not properly specified in smartform.
    Please check issue no 1 first. If you confirm that image already in SAP, then you can go to issue no 2.
    Regards,
    Teddy Kurniawan

  • Windows 8 and i-pod

    I have windows 8 and cannot use my i-pod. it does not recognize apple and vise versa. i have to wait for a fix. can listen to music that is on the i-pod, but cannot download any thing from my library.

    Hey Terrible Teddy,
    Thanks for the question. I understand you are experiencing issues with the iTunes library on your PC. To begin, I see that you recently installed a new hard drive. Did you happen to copy over files from the previous hard drive? If not, I suspect that the iTunes library is no longer locally stored, and what you are seeing is your iTunes in the Cloud purchases.
    Do the tracks have a download icon that looks like this?:
    If so, you’ll want to download these purchases as they are not locally stored on your computer:
    Downloading past purchases from the iTunes Store, App Store, and iBooks Store
    http://support.apple.com/kb/HT2519
    After doing so, go ahead and attempt to sync your iPod once more.
    Additional Information:
    iTunes 11 for Windows: Symbols used in iTunes
    http://support.apple.com/kb/PH12306
    iTunes 11 for Windows: Download previous purchases from the iTunes Store
    http://support.apple.com/kb/PH12491
    Thanks,
    Matt M.

  • Error while using bapi BAPI_INCOMINGINVOICE_CREATE to post MIRO

    Hi Friends,
             Im using bapi BAPI_INCOMINGINVOICE_CREATE to post MIRO.
             im passing data to table GLACCOUNTDATA.
             Below are the table fields im paasing
         INVOICE_DOC_ITEM " '000001' deafault always
         GL_ACCOUNT  "Which is constant for all in my case               
         ITEM_AMOUNT      " Total PO net amt + Frieght charges header level      
         DB_CR_IND      " 'S' always default     
         COMP_CODE      " 'RPPL' always default          
         TAX_CODE      " 'V0'     deafault always     
         PROFIT_CTR       " for ex 1100180. based on plant
              While posting this bapi is trhrowing error as below
         'profit centre  RPPL/1100180 does not exist for 01.12.2008'
         where 01.12.2008 is the MIRO posting date which im passing in header.
            We checked dates for profit centres they are correct.
            Awaiting the reply ASAP.
    Regards,
    Venky

    Hi,
    It would be better if you do a recheck on data input for BAPI. If you sure the data are ok but the BAPI still gives error message, then I suggest to post to OSS.
    Regards,
    Teddy Kurniawan

Maybe you are looking for