Flashing Screen - with new installation

I recently bought a new 60gb video ipod. My roommate had been using my computer, Windows XP, for his ipod, but is no longer needs to use my computer. I uninstalled his itunes and quicktime software from my computer so I could start clean with my new ipod. I install the software that came with my new ipod with a complete installation I plugged in my ipod. Itunes appears to detect my ipod but I have been watching “Do not disconnect” flash on my ipod screen for an hour. I have tried resetting both my ipod and computer multiple times, and have reinstalled the itunes software a few times as well. I tried updating the itunes software, but all my effort still leads me to the same flashing screen once itunes in operating. I can successfully eject my software using the itunes shortcut, but once the ipod is plugged back in I get the same flashing screen. Any help would be greatly appreciated. Thanks.

I have the same problem: flashing screen, however with one variation, Itunes does not detect the iPod. So I cannot change from manual to automatic because the Itunes says "no iPod detected". I have tried reinstalling the software, resetting the iPod, and the iPod updater will not see the iPod as well, so I cannot update the software on the iPod. This seems to be an extremely arcane system! Can anyone help me please? Windows seems to grab hold of the USB connection and mount it immediately as a hard drive interdicting the iPod software. Windows explorer sees the Ipod hard drive and I can even transfer files to it, but the ipod software does not see the files! So I'm in the woods on this one. Can anyone help me on this, please?

