[Solved]How to list groups available

I added my own user to my Arch setup. How would I get a list of available groups so I could add my user to them?
Last edited by jordanwb (2008-09-08 02:01:18)

Misfit138 wrote:
kensai wrote:edit "/etc/group", add your username in front of the group you want to be in.
hehe
The 'Slackware Way'...
Old habits, hard to break. Let me install Slackware on Virtualbox, I miss it.
Last edited by kensai (2008-09-08 02:17:40)

Similar Messages

  • How to list all available tables for user "karl"

    How can I list all available tables (=table names) for user "karl"?
    Nice to have would be if (after each table name in another column of each row) the number of data rows in this table can be listed similar to:
    TABLE NUM ROWS
    TESTA 12
    TESTB 3455
    ANOTHERTAB 234
    How can I do this?

    from Laurent Schneider
    http://laurentschneider.com/wordpress/2007/04/how-do-i-store-the-counts-of-all-tables.html
    SQL> select
      2    table_name,
      3    to_number(
      4      extractvalue(
      5        xmltype(
      6 dbms_xmlgen.getxml('select count(*) c from '||table_name))
      7        ,'/ROWSET/ROW/C')) count
      8  from user_tables;
    TABLE_NAME                      COUNT
    DEPT                                4
    EMP                                14
    BONUS                               0
    SALGRADE                            5

  • How to list devices available ?

    Hello all,
    I am new on the NI forum and I recently followed Labview training (Basic 1 & 2).
    I would like to know how to get the list of available devices and the type of them.
    Ideally I would like to have an array of that form :
    Device Name          Device Type
    Dev1                       NI PCI 4472
    Dev2                       NI PCI 6731
    Is there a way to do that with Labview ?
    Thank you for your help.
    Regards,
    Olivier Schevin

    I use the node:
    Device Names Property
    Short Name: DevNames
    Property of DAQmx System
    Indicates an array that contains the names of all devices installed in the system.
    This returns all device names without making an assumption about naming conventions such as Dev1 to Dev6. daqMx allows for naming the device with meaningful names through MAX.  I would encourage using daqMx, I found it a large learning curve over traditional DAQ but was well worth the time.  I would also assume with DaqMx there will be a phase out of coding using traditional drivers over the next several years (I could be wrong about this) .
    Paul
    Paul Falkenstein
    Coleman Technologies Inc.
    CLA, CPI, AIA-Vision
    Labview 4.0- 2013, RT, Vision, FPGA

  • [Solved] How to list installed AUR packages ?

    Hi,
    I use "packer" to install AUR packages.
    How can I get a list of installed AUR packages ?
    Thanks for your help
    - PierreR
    Last edited by PierreR (2011-12-06 11:37:40)

    You should focus your Google searches to the forum
    site:bbs.archlinux.org how to list installed AUR packages
    https://www.google.com/search?q=site%3A … 78&bih=977 (I used your title for the search)
    You can set the settings to pick only the hits from e..g the last year.

  • How to list the available algorithms ?

    Hi,
    I would like to get all the available algorithms so that the user can choose the one he wants.
    Is it possible to write a generic function that can encryt/decrypt a file with an algorithm as parameter
    Because I've got the following problem : I use this code to list the available algorithms :
    public static String[] getCryptoImpls(String serviceType) {       
            Set result = new HashSet();                
            Provider[] providers = Security.getProviders();
            for (int i=0; i<providers.length; i++) {           
                Set keys = providers[ i].keySet();
                for (Iterator it=keys.iterator(); it.hasNext(); ) {
                    String key = (String)it.next();
                    key = key.split(" ")[0];   
                    if (key.startsWith(serviceType+".")) {
                        result.add(key.substring(serviceType.length()+1));
                    } else if (key.startsWith("Alg.Alias."+serviceType+".")) {                   
                        result.add(key.substring(serviceType.length()+11));
            return (String[])result.toArray(new String[result.size()]);
        }    I call it as : getCryptoImpls("Cipher");
    But some elements of the list are not available !
    Other problem :
    I encrypt/decrypt files using a password, and when I use different algorithms when encrypting and
    decrypting, it works ! Strange ...
    I create a key like this :
    SecretKey key = SecretKeyFactory.getInstance(algo).generateSecret(keySpec);here is the whole code for you to understand better :
        /*  CLASSE                  : CryptoUtils                                 */
        /*  PACKAGE                 : crypto.utils                                */   
        /*  AUTEUR                  : Guillaume YVON                              */
        /*  CREATION                : 15-07-2005                                  */
        /*  DERNIERE MODIFICATION   : 17-07-2005                                  */
        /*  DESCRIPTION             : gestion du cryptage / d�cryptage            */
    package crypto.utils;
    import crypto.component.*;
    import java.io.*;
    import java.util.*;
    import java.security.*;
    import javax.crypto.*;
    import javax.crypto.spec.*;
    import java.security.spec.*;
    public class CryptoUtils {   
        public static final int ENCRYPT_MODE = 1;
        public static final int DECRYPT_MODE = 2;
        /* ----- D�claration de variables ----- */
        private static Cipher ecipher;
        private static Cipher dcipher;      
        /* Cr�ation d'un vecteur d'initialisation de 8 octets */
        private static byte[] salt = {
            (byte)0xA9, (byte)0x9B, (byte)0xC8, (byte)0x32,
            (byte)0x56, (byte)0x35, (byte)0xE3, (byte)0x03
        /* Compteur pour l'it�ration */
        private static int iterationCount = 19;
        /* Buffer utilis� pour transporter les octets entre les flux */
        private static byte[] buf = new byte[1024];
        /*            PROCEDURE D'INITIALISATION DES CLES DE CRYPTAGE             */
        /* PARAMETRES D'ENTREE                                                    */
        /*      - password => mot de passe pour le cryptage : String              */
        /* PARAMETRES DE SORTIE                                                   */
        /*      - aucun                                                           */
        private static void init(String password,String algo) {
            try {
                /* G�n�ration de la cl� de cryptage � partir du mot de passe */
                KeySpec keySpec = new PBEKeySpec(password.toCharArray(), salt, iterationCount);            
                SecretKey key = SecretKeyFactory.getInstance(algo).generateSecret(keySpec);
                ecipher = Cipher.getInstance(key.getAlgorithm());
                dcipher = Cipher.getInstance(key.getAlgorithm());
                /* Pr�paration des param�tres pour les ciphers */
                AlgorithmParameterSpec paramSpec = new PBEParameterSpec(salt, iterationCount);
                /* Cr�ation des ciphers */
                ecipher.init(Cipher.ENCRYPT_MODE, key, paramSpec);
                dcipher.init(Cipher.DECRYPT_MODE, key, paramSpec);
            } catch (Exception e){ System.err.println(e); }
        /*                   PROCEDURE DE CRYPTAGE / DECRYPTAGE                   */
        /* PARAMETRES D'ENTREE                                                    */
        /*      - mode        => mode de cryptage/decryptage : int                */
        /*      - in          => flux d'entr�e (lecture) : InputStream            */
        /*      - out         => flux de sortie (�criture) : OutputStream         */
        /*      - srcSize     => taille du fichier source : long                  */
        /*      - progressBar => barre de progression                             */
        /* PARAMETRES DE SORTIE                                                   */
        /*      - aucun                                                           */
        private static void crypt(int mode, InputStream in, OutputStream out, long srcSize,
    JProgressBarWindow progressBar){
            try {           
                if(mode == ENCRYPT_MODE){
                    /* Les octets �crits dans out seront crypt�s */
                    out = new CipherOutputStream(out, ecipher);
                }else if(mode == DECRYPT_MODE){
                    /* Les octets lus dans in seront d�crypt�s */           
                    in = new CipherInputStream(in, dcipher);
                /* Lit dans le texte clair les octets et �crit dans out pour le cryptage */
                int sum = 0;
                int numRead = 0;           
                while ((numRead = in.read(buf)) >= 0) {               
                    out.write(buf, 0, numRead);
                    sum += numRead;
                    Float percent = sum / (new Float(srcSize)) * 100;
                    if(progressBar!=null) progressBar.setValue(percent.intValue());               
                out.close();
            } catch (java.io.IOException e) { System.out.println(e); }
        /*             PROCEDURE DE LANCEMENT DU CRYPTAGE/DECRYPTAGE              */
        /* PARAMETRES D'ENTREE                                                    */
        /*      - mode        => mode de cryptage/decryptage : int                */
        /*      - algo        => algorythme � utiliser : String                   */
        /*      - srcFile     => flux d'entr�e (lecture) : String                 */
        /*      - tgtFile     => flux de sortie (�criture) : String               */
        /*      - password    => taille du fichier source : String                */
        /*      - progressBar => barre de progression : JProgressBarWindow        */
        /*      - text        => texte � afficher : String                        */
        /* PARAMETRES DE SORTIE                                                   */
        /*      - aucun                                                           */
        public static void launch(int mode,String algo,String srcFile,String tgtFile,String password,
                                    JProgressBarWindow progressBar,String text){
            try {           
                init(password,algo);                                  
                if(progressBar!=null && text!=null) progressBar.setLabelText(text);
                crypt(mode,new FileInputStream(srcFile),new
    FileOutputStream(tgtFile),FileUtils.getFileSize(srcFile), progressBar);                           
            } catch (Exception e) {}
        /*      FONCTION QUI RENVOIE LES IMPLEMENTATIONS DISPONIBLES POUR         */
        /*                          UN TYPE DE SERVICE                            */
        /* PARAMETRES D'ENTREE                                                    */
        /*      - serviceType => nom du service                                   */   
        /* PARAMETRES DE SORTIE                                                   */
        /*      - liste des impl�mentations : String[]                            */
        public static String[] getCryptoImpls(String serviceType) {       
            Set result = new HashSet();                
            Provider[] providers = Security.getProviders();
            for (int i=0; i<providers.length; i++) {           
                Set keys = providers[ i].keySet();
                for (Iterator it=keys.iterator(); it.hasNext(); ) {
                    String key = (String)it.next();
                    key = key.split(" ")[0];   
                    if (key.startsWith(serviceType+".")) {
                        result.add(key.substring(serviceType.length()+1));
                    } else if (key.startsWith("Alg.Alias."+serviceType+".")) {                   
                        result.add(key.substring(serviceType.length()+11));
            return (String[])result.toArray(new String[result.size()]);
        /*     FONCTION QUI RENVOIE LA LISTE DES TYPES DE SERVICE DISPONIBLES     */   
        /* PARAMETRES D'ENTREE                                                    */
        /*      - aucun                                                           */   
        /* PARAMETRES DE SORTIE                                                   */
        /*      - liste des services : String[]                                   */
        public static String[] getServiceTypes() {
            Set result = new HashSet();           
            Provider[] providers = Security.getProviders();
            for (int i=0; i<providers.length; i++) {           
                Set keys = providers[ i].keySet();
                for (Iterator it=keys.iterator(); it.hasNext(); ) {
                    String key = (String)it.next();
                    key = key.split(" ")[0];   
                    if (key.startsWith("Alg.Alias.")) {                   
                        key = key.substring(10);
                    int ix = key.indexOf('.');
                    result.add(key.substring(0, ix));
            return (String[])result.toArray(new String[result.size()]);
    }Any tip is welcome !
    (sorry for the french comments...)

    From 11.1 onwards, the below two views are available to identify the jar files loaded into the Database.
    JAVAJAR$
    JAVAJAROBJECTS$
    By querying the JAVAJAR$ view you can know information about the JAR files loaded into the Database and using JAVAJAROBJECTS$ view you can find all the java objects associated with the given JAR file.
    These views are populated everytime you use LOADJAVA with "-jarsasdbobjects" option to load your custom java classes.
    But unfortunately this feature is available only from 11.1 onwards and there is no clear workaround for above in 10.2 or earlier.

  • [Solved] How to list recently used windows?

    I like the Unity feature where a key binding either opens or focuses an application window. With KDE I can define a keyboard shortcut which, for example, performs
    wmctrl -xa emacs.Emacs || emacs
    However, I'd like it to focus on the last focused window, not the first opened window. Is there a command to list all windows in the order they were recently used? (Clearly the Task Switcher gets this information from somewhere.)
    Last edited by raul_l (2014-12-16 16:58:24)

    The command I was looking for is
    xprop -root | grep "^_NET_CLIENT_LIST_STACKING"
    If anyone is interested, this script
    #!/bin/bash
    app=$1
    workspace=$(wmctrl -d | grep '\*' | cut -d ' ' -f1)
    win_list=$(wmctrl -lx | grep $app | grep " $workspace " | awk '{print $1}')
    IDs=$(xprop -root|grep "^_NET_CLIENT_LIST_STACKING" | tr "," " ")
    IDs=(${IDs##*#})
    for (( idx=${#IDs[@]}-1 ; idx>=0 ; idx-- )) ; do
    for i in $win_list; do
    if [ $((i)) = $((IDs[idx])) ]; then
    wmctrl -ia $i
    exit 0
    fi
    done
    done
    exit 1
    in conjunction with the key binding
    the_above_script.sh emacs.Emacs || emacs
    produces the correct Unity behavior. (How to mark this thread solved?)
    EDIT: I modified the script a little bit. It turns out wmctrl and xprop use slightly different formats for displaying hexadecimal numbers.
    Last edited by raul_l (2014-12-17 12:08:07)

  • [Solved] How to list which DNS I am using?

    Edit, solution to find which DNS you are using.  Install:
    sudo pacman -S dnsutils
    To get the "dig" command.  Then use it:
    dig http://www.google.ca
    And at the bottom of the output you will see
    SERVER:
    Which is immediately followed by the DNS you are using.
    Thank you x33a.
    Original post:
    I'm trying to use Google DNS which are 8.8.8.8, and 8.8.4.4.  I have a pure systemd installation and have the dhcpcd service unit active:
    [email protected] loaded active running dhcpcd on eth0
    In my /etc/dhcpcd.conf file I have the following:
    # A sample configuration for dhcpcd.
    # See dhcpcd.conf(5) for details.
    # Inform the DHCP server of our hostname for DDNS.
    hostname
    # To share the DHCP lease across OSX and Windows a ClientID is needed.
    # Enabling this may get a different lease than the kernel DHCP client.
    # Some upstream DHCP servers may also require a ClientID, such as FRITZ!Box.
    #clientid
    # A list of options to request from the DHCP server.
    #option domain_name_servers, domain_name, domain_search, host_name
    option domain_name, domain_search, host_name
    option classless_static_routes
    nooption domain_name_servers
    # Most distributions have NTP support.
    option ntp_servers
    # Respect the network MTU.
    option interface_mtu
    # A ServerID is required by RFC2131.
    require dhcp_server_identifier
    # A hook script is provided to lookup the hostname if not set by the DHCP
    # server, but it should not be run by default.
    nohook resolv.conf
    nohook lookup-hostname
    noipv4ll
    With the only changes being "nooption domain_name_servers" and "nohook resolv.conf".
    Then in my /etc/resolv.conf I have the nameservers:
    # Generated by dhcpcd from eth0
    # /etc/resolv.conf.head can replace this line
    nameserver 8.8.8.8
    nameserver 8.8.4.4
    #nameserver 192.168.0.1
    # /etc/resolv.conf.tail can replace this line
    /etc/resolv.conf has had "chattr +i" done to it to make it immutable from changes.
    I think I have it all set-up correctly, as in it all works, but I do not know of an explicit command to tell me exactly which DNS I am using.
    Last edited by headkase (2012-10-13 14:53:54)

    I switched my nameservers over to OpenDNS: http://www.opendns.com/
    Because they have a test page: http://www.opendns.com/welcome/
    And I got a successful result.  So, to change that all I modified were the nameserver numbers in "/etc/resolv.conf".  So, I assume that I configured "/etc/dhcpcd.conf" correctly.  With the OpenDNS nameservers those now come up as prepopulated in namebench too.  Thanks again, solved.

  • How to list groups and members of the groups

    Is there a way to list out groups by the group name and list out the members in those groups? I have been tasked with providing the group names and the members in the group on an Exchange 2010 server.

    Here is my text capture exactly from my powershell after I copy and paste. You can see it starts to output the results in the console but also sends to the txt file. My guess is when you're copying and pasting there is a break somewhere.
    [PS] C:\temp>write-output "" > C:\outputDGmembers.txt
    [PS] C:\temp>get-distributiongroup | Sort -Property DisplayName | foreach {
    >> $name = $_.displayname
    >> $output = `Group Name: ` + $Name
    >> write-output $output >> C:\outputDGmembers.txt
    >> Get-DistributionGroupMember $name | Sort -Property DisplayName | Select Displ
    ayName, Alias, Department >> C:\outputDGmembers.txt
    >> write-output "" "" >> C:\outputDGmembers.txt
    >> }
    >>
    WARNING: Object ipcfcdom.inphonic.com/Distribution Groups/ATTClientServices has
     been corrupted and it is in an inconsistent state. The following validation
    errors have occurred:
    WARNING: There is no primary SMTP address.
    WARNING: Object ipcfcdom.inphonic.com/Distribution
    Groups/[email protected]
    has been corrupted and it is in an inconsistent state. The following validation
     errors have occurred:
    WARNING: "[email protected]" is not valid for Alias. Valid values are:
    Strings formed with characters from a to z (uppercase or lowercase), digits
    from 0 to 9, !, #, $, %, &, ', *, +, -, /, =, ?, ^, _, `, {, |, } or ~. One or
    more periods may be embedded in an alias, but each one of them should be
    James Chong MCITP | EA | EMA; MCSE | M+, S+ Security+, Project+, ITIL msexchangetips.blogspot.com

  • How to list all available backup sets

    Hi,
    we are using Oracle 11gR2. there is an requirement to list all avilable backup sets through shell scripts, we have retention period of 15days.
    below query gives me list of backup files but it was difficult to know which files was require for "catalog backuppiece"
    DBMS_RCVMAN.SETDATABASE(null,null,null,1536975101,null);
    SELECT PKEY,FNAME ,BS_COMPLETION_TIME
    FROM RMAN.RC_BACKUP_FILES
    where
    file_type='PIECE'
    AND
    STATUS = 'AVAILABLE';Backup sets looks below on Disk. all files starting with *"db11g_c-"* are required for catalog backuppiece.
    we like to know is there another better way to get this information. we want to list only those files required for cataloging.
    -rw-r-----   1 oracle   asmadmin     38M Sep 30 02:30 backup_ADB_DB_30092010_25lp5hle_1_1_69
    -rw-r-----   1 oracle   asmadmin    285M Sep 30 02:32 backup_ADB_DB_30092010_26lp5hm7_1_1_70
    -rw-r-----   1 oracle   asmadmin    145K Sep 30 02:32 backup_ADB_DB_30092010_27lp5hpr_1_1_71
    -rw-r-----   1 oracle   asmadmin    9.4M Sep 30 02:32 db11g_c-1536975101-20100930-00
    -rw-r-----   1 oracle   asmadmin     38M Oct  1 02:30 backup_ADB_DB_01102010_29lpaqdi_1_1_73
    -rw-r-----   1 oracle   asmadmin    286M Oct  1 02:32 backup_ADB_DB_01102010_2alpaqeb_1_1_74
    -rw-r-----   1 oracle   asmadmin    125K Oct  1 02:32 backup_ADB_DB_01102010_2blpaqi9_1_1_75
    -rw-r-----   1 oracle   asmadmin    9.4M Oct  1 02:32 db11g_c-1536975101-20101001-00
    -rw-r-----   1 oracle   asmadmin     38M Oct  2 02:30 backup_ADB_DB_02102010_2dlpdepj_1_1_77
    -rw-r-----   1 oracle   asmadmin    287M Oct  2 02:32 backup_ADB_DB_02102010_2elpdeqd_1_1_78
    -rw-r-----   1 oracle   asmadmin    169K Oct  2 02:32 backup_ADB_DB_02102010_2flpdeub_1_1_79
    -rw-r-----   1 oracle   asmadmin    9.4M Oct  2 02:32 db11g_c-1536975101-20101002-00
    -rw-r-----   1 oracle   asmadmin     48M Oct  3 02:30 backup_ADB_DB_03102010_2hlpg35h_1_1_81
    -rw-r-----   1 oracle   asmadmin    288M Oct  3 02:32 backup_ADB_DB_03102010_2ilpg36l_1_1_82
    -rw-r-----   1 oracle   asmadmin    123K Oct  3 02:32 backup_ADB_DB_03102010_2jlpg3aj_1_1_83
    -rw-r-----   1 oracle   asmadmin    9.4M Oct  3 02:32 db11g_c-1536975101-20101003-00
    -rw-r-----   1 oracle   asmadmin     48M Oct  4 02:30 backup_ADB_DB_04102010_2llpinhk_1_1_85
    -rw-r-----   1 oracle   asmadmin    290M Oct  4 02:32 backup_ADB_DB_04102010_2mlpinio_1_1_86
    -rw-r-----   1 oracle   asmadmin    177K Oct  4 02:32 backup_ADB_DB_04102010_2nlpinmc_1_1_87
    -rw-r-----   1 oracle   asmadmin    9.4M Oct  4 02:32 db11g_c-1536975101-20101004-00
    -rw-r-----   1 oracle   asmadmin    2.9M Oct  4 05:26 backup_ADB_DB_04102010_2plpj1s3_1_1_89
    -rw-r-----   1 oracle   asmadmin    289M Oct  4 05:28 backup_ADB_DB_04102010_2qlpj1s4_1_1_90
    -rw-r-----   1 oracle   asmadmin     13K Oct  4 05:28 backup_ADB_DB_04102010_2rlpj1vp_1_1_91
    -rw-r-----   1 oracle   asmadmin    9.4M Oct  4 05:28 db11g_c-1536975101-20101004-01
    -rw-r-----   1 oracle   asmadmin    7.0K Oct  4 05:29 backup_ADB_DB_04102010_2tlpj21q_1_1_93
    -rw-r-----   1 oracle   asmadmin    3.0K Oct  4 05:29 backup_ADB_DB_04102010_2vlpj223_1_1_95
    -rw-r-----   1 oracle   asmadmin    289M Oct  4 05:36 backup_ADB_DB_04102010_2ulpj21r_1_1_94
    -rw-r-----   1 oracle   asmadmin    150K Oct  4 05:37 backup_ADB_DB_04102010_31lpj2gv_1_1_97
    -rw-r-----   1 oracle   asmadmin    289M Oct  4 05:37 backup_ADB_DB_04102010_30lpj22h_1_1_96
    -rw-r-----   1 oracle   asmadmin    9.4M Oct  4 05:37 db11g_c-1536975101-20101004-02
    -rw-r-----   1 oracle   asmadmin    8.0K Oct  4 05:37 backup_ADB_DB_04102010_33lpj2h7_1_1_99
    -rw-r-----   1 oracle   asmadmin    9.4M Oct  4 05:38 db11g_c-1536975101-20101004-03
    -rw-r-----   1 oracle   asmadmin    2.8M Oct  4 08:00 backup_ADB_DB_04102010_36lpjase_1_1_102
    -rw-r-----   1 oracle   asmadmin    290M Oct  4 08:02 backup_ADB_DB_04102010_37lpjasi_1_1_103
    -rw-r-----   1 oracle   asmadmin    270K Oct  4 08:02 backup_ADB_DB_04102010_38lpjb0g_1_1_104
    -rw-r-----   1 oracle   asmadmin    9.4M Oct  4 08:02 db11g_c-1536975101-20101004-04
    -rw-r-----   1 oracle   asmadmin    215K Oct  4 08:14 backup_ADB_DB_04102010_3alpjbnl_1_1_106
    -rw-r-----   1 oracle   asmadmin    291M Oct  4 08:16 backup_ADB_DB_04102010_3blpjbnm_1_1_107
    -rw-r-----   1 oracle   asmadmin    110K Oct  4 08:16 backup_ADB_DB_04102010_3clpjbrl_1_1_108
    -rw-r-----   1 oracle   asmadmin    9.4M Oct  4 08:16 db11g_c-1536975101-20101004-05
    -rw-r-----   1 oracle   asmadmin     34M Oct  5 02:30 backup_ADB_DB_05102010_3elplbtg_1_1_110
    -rw-r-----   1 oracle   asmadmin    291M Oct  5 02:32 backup_ADB_DB_05102010_3flplbu0_1_1_111
    -rw-r-----   1 oracle   asmadmin     27K Oct  5 02:32 backup_ADB_DB_05102010_3glplc1a_1_1_112
    -rw-r-----   1 oracle   asmadmin    9.4M Oct  5 02:32 db11g_c-1536975101-20101005-00
    -rw-r-----   1 oracle   asmadmin     33M Oct  6 02:30 backup_ADB_DB_06102010_3ilpo09f_1_1_114
    -rw-r-----   1 oracle   asmadmin    291M Oct  6 02:32 backup_ADB_DB_06102010_3jlpo09u_1_1_115
    -rw-r-----   1 oracle   asmadmin     22K Oct  6 02:32 backup_ADB_DB_06102010_3klpo0dt_1_1_116
    -rw-r-----   1 oracle   asmadmin    9.4M Oct  6 02:32 db11g_c-1536975101-20101006-00Edited by: Sachin B on Oct 6, 2010 2:50 AM

    i got the solution :)
    EXEC DBMS_RCVMAN.SETDATABASE(null,null,null,1536975101,null);
    SELECT PKEY,FNAME ,BS_COMPLETION_TIME
    FROM RMAN.RC_BACKUP_FILES
    where
    file_type='PIECE'
    AND
    STATUS = 'AVAILABLE'
    AND
    BS_KEY IN
    (SELECT BS_KEY FROM RC_BACKUP_SET where db_id='1536975101' AND CONTROLFILE_INCLUDED='BACKUP');

  • How to list all available classes?

    Hi *,
    Is there a possibility to list all the classes available to the JVM? I would like to have a list like this:
    java.lang.String
    java.util.Vector
    and so on.
    koem

    Good joke, but that is not what I meant :)
    I would like to get all the class-names at runtime. Because this list depends on the classpath it can be different with every invocation of the my program.

  • [SOLVED] how to list installed leaf packages?

    What's the best way to get a list of installed packages that are not a dependency of another installed package? (leaf packages)
    Last edited by TheCox (2010-05-05 19:40:31)

    nevermind. I thought I had checked the pacman man, but I guess not.

  • How do I create a list of available times?

    I frequently receive emails asking me when I'm free for a meeting.  I'd like to reply with a list of available times between specified dates.  How do I do this with existing Mac software or commercial products?  I've seen such listings from Outlook.
    Desired output:
    This Thursday I'm free:
    8:00 am - 9:00 am
    2:00 pm - 3:30 pm

    Alex573 wrote:
    ... I need to create a list ... , where I can add each item to the list individually, automatically, and without there being transitions for the entire list each time I add something to the list.
    that needs in a simple 12€ consumer-app some craftsmanship ...
    (and no, no automatics)
    • create your list in Keynote (or any other text or paint app ... or ppt ....)
    • save it as a jpeg
    • erase one 'line'
    • save it again
    • repeat steps until one line left
    => you get a couple of stills
    iM would allow to add those to your project; add a simple transition => lines 'appear'
    if you need the text overlaid to a video, use the the well-known 'transparent png' trick (then, the new line has to appear with a hard cut.
    to inspire you, read my (old) advice - it's shown with iMHD6, but the 'mechanics' is same.
    https://sites.google.com/site/karstenschluter/accents
    my website explains the png-trick too (does work in vers11) ...
    https://sites.google.com/site/karstenschluter/imovie09tricks
    maybe, you get inspired by the subpage about 'using Keynote for a vid-cast production'
    https://sites.google.com/site/karstenschluter/how-to-make-a-vidcast/keynote

  • XP Pro Windowsw/Fonts has a font.  It is listed as available in MS Word.  It is not listed as available in Adobe Illustrator CS6.  How do I fix this?  Thanks.

    XP Pro Windowsw/Fonts has a font.  It is listed as available in MS Word.  It is not listed as available in Adobe Illustrator CS6.  How do I fix this?  Thanks.

    BobbyH5280.  Very helpful answer!  I am XP for the next week on CS6.  I did find 3 items that helped.  The fonts are in AI, but are listed on the bottom of the list.  Also in Edit/Preferences/Type, checking "Show Font Names in English" makes the font list easier to read (doesn't appear to change the sort order though), and (with your suggestion) checking "Sow Asian Options" might do something positive.  Thanks to all of you who sent in tips.

  • Failed to get groups list: No Groups Available in any repository

    When I try to access to Add/Remove Software, a window appears that says
    The list of groups was not valid
    Update the cache can help, but usually this is a bug in the software repository
    More details:
    Failed to get groups list: No Groups Available in any repository
    I can not install software from Add/Remove software
    Edited by: user13814055 on 20-ene-2012 10:23

    user13814055 wrote:
    When I try to access to Add/Remove Software, a window appears that saysIs your server directly registered with ULN or are you using public-yum.oracle.com? If you've done neither of these things, it's not surprising it can't find any software to install.

  • How to remove list of available actions in cs5

    I installed actions in 2 places and now i have duplicates in the available action list (click the arrow to the right of the action tab to see the menu for add, remove, options etc and a list of all available actions and sets).
    I removed the actions from
    C:\Users\Hal\AppData\Roaming\Adobe\Adobe Photoshop CS5\Presets\Actions
    and from
    C:\Program Files\Adobe\Adobe Photoshop CS5 (64 Bit)\Presets\Actions
    and yet i still have the huge list of available actions in duplicate.
    How do I eliminate these?
    Thanks
    Hal

    Ah, my mistake.  I didn't understand you fully.
    I believe the actions that show up in that menu are in one of these folders:
    Photoshop 64 bit:
    C:\Program Files\Adobe\Adobe Photoshop CS5 (64 Bit)\Presets\Actions
    Photoshop 32 bit on a 64 bit system:
    C:\Program Files (x86)\Adobe\Adobe Photoshop CS5\Presets\Actions
    Photoshop on a 32 bit system:
    C:\Program Files\Adobe\Adobe Photoshop CS5\Presets\Actions
    You would need to move/remove the .atn files from the above folder(s) to get them to stop appearing in that list.
    -Noel

Maybe you are looking for