Clean tree update

I was wondering if there was a way in pacman to reinstall every package I have on the system automatically? As in take the list of packages that I have installed, then assume that they are not actually installed, and install them from scratch.
The reason I want this is that I've run into the following problem. After a crash, I had a corrupted filesystem. During repair a few inodes had to be thrown out, and they must have had something important, because when I try to log into a KDE session, the splash screen freezes at "Initilalizing system services". Logging into XFCE, for example, works fine. I tried to reinstall kde packages, but that didn't fix it (I'm guessing it's something like sound that's screwed up, but I don't know for sure).
Any ideas are appreciated.
Thanks.

Hope this helps:
http://bbs.archlinux.org/viewtopic.php? … l+packages

Similar Messages

  • Is my Mac pro being cleaned and updated when the little wheel turns?

    Is the little wheel a good thing when it's moving? It seems to be cleaning or updating.Or is someone trying to hack me? Whoever wants to answer I'll appreciate it:)

    If you have a 5770 gpu there is no DVD to boot from (one reason to have Lion).
    If you clone your system, you have a safety net, and CCC can do a file integrity checksum on copies.
    If you reinstall, don't install on the same drive, keep it for backup.
    Later you may need or want to do a 3-way write (writing zeroes is not guarantee it will map out bad sectors which can be one reason it never seemed to repair itself) and reinstalling on same drive may only hide and be a temporary fix.
    To so backup clone so you can have another drive to boot from and run system maintenance (and you could do a clean install too, only needs 20GB to setup an emergency system). Or you have 10.7.5 or later and then you have Recovery Mode.
    TimeMachine 101
    https://support.apple.com/kb/HT1427
    http://www.apple.com/support/timemachine
    Recovery Mode
    http://support.apple.com/kb/HT4718
    How to clone your system:http://macperformanceguide.com/Mac-HowToClone-backup.html
    http://macperformanceguide.com/Mac-HowToClone.html
    http://www.macupdate.com/app/mac/7032/carbon-copy-cloner
    http://www.macperformanceguide.com/blog/2012/20120711_2-MacPro-internal-clone-ba ckup.html
    Using Cloning as a Backup Strategy

  • My friend have new Macbook Air with OSX Mavericks and I have Macbook Pro with OSX Mountain Lion, Can I create a bootable maverick in pendrive from macbook air and perform a clean installation/update on my macbook pro with osx mountain lion?

    I have late 2012 edition Macbook Pro, I have a internet connection with does not run smoothly It gets disconnected and reconnects Thus I failed everytime when I update my OSX Mountain Lion to Mavericks in App Store. My friend just bought 2013 end Macbook Air whicch have OSX Mavericks pre installed.
    I was hoping if I can create a OS X version in pendrive from his laptop and use that to install and thuss also update OS on my Mountain Lion.
    Kindly explain me in detail how to perform this.
    I have already taken back up of all files and I am ready to total clean my laptop.
    And I want to update to Maverick so I can thus further update to upcoming OS X Yosemite.

    The Mavericks on the Air is probably machine specific since it came pre-installed, so it wouldn't work on your computer. See if your friend will let you access the App Store, where you can sign in using your Apple ID and download the installer. You can use this free program to copy the installer and update your computer.
    Bootable USB Flash Drive – Diskmaker X

  • ADF Faces - af:tree - updating nodeStamp components

    My tree's nodeStamp is an af:selectBooleanCheckbox which maps to a hierarchy of items of indeterminate depth. There are usually at least 3 levels however. If I toggle a parent checkbox then all the child checkboxes must also toggle to match. That is the whole point of the parents in this tree is to be able to turn on or off sets of children, grand-children etc. This should be a pretty standard thing to do with trees. However, I have a bit of a dilemma and I'm hoping that someone out there can help me.
    When I toggle a parent checkbox the ThemeTree.valueChangeListener does a getModel().getRowData() to return the current row. I can then traverse the model tree from that instance to toggle all the children to match the state of the parent. From the model perspective everything works fine.
    However, if the tree is expanded when the parent state is changed, the visual state of the children do not change! The parent Checkbox is unchecked but the child Checkboxes remain checked :(or visa versa):
    Now to make things even more weird. If I close the parent tree and reopen it the children remain out of sync with the parent; even though the backing code model data is properly set.
    Even weirder. If the parent Checkbox is not expanded and I change the state and then I open the parent all the child Checkboxes are CORRRECTLY set.
    My jsp code looks as follows.
    <af:panelGroup partialTriggers="theme_display">
    <af:tree id="theme_tree" var="theme"
           binding="#{ThemeTree.tree}"
           value="#{ThemeTree.model}"
           partialTriggers="theme_display">
    <f:facet name="nodeStamp">
      <af:panelGroup layout="horizontal">
        <af:objectImage source="#{theme.graphic}"
                        rendered="#{theme.graphic != null}"
                        align="right"/>
        <af:objectSpacer width="3"
                         rendered="#{theme.graphic != null}"/>
        <af:selectBooleanCheckbox id="theme_tree_row"
                                  value="#{theme.display}"
                                  text="#{theme.displayName}"
                                  shortDesc="#{theme.shortDesc}"
                                  autoSubmit="true" immediate="true"
                                  valueChangeListener="#{ThemeTree.valueChangeListener}"/>
      </af:panelGroup>
    </f:facet>
    </af:tree>
    ....My ValueChangeListener looks like this.
        public void valueChangeListener(ValueChangeEvent vce) {
            if (tree != null) {
                setTreeChangeHappening(true);
                ThemeTreeBean currentTheme = (ThemeTreeBean)treeModel.getRowData();
                if (currentTheme.getChild() != null) {
                    boolean display = ((Boolean)vce.getNewValue()).booleanValue();
                    currentTheme.setDisplayAll(display);
                //TODO: is this doing what I think it is doing?  I'm starting to think not.
                AdfFacesContext afc = AdfFacesContext.getCurrentInstance();
                UIComponent checkBox = vce.getComponent();
                String id = checkBox.getId();
                int i = treeModel.getRowIndex();
                while (treeModel.isRowAvailable()) {
                    ThemeTreeBean themeBean = (ThemeTreeBean)treeModel.getRowData();
                    String x = themeBean.getName(); // used for debugging
                    String y = themeBean.getDisplayName(); // used for debuggin
                    afc.addPartialTarget(checkBox); // this might do something if we could get the instance of the UIComponent from the treeModel
                    afc.partialUpdateNotify(checkBox);
                    treeModel.setRowIndex(++i);
        }List of things that I've tried
    (a) I know how to AdfFacesContext.getCurrentInstance().addPartialTarget(vce.getComponent()) and ...partialUpdateNotify(same) but I haven't figured out how to get a handle on the UIComponent instances of the child Checkboxes. The components inside a nodeStamp facet seem to live an arms-length existance. I tried binding the selectBooleanCheckbox to a CoreSelectBooleanCheckbox property in my var class (theme) but this just doesn't work: ADF does not appear to allow it.
    (b) I tried various combinations using partialTriggers (no luck there).
    (c) The id cannot be a JSF expression (even though the JDeveloper tip claims it can; the ADF documentation says no) so I cannot get the id to find the UIComponent of the children. (Are there UIComponents of the children?)
    (d) I tried traversing the treeModel using the setRowIndex(int) method but this only stepped me through the parent level, it did no return the children. Even if it did I'm not sure how I would force the visual update of the child.
    The long and short of it is that the behaviour of components inside the nodeStamp is different and it makes for a real problem. I'm about to abandon the af:tree and see if there is anything in myfaces that might help. But before I give up altogether, I thought that I'd ask one more time to see if anyone out there could give me a hint for anything else to try.
    Thanks in advance, Mark

    More information: You cannot use the var attribute to bind the SelectBooleanCheckbox because it is not a managed bean and you can only bind to managed beans. So I created a CoreSelectBooleanCheckbox property in the ThemeTreeTree class (which is a managed bean) with the intent of matching references to the checkBox property as it rippled through the list.
    BUT...it doesn't ripple through the list. There is only one instance of the CoreSelectBooleanCheckbox which appears to be shared by all the visible components.
    So ... I'm still stumped.

  • Cleaning and Updating Music Library's

    I created a large music library from many CD’s and organized them into several sub-folders by artist name within a master “My Music Folder”. I then imported the “My Music Folder” into iTunes. The process worked great but when I reviewed the details in iTunes and on my iPod, I found duplicates, some misspellings, and duplicate artist names (i.e. “Beatles” and “The Beatles; “Clash” and “The Clash” I would like to clean up the library and organize the music to reduce the duplicates, simplify the artist list by a common name, and correct wrong information and in some cases add info to the artists.
    My question is where is the best place to make these changes so that I can have one integrated and master music library incorporating the changes? Should the edits be done in the original folders or should the edits be done in iTunes and then saved as a new exported library? Or is there a better or recommended way?
    Thank you,

    Use the (free) software Mp3tag. It can do 'Actions' to update, e.g. all "The Beatles" by "Beatles" etc. I just cleaned my ~4,000 songs library using that. iTunes is doable, but nowhere near as flexible. You may want to clean everything first and then reimport everything into iTunes for cleanest results.

  • Cisco Clean Access Update Website and Firewall Port Required

    Hi,
    I was wondering if anyone may know the website the clean access manager would be using to upate as well as the firewall port required. This is due to a firewall in place. Based on some reading, not sure if it uses other website besides the following http://www.perfigo.com/clean_machine_1/version-se.txt on port 80.
    Thanks.

    Hi,
    For CAM checks and rules update, that's the only site required.
    HTH,
    Faisal
    If you find this post helpful, please rate so others can find the answer easily

  • Swing tree updates

    Hi,
    I wrote a swing tree applet that gets notified by a server when to add new nodes to the tree and who the new node's parent is. I can find the parent node and insert the new node into the tree fine. The problem is when my program first starts I receive all the new nodes sequentially about two seconds apart. The tree looks all wacky as the nodes are being added. I'm not sure of the proper method of updating the tree so the new node just appears in the proper location and the tree expands properly. I've tried many different techniques but none produce the desired results. Can someone advise on the correct technique to use to update the tree UI when a new node is inserted in the tree? Also, do you know a web site that contains a swing tree that I can view using my browser. I am having a problem viewing my tree on Solaris using Netscape 6.0 and I'd like to confirm if it is Netscape 6 or not since the tree works as usual using Netscape 4.7.
    Many thanks.

    This example should solve your problem:
         DefaultMutableTreeNode dmtn = _getActionsNode(); // returns a DefaultMutableTreeNode
         DefaultTreeModel dtm = new DefaultTreeModel(dmtn);
         getActionsTree().setModel(dtm); // this is the JTree
    Hope this helps.

  • Metadata field -Tree update don't work from Config mgr and database

    Hi All,
    I am using UCM 11g. I have a Information field of type 'Memo' which is based on a Option list which uses tree. Updating it is giving me the following problems:
    1. When i update a value in the tree using UCM CS configuration manager, sometimes the change doesn't get reflected on the update info form of a document (immediately and even after several hours)
    2. When i update directly through database end, sometimes the change is not reflected in the config mgr - information field. And sometimes it reflects there immediately but not in update form.
    Once Publishing schema and clearing browser's cookie/temp files worked, but not every time.
    Currently, i have added some data from db end, and the data is not showing up on config mgr, and even in the views there. I have tried clearing browser's cache, publish schema, publish schema base, publish schema config and data, but nothing worked.
    I don't want to go for bouncing the server option every time for such changes. Sometimes, everything does work fine instantly.
    Is there some cache etc maintained by UCM and how to clear it so that it picks up the changes in the underlying table data immediately? Please help asap as i have been stuck in this for a long time.
    P.S. I am doing it from db end in the correct manner, and doing so because i have hundreds of values to be added/updated in the metadata taxonomy tree so don't want to do it manually from ucm config mgr ui.

    '*Is there any UCM notification mechanism which we can use so as to tell it that there is some change in the underlying database or in configuration manager metadata tree; or some in built cache that we can clear so that it picks up the change*'.Nothing I would be aware of. Since you can just login directly to the database (e.g. via sqlplus) and insert/update/delete rows directly such a mechanism would have to be in the database (a trigger), but that would be an overkill.
    Updates in the database - when run from the Config Mgr, for instance - work differently - first a change is done, than a service to update the schema is called (a change, actually, means both changing the scheme and its metadata). I don't know how exactly changes in taxonomy are implemented, but I'd expect something similar - note that a lot of information is cached due to performance reasons and changes like adding/modifying a profile, option lists, or trees might require purging this cached data. Usually, at least closing the browser/re-login helps. If there is a mechanism that can force 'push-model', I'm not aware of that.

  • Cisco NAC Clean access update

    Hi,
    I am trying to deploy nac but for updating the Clean access av/as update i am not able to get the updated signatures and update the NAM.
    is there any way i can force it manaually or wget and get the package for the same?
    Please help
    Thanks,

    Please have a look at the following link:
    http://www.cisco.com/en/US/docs/security/nac/appliance/configuration_guide/48/cam/m_admin.html#wp1078189
    On the CAM interface, you can export the current certificate and see its validity:
    Administration > Clean Access Manager >> SSL > X509 Certificate >> Select Cert and hit 'Export'
    Please rate if you find the input helpful
    Regards
    Farrukh

  • RMWB: Substance property tree update

    Hi,
    Can anyone suggest any method to update the characteristic in the property tree of a substance in RMWB transaction. I am writing an exit in which I have to calculate the value of a characteristic from calculation of values of other charcteristic. After getting the calculated I have to update the charcteristic in the property tree. Is this possible. If so suggest any method.
    Thanks
    Varghese

    Hello Varghese
    please follow recommendation of Mark.  The old FMs:
    C1F2_SUBSTANCES_CREATE
    C1F2_SUBSTANCES_DELETE
    C1F2_SUBSTANCES_READ
    C1F2_SUBSTANCES_READ_WITH_REF
    have been replaced by:
    C1F5_SPECIFICATIONS_READ
    C1F5_SPECIFICATIONS_MODIFY
    C1F5_SPECIFICATIONS_DELETE
    in higher SAP EH&S releases.
    Non of these FMs are (If I remember correct) released to by used by customer. The use of BAPI_BUS1077_CHANGE (or similar one) is better.
    In any case: take a look here:
    http://www.se80.co.uk/sapfms/c/c1f5/c1f5_specifications_modify.htm
    http://www.se80.co.uk/sapfms/c/c1f5/c1f5_specifications_read.htm
    http://www.se80.co.uk/sapfms/c/c1f5/c1f5_specifications_delete.htm
    Regarding the BAPI:
    http://www.se80.co.uk/sapfms/b/bapi/bapi_bus1077_change.htm
    http://www.se80.co.uk/sapfms/b/bapi/bapi_bus1077_create.htm
    http://www.se80.co.uk/sapfms/b/bapi/bapi_bus1077_delete.htm
    With best regards
    C.B.
    Edited by: Christoph Bergemann on Dec 24, 2010 1:13 PM

  • Parallel Reference - Enhance Tree Update Time

    Hi Experts!
    I have a big problem, and I don't know how to solve it.
    I have a huge tree, Nodes count about 40-50.
    I have an array of object, every object is a node in the tree. I would like to update the tree status with the objects, but it takes so much time.
    I had an idea, please take a look at the attached image.
    Splitting the obj. array with smaller pieces, Every for loop can run parallel (?), and in the Run Time Update vi contains the update procedure of the tree.
    Every Run Time Update VI operates on Tree Reference and subarray of parameters. Why this method run time is the same, when i dont split the whole array?
    Could you suggest me any solution to enhance the tree refresh time?
    Thans in advance!
    +++ In God we believe, in Trance we Trust +++
    [Hungary]
    Solved!
    Go to Solution.
    Attachments:
    Test.jpg ‏269 KB

    My Problem is solved!
    Defer Panel Update! I like it
    +++ In God we believe, in Trance we Trust +++
    [Hungary]

  • How to clean all updated apps which I've purchased?

    If you go to the App srore on your iPhone then Updates, then Purchased you have purchased apps to upgrade. Well, I have 200 of it. I upgrade it in 2 hours (!!!) one by one, because there is no button update alll (thank you Apple, you know better). Now they are srill there, wit a button OPEN, chow to clear this mess? Anyone?

    Why didn't you use the Update All button on the Updates screen? This will update all Apps currently on your iPhone and needing an update.
    The Apps in the Purchased screen will never go away. It is a record of all purchased Apps whether they are currently on your iPhone or not.

  • How to solve the tree update problem

    Hi all,
    I met a urgent problem, I defined two tree control over two JScrollPanes.
    two JScrollPanes are in a JSplitPane which is located in another JSplit's left. The left JSplitPane and another JTextarea both are in another JSplitPane.they are layouted as:
    JTree1 | JTextArea
    JTree2 | JTextArea
    I want to achieve this: when I clicked a node in JTree1,then JTree2 is changed in the viewport according to the content of the clicked node.
    I use the following essential code :
    public class TNTree extends JTree {
    private TemplateFrame frame1;
    public TNTree(TemplateFrame frame/*,XTree tree*/)
    this.frame1=frame;
    getSelectionModel().setSelectionMode(TreeSelectionModel.SINGLE_TREE_SELECTION);
    setShowsRootHandles(true);
    setEditable(false);
    try{
    treeModel=initTree();
    setModel(treeModel);
    jbInit();
    }catch(Exception e){}
    this.addMouseListener(new MouseAdapter(){
    public void mouseClicked(MouseEvent e) {
    TreePath tp=getPathForLocation(e.getX(), e.getY());
    pt.x=e.getX();
    pt.y=e.getY();
    try{
    if((e.getModifiers()&InputEvent.BUTTON1_MASK)==InputEvent.BUTTON1_MASK)
    setSelectionPath(tp);
    if(e.getClickCount()==1){
    if((tp!=null)&&(!isIn((DefaultMutableTreeNode)tp.getLastPathComponent())))
    {    tempStr=((DefaultMutableTreeNode)tp.getLastPathComponent()).toString();
    Connection con=getConnection();
    PreparedStatement pstmt;
    pstmt=con.prepareStatement("select content from template ,tcontent"+
    " where template.tcode=tcontent.tcode and name=?");
    pstmt.setString(1,tempStr);
    ResultSet rset=pstmt.executeQuery();
    String str="";
    if(rset.next()){
    str=rset.getString(1);
    treeStr=str;
    System.out.println(treeStr);
    // frame1.xTree =new XTree(frame1,str);
    // frame1.xTree=new XTree(frame1);
    frame1.xTree.refresh( str );
    frame1.jScroll.getViewport().add(frame1.xTree);
    // frame1.repaint();
    if(e.getClickCount()==2){
    }else
    }catch(Exception e1){e1.printStackTrace();}
    public class XTree extends JTree {
    private TemplateFrame frame;
    public XTree(TemplateFrame frame) throws ParserConfigurationException
    this.frame=frame;
    refreshTextFlag=false;
    strBuffer=new StringBuffer();
         getSelectionModel().setSelectionMode( TreeSelectionModel.SINGLE_TREE_SELECTION );
         setShowsRootHandles( true );
         setEditable( false );
         dbf = DocumentBuilderFactory.newInstance();
         dbf.setValidating( false );
         db = dbf.newDocumentBuilder();
    treeModel = buildWelcomeTree();
    setModel(treeModel );
    TreeTXT = "";
    try{
    jbInit();
    catch(Exception e){
    //e.printStackTrace();
    Error err = new Error();
    eBuffer.append(err.getValue("Err#4"));
    eBuffer.append("\r\n");
    public void refresh( String text ) //throws ParserConfigurationException
    try{
    treeModel=buildTree(text);
    setModel( treeModel );
    TreeTXT = text;
    }catch(Exception e){
    // e.printStackTrace();
    Error err = new Error();
    eBuffer.append(err.getValue("Err#1"));
    eBuffer.append("\r\n");
    public class TemplateFrame extends JFrame
    static XTree xTree=null;
    static TNTree tnTree;
    xTree=new XTree(this);
    tnTree=new TNTree(this);
    jScrollLeft.getViewport().add(tnTree);
    void fileOpen_ActionPerformed(ActionEvent e)
    String fileName = "";
    BufferedReader reader;
    String line;
    StringBuffer xmlText;
    JFileChooser chooser = new JFileChooser();
    Container parent = jMenuItem4.getParent();
    int choice = chooser.showOpenDialog(parent);
    int returnVal = chooser.showOpenDialog(this);
    if(returnVal == JFileChooser.APPROVE_OPTION) {
    textMessage.setText("You chose to open this file: " +
    chooser.getSelectedFile().getAbsolutePath() );
    // chooser.getSelectedFile().getName());
    fileName = chooser.getSelectedFile().getAbsolutePath();
    path=fileName;
    if(fileName.substring(fileName.length()-3,fileName.length()).equalsIgnoreCase("xml"))
    //Will fix future
    try{
    reader = new BufferedReader( new FileReader( fileName ) );
    xmlText = new StringBuffer();
    while ( ( line = reader.readLine() ) != null )
    xmlText.append( line+"\n" );
    reader.close();
    //refresh the xml tree
    xTree.refresh( xmlText.toString() );
    textArea.setText( xmlText.toString() ) ;
    /*Set the title*/
    //fTitle = chooser.getSelectedFile().getName();
    fTitle = chooser.getSelectedFile().getName();
    this.setTitle(fTitle/*+mTitle */ );
    //Sign the editor has a file
    dirty = true;
    }catch(Exception Mye) {
    textMessage.setText("Error occured when opening the file");
    }else{
    textMessage.setText("Error occured when the opening file is not a xml file");
    Now my problem is when in TemplateFrame cl*** I call open method including import xTree.refresh(string),I can get the right results ,the JTree2 is refreshed correctly,but when in TNTree cl*** I call the xTree.refresh(String),I met a java.lang.nullpointer exception , How can I solve this problem?
    Are there other better ways to slove this problem?

    Hm ...
    what should it be otherwise?- You said, the problem is calling frame1.xTree.refresh(str) - and the NullPointerException is thrown there - so there are only 2 possibilities - frame1 is null or xTree is null. So please add the following code before this line ...
    if (frame1==null) { System.out.println("frame1 is null"); }
    else if (frame1.xTree==null) { System.out.println("frame1.xTree is null"); }
    else System.out.println("None of them is null - I haven't read the runtime error correctly");and then you will see, where the problem is :)
    greetings Marsian

  • "Week Calendar" wiped clean after update

    Updated my phone, went to add an entry to my calendar and noticed it was completely blank.  I am hoping info can be restored and I do not have to start over.  I have no idea if I backed it up or if it was synced to somewhere else.  I do not know where to start to look. HELP!

    Hi woodahman,
    Welcome to the Apple Support Communities!
    I understand you want to try to restore your iPhone to try and recover some calendar information. Before restoring go to the iCloud website (www.icloud.com) and log in with your iCloud information. If your calendars are here then we do not want to restore.
    If your calendars are not on iCloud and you would still like to restore, the following article explains where your backups are located (both iCloud and iTunes) and how to restore from each.
    iOS: Back up and restore your iOS device with iCloud or iTunes
    http://support.apple.com/kb/ht1766
    Please let me know if I can be of more assistance.
    Have a great day,
    -Joe

  • NI PXI 8176 broadcasting Version 2 Spanning Tree Updates

    I am not the owner of this device, but I am in IT. We had an NI PXI8176 suddenly start broadcasting version 2 spanning tree protocols over the network... this is a mystery to us. Has anyone ever seen this, or have theories why it would do this?
    thanks
    Nan

    I'm not very familiar with spanning tree protocols, but I thought that they were for network bridges and switches.
    Have you had any viruses on that PXI-8176? Think of the PXI-8176 as a laptop in a different form factor when troubleshooting this kind of stuff. This sounds like an OS/virus/network issue.
    Good luck.
    Jack

Maybe you are looking for

  • ESS - Leave Administration - Work flow item

    Hi experts, My PM asked me to prepare a document on ESS i got some inputs from different threads. Now I need an input regarding workflow item In Leave Administration after approval of the leave employee can delete the information which was work flow

  • Fingerprint and pass code

    i have no function  touch screen is not registering cant power down bc i cant operate cant restore bc needs pass code how do i over ride and i guess reset if need be  (five month old I6)  Bueler?

  • [solved]Wget: ignore "disallow wget" +comply to the rest of robots.txt

    Hello! I need to wget a few (maybe 20 -.- ) html files that are linked on one html page (same domain) recursively, but the robots.txt there disallows wget. Now I could just ignore the robots.txt... but then my wget would also ignore the info on forbi

  • Help needed regarding replication in ds5.2sp4

    Hi , I am new to ldap . I am able to establish replication between master and consumer and trying to update it is getting update but i am geting the following error in error log INFORMATION - NSMMReplicationPlugin - conn=-1 op=-1 msgId=-1 - Replicati

  • PLEASE HELP....How to alter IDLE setting for IMAP email.?!

    Having spoken to my server provider that have suggested that the connection in mac mail is always open on our IMAP configuration. I was told to tick the use the IDLE command if the server supports it...this is however greyed out but ticked. The probl