Similar Messages

  • Mayor Problems with new installation / restoring from time machine

    I encountered several problems while setting up my mac mini, 1,66 Ghz, 60 GB from the start. The following problems occured:
    1.) Installing 10.6 upon existing 10.6.4 caused scanner driver to fail. I was unable to reinstall it, so i decided to reinstall 10.6. from the start
    2.) clean install of 10.6., after finishing i could not install iWorks. There was an error like "com.apple.installer.pagecontroller" ant installation terminated. With MS Office 2004 I had a problem, too: An error with _ds.store occured, I could not even copy the files to my harddisk. I thought, it might be the optical drive, so i took an external one which caused the same problems. I proceeded to 10.6.4 by update, but that did not make it better.
    3.) next clean install (two tries wirth different backups) by my backup from time machine. It worked until it rebootet. I ended in a blue screen with every now and then the rotating cirlce, but could not proceed any further.
    4.) tried to repair rights hat no effect. The harddisk is reportet to be functional.
    5.) Back to the roots, i thought, installing 10.4. which came on the grey disks with the mini. I encountered the same problems after installing, furthermore, on trying to install flash 10.1 it could not open the .dmg-file.
    6.) Installed Win XP. All seems funktional.
    So, please, can anyone tell me, what is wrong with my mac mini? to me, it seems to be a problem with hardware, but i cannot verivy this. Please help me.

    MathiasLeopold wrote:
    3.) next clean install (two tries wirth different backups) by my backup from time machine. It worked until it rebootet. I ended in a blue screen with every now and then the rotating cirlce, but could not proceed any further.
    Did you use a Leopard Install disc to restore a Snow Leopard backup? If so, that's the problem. You must use a Snow Leopard Install disc to restore a Snow Leopard backup.
    If you did use the right disc, were you restoring backups from the same Mac?
    If so, were you having problems before all this started? If you were, it's possible those problems corrupted your installation of OSX, and that was copied to the backups.
    So, please, can anyone tell me, what is wrong with my mac mini? to me, it seems to be a problem with hardware, but i cannot verivy this. Please help me.
    Try running this: Intel-based Macs: Using Apple Hardware Test

  • Flash Screen with JWindow

    Hi All,
    I want to make a Flash Screen when my program start, and shows some information before hiding it and display the main window. I read from the forum that I should use JWindow to achieve what I want.
    However, Forte doesn't have a JWindow template, I search for the site and cannot find much about how to use JWindow. Can anyone here kindly help me?
    I want some sample code, or some resource about how to use JWindow.
    Thanks

    better try the following code
    import javax.swing.*;
    import java.awt.Dimension;
    import java.awt.BorderLayout;
    public class SplashScreen implements Runnable {
       JWindow          splashScreen;
       JProgressBar    progressBar;
       Thread              thread;
       /// assuming that following declarations are dummy apps associated with this class
       App1 app1;
       App2 app2;
       App3 app3;
       App4 app4;
       App5 app5;
       App6 app6;
       App7 app7;
       App8 app8;
       public SplashScreen() {
          splashScreen = createSplashScreen(350, 290, new ImageIcon(yourImageFilePath));
          splashScreen.setVisible(true);
          start();
       public void start() {
          thread = new Thread(this);
          thread.setName("ProgressThread");
          thread.start();
       // stop the thread
       public void stop() {
          if(thread != null) {
             thread.interrupt();
             thread = null;
       // close the progress of loading
       public void close() {
          stop();
          splashScreen.setVisible(false);
          // give a 2 sec. break
          try { Thread.sleep(2000); } catch(Exception ex) {}
          //////  Your Application Frame
          app.frame.setVisible(true);
       public void run() {
          progressBar.setString("Loading, please wait...");
          try{ thread.sleep(1000); } catch(Exception e) {}
          progressBar.setString("Loading App1 ");
          progressBar.setValue(progressBar.getValue() + 10);
          app1 = new App1();
          progressBar.setString("Loading App2 ");
          progressBar.setValue(progressBar.getValue() + 10);
          app2 = new App2();
          progressBar.setString("Loading App3 ");
          progressBar.setValue(progressBar.getValue() + 10);
          app3 = new App3();
          progressBar.setString("Loading App4 ");
          progressBar.setValue(progressBar.getValue() + 10);
          app4 = new App4();
          progressBar.setString("Loading App5 ");
          progressBar.setValue(progressBar.getValue() + 10);
          app5 = new App5();
          progressBar.setString("Loading App6 ");
          progressBar.setValue(progressBar.getValue() + 10);
          app6 = new App6();
          progressBar.setString("Loading App7 ");
          progressBar.setValue(progressBar.getValue() + 10);
          app7 = new App7();
          progressBar.setString("Loading App8 ");
          progressBar.setValue(progressBar.getValue() + 10);
          app8 = new App8();
          progressBar.setString("Loading Complete ");
          progressBar.setValue(progressBar.getValue() + 10);
          try{ thread.sleep(1000); } catch(Exception e) {}
          progressBar.setString("Starting App ");
          progressBar.setValue(progressBar.getValue() + 10);
          try{ thread.sleep(2000); } catch(Exception e) {}
          close();
       public JWindow createSplashScreen(int width, int height, ImageIcon splashIcon) {
          JWindow splashScreen = new JWindow();
          splashScreen.getContentPane().add( new JLabel( splashIcon ),
                                              BorderLayout.CENTER   );
          splashScreen.getContentPane().add( progressBar = new JProgressBar(),
                                              BorderLayout.SOUTH );
          progressBar.setValue(0);
          progressBar.setStringPainted(true);
          Dimension screenSize = splashScreen.getToolkit().getScreenSize();
          splashScreen.setSize(width, height);
          // center the window
          splashScreen.setLocation(  screenSize.width   /  2  -  width   /  2,
                                     screenSize.height  /  2  -  height  /  2  );
          splashScreen.setVisible(false); 
          return splashScreen;
       public static void main(String args[]) {
          new SplashScreen();
    }

  • Problems with new installation of iAS on Windows

    This is a new installation of iAS 10.1.2.0.2 on Windows. The application server doesn't come up properly after reboot. The log file D:\Oracle\ora101_infra\opmn\logs\OC4J~OC4J_SECURITY~default_island~1 contains an error stack that begins with:
    SSO: DB Error. Please make sure the database is available and restart SSO Server
    Obviously, the database (service name OracleServiceIAS472F) is started after the rest of the services (service names similar to Oracleora101_XXX). I have found documentation on how to make the ProcessManager service of the OracleAS Infrastructure before it starts up the ProcessManager service of the middle tier, but no notes on starting the database service in an order different from Windows default. Extensive googling doesn't give me that others have had similar problems. I would like to verify before starting to mess around with the order of services starting at boot time.
    The person doing the installation (I don't have direct access to the machine) maintains that installation of WebUtil is causing these problems, and that the problems disappear if he reverts the configuration of WebUtil. I have limited experience with forms configuration and cannot see the connection.
    Any input would be greatly appreciated!
    Regards,
    Maria

    Maria, we have numerous installations of both 10gDB 10.1.0.5/10gAS 9.0.4.2 and 10gDB 10.2.0.3/10gAS 10.1.2.0.2 here. The environments are all two server configurations: 1 server has DB + AS Infrastructure, 1 server has AS Middle Tier. I have not had an issue with a DB server reboot causing the Infrastructure to not come up, although we have a strict rule of always rebooting these two servers in pairs: first DB then AS Middle Tier. And since there are gazillion MS patches, they do get rebooted frequently. Regards, John

  • Mdadm boot slow to assemble drives with newer installs

    I had a problem where my raid1 installs from this year would pause about 5 seconds per mdadm entry yet my old installs from March 2014 would go through all 4 mdadm entries in less than a second. After fussing for a long time on the new installs I finally broke (slowed) one of my old installs which immediately revealed what the problem was.
    I didn't forget to pick partition type FD or FD00. I have my install sequence in a text file so I rarely forget things. I install through PuTTY pasting all the way so it's fast and mistakes are rare.
    devices of the form /dev/md/* take about 5 seconds to create.
    devices of the form /dev/md{0..127} create very fast.
    "mdadm -E --scan" always creates devices of the form /dev/md/{0..127}. In the past I was very meticulous about fixing the device names to the more compact form. I never missed so I never found out there was a substantial speed difference. I just like the the more compact look of /dev/md1 in my boot menu. Eventually I progressed to UUID and LABEL but persisted with the compact form. Then I discovered "mdadm --name" so I left mdadm do it's own thing. What could possibly go wrong?
    I also noticed that the mdadm instructions changed from using "mdadm" to "mdadm_udev". mdadm_udev seems to assemble faster than mdadm.
    To fix, boot once to see if you're slow, fix any usage of /dev/md*/* in your boot scripts or fstab, fix the form in /etc/mdadm.conf, and mkinitcpio...
    I still see that the new installs pause at udev more than old installs, but instead of 20s vs >1s, it's now 5s vs >1s, which is much better.
    Looking further I compared mkinitcpio.conf and noticed that autodetect is now installed by default. I took that out and though my list of drivers went way down the pause didn't change. Then I compared "lsinitcpio -a /boot/initramfs-linux.img" and I saw that fsck.zfs was loading so ZFS being a data drive only I uninstalled it and remade mkinitcpio. The pause didn't change.
    Now "lsinitcpio -a /boot/initramfs-linux.img" and "lsinitcpio /boot/initramfs-linux.img | sort" compare the same yet the pause remains. I know something is lying because the slow pause computer has a SAS controller and the fast pause computer doesn't, and I know that I must remake mkinitcpio when the SAS controller brand changes or it won't boot without Fallback. The mptsas driver is hiding in there somewhere. So then I unpack both initrd files and by-content compare all files with Total Commander.
    Only one difference: mdadm.conf
    I can't boot without the SAS controller so I can't check to see if that's the source of the pause. I suspect it is because I can see the NumLock blink halfway through the pause and I know the SAS controller isn't concerned with that.
    To solve this quandary I made a quickie install on a SATA only computer. I used the fast form of /dev/md* in mdadm.conf and left autodetect in mkinitcpio.
    It's fast, but there's still about a half second pause right there at udev. Out goes autodetect. Still about a half second.
    Then, back at the slow pause computer, I swapped the Marvell AOC-SASLP-MV8 for the LSI SAS2008 9211-8i. See Zorinaq for what makes this possible. The pause at udev dropped to about 1s which is only a bit slower than SATA. Not really a win since the LSI BIOS boot takes much longer. The good news is that I didn't need to rebuild mkinitcpio to change controllers. autodetect is toast and I get one more degree of freedom!
    I guess that's as good as it gets. Fortunately the mdadm --name option doesn't create /dev/md/* entries so I don't need to fix that.
    The Internet is strangely silent on this issue. I guess you're all just used to slow boots with mdraid.
    This is a bug and needs to be reported. Either mdadm scan needs to stop producing the slow form or needs to make the slow form fast.

    severach wrote:I didn't forget to pick partition type FD or FD00.
    I wouldn't use this partition type anymore. (raid autodetect is deprecated)
    severach wrote:Then I discovered "mdadm --name" so I left mdadm do it's own thing.
    mdadm --name never worked well for me. I don't see many people using it.
    I prefer a minimal mdadm.conf that only specifies the md number and UUID.
    ARRAY /dev/md0 UUID=627125a5:abce6b82:6c738e49:50adadae
    I don't notice any delays but, in my case the raid is assembled in the background while in the foreground LUKS is waiting for me to type a passphrase.

  • HT1937 how can i replace my iPhone 4G -broken screen with new IPHONE 4G?

    hi Guys, I have iPHONE 4G 15 G, yesterday i broke the screen, however it still works super fine, and the touch works normal too. Only the screen is 50% damaged. I have been informed that I can change it with new 4G 16G by paying like 120 GBP, how can I do that ?

    Take your iPhone to an Apple Store or call Apple Support. They'll exchange your iPhone for £126,44 if you ship it in or £119 if you can get to an Apple Store. The unit you get in replacement will be refurbished and an idential model to the one you have now.
    Regards.

  • Is it possible to replace my W520 screen with new IPS version?

    My W520 laptop continues to give good reliable service. \
    However I now look with envy the latest versions that use IPS screens. This is important to me as I am a pro photographer.
    I would like to know if is possible to upgrade/replace my existing screen with the latest tech... namely the 3K (2880 x 1620), IPS LED Backlit Anti-Glare Display?
    Is it possible for me to order the part and simply replace it together with the required drivers?
    Thanks

    Someone used an LVDS to eDP adapter to get a newer eDP 1080p IPS panel working in a LVDS connected X220.
    AFAIK, no one's done it for the W520. The extra hurdle is that the 3K resolution probably exceeds the bandwidth of LVDS. No guarantees either way.
    W520: i7-2720QM, Q2000M at 1080/688/1376, 21GB RAM, 500GB + 750GB HDD, FHD screen
    X61T: L7500, 3GB RAM, 500GB HDD, XGA screen, Ultrabase
    Y3P: 5Y70, 8GB RAM, 256GB SSD, QHD+ screen

  • External screen with new macbook pro 13"

    Hello I've a issue with my new macbook pro 13" (i5,8go,SSD). I have a external 27" monitor yiiama B2776HDS-B1 who was working fine with my macbook pro 13" 2010 running on snow leopard. But with my new one, I've got a black border on each side of the screen with the same resolution (1920x1080) used with my old macbook. My macbook is linked with a vga cable and a apple mini display adaptator.

    The newer MacBook Pros use ThunderBolt which came out after the MacBooks were discontinued. So you might post this question in the MacBook Pro forum for a better chance at an answer. https://discussions.apple.com/community/notebooks/macbook_pro

  • How to replace the existing selection screen with new selection screen

    Hi,
    I have first selection screen with parametre as a table name, then I have created dynamic selection screen as 2nd selection screen with different fields of that table as select options. This is done using genaration of dynamic report. Now If I click on button on this 2nd selction screen , then I want to replace this 2nd dynamic selection screen , with the other selection screen fields.
    Can anybody guide me, How to do replace one slection screen with different selection screen.
    and one imp thing is this selction screen is populating with dynamic fields on it.
    Regards,
    Mrunal

    As I can understand you want to make some of the screen field to disable or visible on screen  depending upon the interaction of user with screen 1.
    You may use this example code in PBO of screen 2.
    LOOP AT SCREEN.
        " action has been taken to modify the area office screen as per the option chosen at screen 99.
        CASE ACTION.
            " if the user has taken up the option of UPLOAD
          WHEN 'UP'.     " screen processing while we upload the plan
            " during upload we will make dates as output fields only
            IF SCREEN-NAME = 'ZSDTPLANVRSIO-DAT_TO' OR SCREEN-NAME = 'ZSDTPLANVRSIO-DAT_FRM'.
              SCREEN-INPUT = 0.
              MODIFY SCREEN.
            ENDIF.
            " also make 2 buttons disabled
            IF SCREEN-NAME = 'AO_DO' OR SCREEN-NAME = 'AO_VE'.
              SCREEN-ACTIVE = 0.
              MODIFY SCREEN.
            ENDIF.
          WHEN 'DN'.      " screen processing while we upload the approved plan
            " during upload we will make dates as output fields only
            IF SCREEN-NAME = 'ZSDTPLANVRSIO-DAT_TO' OR SCREEN-NAME = 'ZSDTPLANVRSIO-DAT_FRM'.
              SCREEN-INPUT = 0.
              MODIFY SCREEN.
            ENDIF.
            " also make 2 buttons disabled
            IF SCREEN-NAME = 'AO_UP' OR SCREEN-NAME = 'AO_VE'.
              SCREEN-ACTIVE = 0.
              MODIFY SCREEN.
            ENDIF.
          WHEN 'VW'.      " screen processing while we view the plan
            " during upload we will make dates as output fields only
            IF SCREEN-NAME = 'ZSDTPLANVRSIO-DAT_TO' OR SCREEN-NAME = 'ZSDTPLANVRSIO-DAT_FRM'.
              SCREEN-INPUT = 0.
              MODIFY SCREEN.
            ENDIF.
            " also make 2 buttons disabled
            IF SCREEN-NAME = 'RLGRAP-FILENAME' OR SCREEN-NAME = 'FNAME'.
              SCREEN-ACTIVE = 0.
              MODIFY SCREEN.
            ENDIF.
            " and hide the file input field
            IF SCREEN-NAME = 'AO_DO' OR SCREEN-NAME = 'AO_UP'.
              SCREEN-ACTIVE = 0.
              MODIFY SCREEN.
            ENDIF.
        ENDCASE.
      ENDLOOP.

  • [SOLVED] Black Screen/Freeze with new installation

    I have fresh installed Arch Linux base on Sony Vaio VGN-BX546BW Laptop with ATI Radeon X700 GPU. After I log in with root in tty and while doing some activity, around couple of minute or so the screen goes black and the laptop become unresponsive. At this point I can't do anything (ctrl +alt+del does not even work). I have to power it off then on to get it working again. The issue occurs every time I log in the system. There is nothing installed on the system other the the base. The issue does not happen when booting from Live USB. I was thinking this happens because of kernel panic caused by gpu settings (my best guess) however, I cannot find any errors in /var/log nor dmesg showing anything suspicious. Can someone assist me solving the issue, or at least direct me on how to troubleshoot it.  Thanks!
    Last edited by fantafe (2015-04-06 20:12:39)

    jasonwryan wrote:https://wiki.archlinux.org/index.php/Po … th_systemd
    Thanks jasonwryan After reading the wiki I learned the systemd-logind process was putting my laptop to suspend state and I was not able to recover that state. The solution was to configure the below options in /etc/systemd/logind.conf
    HandlePowerKey=ignore
    HandleSuspendKey=ignore
    HandleHibernateKey=ignore
    HandleLidSwitch=ignore
    henk wrote:
    From the Suspend and Hibernate page this might work:
    VAIO Users
    Add acpi_sleep=nonvs kernel flag to your loader
    I also included what henk suggested in the kernel flags, because I also read in other part of the wiki that Sony Vaio laptops might have problems to recover from suspend state, so the solution is to pass the above kernel flag in the loader

  • [SOLVED] Black Screen in new Installation (Intel GMA 3650)

    Hi everybody,
    I installed Arch on my new DN2800MT system using the Archboot installer (2012.04-2) for UEFI boot support. GRUB2 is running fine after all. The only problem is, that the screen turns black/completely off during the boot process. The installation seems to work in principle: if I wait a while, log in and type "shutdown -h now" or "reboot" the system shuts down or reboots. Just the output seems to be broken.
    A video can be found on YouTube. A screenshot immediately before it turns black:
    The last lines are
    :: Waiting for UDev uevents to be processed
    [ 6.444167] gma500 0000:00:02.0: GPU: power management timed out.
    Interestingly the boot of the Archboot DVD also starts with the screen turning black. Some time later the the boot process seems to fix the issue at hand: the screen comes back alive. I also posted a video of that process on YouTube. The messages on the screen when it turns back on:
    This behavior of Archboot indicates that this problem can be solved somehow. I would appreciate every hint on what's wrong a lot. For modification of the installed system I can boot Archboot, mount the installation and chroot into it.
    Thanks a lot guys!
    Alphasix
    Last edited by alphasix (2012-06-25 21:43:00)

    alphasix wrote:
    Yeah you're right: it's totally hopeless. I now basically have two options: using an old AIF to install an older version of arch with a local repo, kernel <= 2.6.37 and Xorg <= 1.9 to get the old Intel poulsbo driver running or using Windows 7. I think the latter is the better choice.
    There is only one very faint hope for a crazy solution: in the dependencies of the old pulsbo driver itself the kernel version isn't mentioned. What do you think of the idea of using the new gma500_gfx module with fbdev for xorg and the old binary driver just for VAAPI? VAAPI is in principle independent of xorg. So in theory this works, right?
    [EDIT] This crazy idea has one flaw: the old drivers are i686-only (because of the binary blobs). At that time all systems with poulsbo graphics controller were 32-bit so that is reasonable. I impudently asked Intel support for the two binary blobs compiled for 64-bit. I mean: they sell a fully integrated system incompatible with their own binary driver for linux. Let's wait for the answer. If they turn me down, it means bye-bye to Linux .
    I just received (today) a CedarTrail Netbook (Atom N2800) and discovered with horror that the graphic chipset is not supported. Please let me know if Intel will give you an answer since I was thinking of directly contact them too.
    Btw, how did you contact them, can you give me a mail/website/other?
    Thanks

  • Computer doesn't get past login screen with new HDD

    I recently purchased a new Seagate (750GB Momentus) hard drive for my 2010 Macbook Pro. The first one didn't work well so I sent it in for a replacement, but now the replacement one is having the same issue. When I boot the computer, it doesn't get past the boot screen half the time. When it does, however, I can't get past the login screen; when I click login it flashes white and then goes back to the login screen. Disk utility claims to repair the drive each time that it is run, but always comes up with the same errors after booting. I am totally out of ideas.
    Thanks in advance!

    Drive Preparation
    1.  Boot from your Recovery HD. When the menu appears select Disk Utility and click on the Continue button.
    2. After DU loads select your hard drive (this is the entry with the mfgr.'s ID and size) from the left side list. Note the SMART status of the drive in DU's status area.  If it does not say "Verified" then the drive is failing or has failed and will need replacing.  SMART info will not be reported  on external drives. Otherwise, click on the Partition tab in the DU main window.
    3. Under the Volume Scheme heading set the number of partitions from the drop down menu to one. Set the format type to Mac OS Extended (Journaled.) Click on the Options button, set the partition scheme to GUID (for Intel Macs) or APM (for PPC Macs) then click on the OK button. Click on the Partition button and wait until the process has completed.
    4. Select the volume you just created (this is the sub-entry under the drive entry) from the left side list. Click on the Erase tab in the DU main window.
    5. Set the format type to Mac OS Extended (Journaled.) Click on the Security button, check the button for Zero Data and click on OK to return to the Erase window.
    6. Click on the Erase button. The format process can take up to several hours depending upon the drive size.
    To boot to the Recovery HD restart the computer. After the chime press and hold down the COMMAND and "R" keys until you see the spinning gear.

  • Black screen with new xtreme x-fi h

    please help just bought the new creative sound card i was using a old sound blaster card before. but my pc wont start black screen the two blue lights come on but thats it but as soon as i put me old card in it works
    i have an xp 64 3800 with an cx80458ma motherboard i bought it about a year ago.
    do you think i need to update and flash the bios. i just dont no to much about these things so please help otherwise i will be selling it on ebay
    thank you all you are the best

    need your help to find out if it is nackerd or not if so i can send it back cheers.

  • Multiple issues with new installation

    I have several issues with my fresh installation of arch (just got myself a free old-as laptop , thus trying out arch for the first time as I usually run gentoo), and I'm not sure where these should go. I figure that I may as well lump them all at once while I'm at it.
    The laptop model is a Toshiba Dynabook TX/430DX Japanese laptop similar to a Tecra A2 afaik.
    1. If I use stock ARCH kernel, when I load up x11 it seems to be using some wrong drivers or something. Tried with and without xorg.conf. The screen is all fuzzy etc. However, I compiled my own kernel (the Zen sources), took out a whole bunch of drivers I knew I wouldn't be using (etc. SATA/IDE/extra whatnot so that it would merely take 3 hours to compile the kernel), x11 works fine. HOWEVER with the zen sources, when I close x11 I can't exit to console. I get some sort of weird artefact from what happened to be on the screen, or it just goes black. It does actually seem to be in console as I can turn off the laptop with ctrl.alt.del and the capslock etc seems to work fine. I'm thinking of recompiling the zen sources with the stock arch kernel config when I have the time just to see what happens, but I'm not too sure it'd help.
    The VGA device is an: Intel Corporation 82852/855GM Intergrated Graphics Device (rev 02), using the intelfb module.
    2. In most consoles I've used, if you type in part of a command then press ctrl.up/down, it autocompletes with previous commands you've run matching what you've already entered. However, in my install it brings me to the very first command in my bash history. How do I make it autocomplete previous commands?
    3. When I use wvdial (I have a mobile modem), I get odd characters as shown in the screenshot posted.
    I don't think it's a unicode issue, as ncmpcpp displays properly. This displays itself both in the console and in x11 (screenshot).
    4. If I'm using the stock kernel and I stop wvdial, I get a whole bunch of kernel error trace messages. After this, anything that goes to dmesg will be displayed to whatever terminal I'm on (but not actually echoed, it gets overwritten if I change screen etc). Wvdial is also prone to crashing, sometimes taking out the whole laptop. However, while using the zen kernel I do not suffer this issue at all.
    Any help in helping me find the source of these issues would be greatly appreciated. They're not showstopping issues, but extremely irritating nonetheless.
    Thanks in advance.
    EDIT: I created a zen kernel based on the arch stock kernel. Unsurprisingly, I still suffer from the x11 video issue. However, I don't have issues with number 4.
    Last edited by ugugii (2009-06-14 00:57:37)

    People are probably going to want to know the make/model of the lappy before they can
    help.
    Deej

  • Refreshing Sales Order Screens with new BP data

    My customer service department is entering sales orders and have to create new "ship to" addresses on a regular basis.  They open a new sales order, enter the BP Code for the bill to customer and then use teh golden arrow to enter BP Master data and enter a new ship to address.  After they save and close the new information, it is not available for them on the old sales order screen until they close and start a new sales order.
    Is there a way to refresh a screen that you are currently in in order to import the new information that has been entered into the BP Master Data?

    I appreciate the information, but the sarcasm is not necessary.
    It is not hard to add the data beforehand but these orders are for a sales agency we contract with.  One bill to customer and unlimited ship to addresses.  Some are repeat shipments, some are not.  So when the order is taken, they open the bill to customer account and if the ship to address is not there, they must then add it and cancel out the order and start over.  For one transaction it is not a significant amount of time but over the course of 1000 a day, it becomes significant.
    I was looking for a way to facilitate the process.

Maybe you are looking for

  • How to open raw files from canon 6d

    When I use my canon 40d, raw files open. But with canon 6d, i have to convert them.  Is this the process?

  • Production dump STORAGE_PARAMETERS_WRONG_SET

    Hi All, We are getting below dump suddenly from last 2 days in our PRD system for one of critical FI report.No changes made to system and workload is also fine. what could be the reason ? Runtime Errors         STORAGE_PARAMETERS_WRONG_SET Date and T

  • Why was the Weather Channel App changed?

    The new weather Channel App for the touchscreen really sucks now. I used to have it as the "Screensaver" because it showed everything all in one place. Now its completly useless. You have to make different selections to see useful info instead of hav

  • Can't use Adobe X, won't open, can't uninstall, please help!

    I need to open some time sensitive PDFs, and I can't open Adobe REader X, I can't open the PDF, and I can't uninstall it either. Can someone please help? Also, I pay $49 a month for the cloud.... can't I get some LIVE help somewhere on here? Thanks i

  • RSS feed with thumbnails

    I'm creating a website where I have a classifieds section with featured ads which I can generate an RSS feed with images for. I am looking for a way to set up an rss reader on my dreamweaver homepage which would scroll through the featured ads, which