How to update KDE (with dependencies)?

I wanted to update KDE from 4.3.2 to 4.3.3
So I picked one package (kdebase-workspace) and updated. Unfortunately none of the other packages was updated automatically, which broke the system.
So do I have to install every single KDE package manually?
Moreover it seems kmail doesn't start since glibc has to be updated
What is the best way to update all of the installed KDE such that it works?

Gerenuk wrote:I am a bit sceptical about -Syu.
Funny, being sceptical about the only recommended way to update your system .

Similar Messages

  • How to update iphone3 with ios 4.3

    how can i update my iphone3 with ios 4.3

    See the chart below to determine whether you can upgrade your device and what you can upgrade to. If you do not have a Software Update option present on your iDevice, then you are trying to upgrade to iOS 5 or higher. You will have to connect your device to your computer and open iTunes in order to upgrade.
    IPhone, iPod Touch, and iPad iOS Compatibility Chart
         Device                                       iOS Verson
    iPhone 1                                      iOS 3.1.3
    iPhone 3G                                   iOS 4.2.1
    iPhone 3GS                                 iOS 6.1.x
    iPhone 4                                      iOS 6.1.x
    iPhone 4S                                    iOS 6.1.x
    iPhone 5                                      iOS 6.1.x
    iPod Touch 1                               iOS 3.1.3
    iPod Touch 2                               iOS 4.2.1
    iPod Touch 3                               iOS 5.1.1
    iPod Touch 4                               iOS 6.1.x
    iPod Touch 5                               iOS 6.1.x
    iPad 1                                          iOS 5.1.1
    iPad 2                                          iOS 6.1.x
    iPad 3                                          iOS 6.1.x
    iPad 4                                          iOS 6.1.x
    iPad Mini                                     iOS 6.1.x
    =====================================
    Select the method most appropriate for your situation.
    Upgrading iOS
       1. How to update your iPhone, iPad, or iPod Touch
       2. iPhone Support
       3. iPod Touch Support
       4. iPad Support
         a. Updating Your iOS to Version 6.0.x from iOS 5
              Tap Settings > General > Software Update
         If an update is available there will be an active Update button. If you are current,
         then you will see a gray screen with a message saying your are up to date.
         b. If you are still using iOS 4 — Updating your device to iOS 5 or later.
         c. Resolving update problems
            1. iOS - Unable to update or restore
            2. iOS- Resolving update and restore alert messages

  • How to update software with E71 directly?

    I checked the instructions on the net but I dont understand them (see below).
    Can some one help with this?
    I have a Apple OSX so PC Suite is out.
    Bluetooth connection between E71 & Apple laptop gets quite often into an endless disconnecting loop and I have to reboot both E71 and Apple laptop. Does newest E71 update help with that? 
     How do I use my device to update?Tip: It is always recommended to backup your data before updating your software. However, updating using your device does not necessitate a full backup.Step 1 Step 2 Step 3 Key *#0000# into your phone's home screen or go to Device manager(consult your user guide if necessary) Select Options > Check for updates. Follow the on-screen prompts until your update is complete!The above instructions may not apply to all devices. For detailed instructions on updating your particular device, please select your model on the Device software update page. 

    FOTA is not available on the E71 so it cannot be updated directly.
    On paper the E71 is compatible with FOTA but no FOTA updates have ever been released for an FP1 based device.
    The only options are to do the update on a friends windows based PC or get it updated at a nokia care point. Nokia has never offered mac support for updates so it is not possible to update using the mac OS.
    Care points/service centres and repair info:
    UK • Europe • Asia-Pacific • USA •
    Canada • Middle East and Africa
    Elsewhere: Click here, select your country, go to the support section, then select repair. 
    Message Edited by psychomania on 20-Aug-2009 10:19 PM

  • HT5706 how to update AppleTV with cable

    Got the tips to uppdate my new appleTV with cable connected to my mac. <how can i do that? I have connected it with an usb-microusb cable, but nothing happends...

    Follow the instructions here for the appropriate model:
    Apple TV (2nd and 3rd generation): Restoring your Apple TV
    Just for the record, Apple TV was meant to be updated directly.
    I have always updated mine this way and have never had an issue.
    If there is an issue with the update, then follow the steps to restore

  • How to update database with a select box

    I'm hoping someone can/will help me with a new feature I'm
    trying to add to my web site. I'll summarize what I'm working with
    and then proceed to what I'd like to do. This is the web site I'm
    working on: www.truckerstoystore.net
    I have a database for the Truck of the Week set up with the
    information that is output on each page in the left column and
    on the Truck of the week page itself. I add new Truck of the
    Week (TOW) entries via a form I've put together. Right now, in
    order to change the current TOW, I have to manually go into my
    template and change the ID (which is automatically assigned when
    the record is created, and thus makes it unique) in my SQL which
    currently reads
    SELECT *
    FROM truckofweek
    WHERE ID="4"
    to the ID of the current TOW.
    What I want to be able to do is create a new form that will
    allow me to select the TOW entry that I want to be displayed from a
    select box (drop down box). I have a good idea of how to populate
    my select box, but don't know how to get it to work. My first idea
    was to update the table in the database (Access) manually with a
    new column called currentTOW, with values set to a Yes/No type,
    with default values set to "No". Then I would use my form to set
    the value for one of them to "Yes" so I could set my SQL to 'WHERE
    currentTOW ="yes" ' I would also make a <cfif> statement that
    checks for entries marked "Yes" and changes them to "No" when the
    form loads to avoid setting 2 entries to "Yes" and my page thus
    attempting to load 2 TOW entries.
    My problem is, I don't know how to do any of this. I hope
    I've described this situation well enough. I know there has to be
    at least one guru on here that can help me. Any assistance would be
    greatly appreciated.

    Hey,
    Thanks for replying. That sounds like a good idea, but I
    don't know how to do it.
    I started working on a new idea, where I have a second table
    in the same datasource set up called currentTOW, with one field
    called currentTOW and only one record. The idea is to send the
    string of the "owner" field from the select box, which is populated
    from the table called truckofweek to this one cell in the
    currentTOW table.
    This way, in my page which will display the data, I have 2
    querys. The first pulls the data in the single cell from currentTOW
    and outputs its string into the second query. I've attached the
    code below. I get an error when I try to display the page, see the
    error here:
    www.truckerstoystore.net/currentTOW2.cfm.
    However, the SQL looks like I want it to look, as "WHERE Owner =
    Craig Carp" is essentially the same record that it displays now in
    the live page "/currentTOW.cfm" only the SQL currently reads "WHERE
    ID = 4" (4 and Craig Carp are part of the same record).
    Here is the link to my form:
    Form

  • Question:   How to update app with a new version with new SQLite tables?

    We're updating an application in the App Store, and haven't yet found good information on how to deal with updates to the SQLite Schema and data that should be transferred between apps.
    Anyone successfully done this?
    Q1: Does the old DB files stay on the iPhone after update? Does the installer do a "diff" between them? In our case, we just extended tables, rather than changing them, in hope that we can successfully move the data for users gracefully.
    Q2: If the installer does in fact wipe all the data and files on the app before install, is there a way to access the data before it updates, so the app can gracefully update the data?

    to Templeton Peck:
    Good Sir,
    I would thoroughly appreciate you responding in a helpful manner rather than punishing my question with no regard to my question. Your harsh, quick, and false judgement was certainly not appreciated here. In regards to the macbook release: I was simply wondering IF there were releases of information that I had not heard of. I wasn't asking you to spill rumors of never released info.
    Maybe you should read this material a little more carefully without hastily looking forward to ripping apart a wondering mac user.
    But in regards to the SQL, I enjoy the following:
    UPDATE table
    SELECT........

  • Help me on how to update values with some condition ?

    hi..
    I have data as below:-
    select qualifier from nv2_audit_log where qualifier like '%NXPRI%NXUPM%';
    /acec/nv2am/data/input/NXPRI/NXUPM.P691011_691110
    /acec/nv2am/data/input/NXPRI/NXUPM.P691011_691110
    /acec/nv2am/data/input/NXPRI/NXUPM.P691011_691110
    /acec/nv2am/data/input/NXPRI/NXUPM.P691011_691110
    /acec/nv2am/data/input/NXPRI/NXUPM.P691011_691110
    /acec/nv2am/data/input/NXPRI/NXUPM.P691811_691910
    /acec/nv2am/data/input/NXPRI/NXUPM.P691811_691910
    /acec/nv2am/data/input/NXPRI/NXUPM.P691811_691910
    /acec/nv2am/data/input/NXPRI/NXUPM.P691811_691910
    The question is how could i update all the qualifier from
    /acec/nv2am/data/input/NXPRI/NXUPM.P691811_691910 to /acec/nv2am/data/input/NXUPM/NXUPM.P691811_691910 where qualifier like '%NXPRI%NXUPM%' ?.. Could somebody help me ?
    Actually i want to change the NXPRI to be NXUPM only for all record with qualifier like '%NXPRI%NXUPM%'
    The output must be like this:-
    /acec/nv2am/data/input/NXUPM/NXUPM.P691011_691110
    /acec/nv2am/data/input/NXUPM/NXUPM.P691011_691110
    /acec/nv2am/data/input/NXUPM/NXUPM.P691011_691110
    /acec/nv2am/data/input/NXUPM/NXUPM.P691011_691110
    /acec/nv2am/data/input/NXUPM/NXUPM.P691011_691110
    /acec/nv2am/data/input/NXUPM/NXUPM.P691811_691910
    /acec/nv2am/data/input/NXUPM/NXUPM.P691811_691910
    /acec/nv2am/data/input/NXUPM/NXUPM.P691811_691910
    /acec/nv2am/data/input/NXUPM/NXUPM.P691811_691910
    Thank you,
    baharin

    Hi,
    Use this update statement.
    Update
    nv2_audit_log
    Set
    qualifier = replace(qualifier,'NXPRI','NXUPM')
    Where
    qualifier like '%NXPRI%NXUPM%';
    Hope this helps!
    Regards,
    Rajesh.

  • How to update device with new Apple ID

    I have an iphone 4s and I can't get the appleID changed on the device itself as the address is grayed out.  Any ideas on how to change the applieID on the device once the the appleID has been changed on the website?  It also appears that I cannot log-in with my old ID but yet I can't get it off my phone.  Therefore I cannot download anything on the iphone itself.  Thanks!

    As stated the only way to update apps associated with an old ID is to enter the password for the old ID. To change this delete the apps associated with the old ID. Backup data first as deleting the apps may result in the loss of its data. Also note that you will have to purchase again any apps that have a fee.

  • How to update views with new changes

    Hi Experts
      I had 3 views created on a Query,Which(views) are being used in Dashboard reports.
      Now as per my requirment i need to update my Query with few new chars and some user enty variables.
      How can i update my views....with new changes
    Thanks

    Hi developerbw,
    Here are steps you can do to make the change
    1. open your old view
    2. make the change
    3. save the view uing the same description and technical name, (Make sure you you say yes when it ask whether to overwrite the exisitng view)
    no need to create new views
    feng

  • How to update apps with iOS4?

    How do I update apps in iTunes 9.2 with an iOS4 iPhone?

    1) Click on Apps in the iTunes sidebar.
    2) Click the "Check for Updates" link at the bottom of the window.
    3) Download any updates as appropriate.
    4) Sync your iPhone.
    Regards.

  • How to update firmware with a boot camp'd macbook?

    this is pretty frustrating..... there seems to be no way to update the firmware on a macbook that has had xp/vista installed. the disk is no longer a GUID type, it's an MBR disk now, and the EFI partition is gone. i could recreate the EFI partition but that wouldn't help at all with the GUID problem.
    i installed mac os x onto a clean external usb drive, which is now a GUID disk with the right file system and so on... it doesn't have an EFI partition, which i would have thought the mac os x installer would have made. the firmware updater has the big ! on the disk and says it doesn't meet the requirements.
    any ideas here? will the firmware update simply not run from an external drive? if so, how on earth is someone supposed to ever update their firmware if they use boot camp?

    When you create GPT using Disk Utility on your USB/FW it will have EFI and GUID, but you won't see them until back in Windows.
    And yes, you should be able to run firmware updates off USB drive with OS X. Should. But that doesn't always mean will/can or that it was even tested in that configuration
    Boot Camp is for GPT with an MBR table to trick or allow Windows to install. If you formatted a drive internal as MBR you didn't use BC or at least not need to.

  • How to update image with data from database?

    hi,
    is it possible to update an image object which serves as template with some data from a database table like user name etc. by converting it to image bytes and how? The final image would show user name as part of the image

    anybody?

  • How to update bios with no floppy

    Hey everyone, i just first wanted to thank everyone for helping people like me out , My questions is the title.. how to flash bios without a floppy drive and not using Live Update ( which i heard causes more trouble then help ).  I have Bios 1.5 and would like to move up to bios 1.6 for better overclocking, i am stuck right now @ 240 x 9 = 2160Mhz.  if i move it past 240 even to 241 it wont post at all, but my system is not even being pushed, i lower the mem divdeder to 100 and cpu multi to 7x and nothing.  I heard bios 1.5 is bad with overclocking and 1.6 would help me. Thank you.
    Mike

    Quote from: servo101 on 25-September-05, 23:44:46
    i use winflash all the time. and as jaybee said, its pretty safe as long as you turn off everything (except your PC of course )
    and if somehow, the BIOS is corrupt, you can just DL a new one, reflash it and still be okay without ever having to reboot.
    I beg to differ. When I had flashed my K8N Neo (7030) board to the now recalled 1.8 bios (in DOS), I tried to flash it to 1.9 beta using Winflash, following the instructions here on the forum to the very last point, and for me Winflash did not work. Not only did it fail to flash, it also failed to flash using several different bioses. So even though I was able to reflash without rebooting, it did not help me since no bios file worked.
    My bios was corrupt and I had to order a replacement chip.
    There is always the possible hardware fault (bad flash chip), but since it flashed successfully in DOS only a few days before, I see no reason to suspect the hardware.
    My recommendation is therefore: *always* *always* *ALWAYS* use DOS when flashing.

  • How to update FixedAsset with  BAPI_FIXEDASSET_CHANGE

    Hi
    I'm using  BAPI_FIXEDASSET_CHANGE to update Cost Center, return message show it's update but when I check AS03, no update make it.
    Data exported through BAPI
    Company Code ZZ01
    Asset   5102591
    TIMEDEPENDENTDATA-BUS_AREA      = US02
    TIMEDEPENDENTDATA-COSTCENTER  = ZZLIAZVP02
    TIMEDEPENDENTDATAX-BUS_AREA       =     X
    TIMEDEPENDENTDATAX-COSTCENTER   =     X
    how can I do for updating?.
    Thanks in advance.

    Thanks J@y for answering
    did u call the bapi_transaction_commit ? I'm executing just in SE37
    check if you have any error messages in the bapi_return table.
    Return Table
    TYPE                S
    ID                     BAPI1022
    NUMBER          008
    MESSAGE        Fixed Asset 000005102591 have been modified
    LOG_NO
    LOG_MSG_NO  000000
    MESSAGE_V1   000005102591
    MESSAGE_V2   0000
    MESSAGE_V3   AF
    MESSAGE_V4   AF
    PARAMETER
    ROW                 0
    FIELD

  • How to update Cube witha deletion of a record in ECC

    Hi
      I am extracting Data from ECC using a ZZ Datasource based on a View
    Data Flow in BW
    ECC(ZZ EXTractor)-->DSO1(Full)->DSO2(Delta)----.Cube(Delta)
    Scenario:
    Lets say today i loaded Records A,B,C,D to Cube
    In ECC C & D Records are deleted
    How can i replicate those deletions in CUBE
    Thanks

    if you do a complete full load from r/3 to your dso1 (assuming it's not W-O), then with the activation of the dso request, the generated delta will contain the deletion of the two records (ie all KF put to 0). your next delta will be correct. if you actually want to delete the line from cube, i think you have no other option then to do full delete of the cube data and only do full loads from T/3 to cube
    M.

Maybe you are looking for