Yet another Pacman front end in bash and zenity...

(Disclaimer: It was a boring day . Had nothing else to do... Stumbled upon zenity...started playing around with it ...after 4 hours a crappy frontend was ready)
Features:
1. search as you type. It is blazing fast
2. search as you type  So you can keep that mouse away
3. search as you type. Type the first letter and Enter for almost all the options. Esc goes to the previous screen
4. search as you type. Because it came as default with zenity .No coding was required
Install zenity if u want to try this out
#!/bin/sh
# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
# Copyright (C) unohu
# Everyone is permitted to copy and distribute verbatim or modified
# copies of this license document, and changing it is allowed as long
# as the name is changed.
# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
# TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
# 0. You just DO WHAT THE FUCK YOU WANT TO.
term="urxvt"
main(){
packagelist=$(pacman -Q)
R=$(zenity --width=800\
--height=600\
--list\
--text "Package Management"\
--column "Option"\
--column "Desc"\
"Query" "Installed package information"\
"Sync" "Install or update packages"\
"Local Search" "Search installed packages"\
"Global Search" "Search the sync db"\
if [ $? == 1 ]; then
exit 1;
fi
case $R in
"Query")
Query;
"Sync")
Sync;
"Local Search")
Search "local" ;
"Global Search")
Search "global" ;
esac
Search(){
R=$(zenity --width=800\
--height=600\
--entry\
--text "Search installed applications"\
if [ $? == 1 ] ; then
main;
fi
searchstring=$R
if [ $1 == "local" ]; then
packagelist=$( pacman -Qqs $searchstring );
else
packagelist=$( pacman -Sqs $searchstring );
fi
if [ $1 == "local" ]; then
ShowSearch "local" ;
else
ShowSearch "global" ;
fi
if [ $? == 1 ]; then
Search $1;
fi
ShowSearch(){
R=$(zenity --width=800\
--height=600\
--list\
--text "Select package"\
--column "Package" \
$packagelist \
if [ $? == 1 ];then
return 1;
fi
packagename=$R
if [ $1 == "local" ]; then
ShowInfo $packagename "-Qi";
else
ShowInfo $packagename "-Si";
fi
if [ $? == 1 ];then
ShowSearch $1;
fi
Query(){
R=$(zenity --width=800\
--height=600\
--list\
--text "Select Query options"\
--column "Option"\
--column "Desc"\
"Info" "View package information"\
"List" "List the contents of the queried package"\
"Dependencies" "List all packages installed as dependencie"\
"Explicit" "List all packages explicitly installed"\
"Orphans" "packages that were installed as dependencies but are no longer required by any installed package"\
"Groups" "List all package groups installed"\
"Foreign" "List all manually installed foreign packages which are not in sync database"\
if [ $? == 1 ];then
main;
fi
case $R in
"Info")
Info
"List")
List
"Dependencies")
Deps
"Orphans")
Orphans;
"Explicit")
Explicit;
"Groups")
Groups;
"Foreign")
Foreign;
esac
if [ $? == 1 ];then
Query;
fi
Orphans(){
ShowPackages "-Qdt"
if [ $? == 1 ];then
return 1;
fi
ShowInfo $packagename "-Qi"
if [ $? == 1 ];then
Orphans ;
fi
Foreign(){
ShowPackages "-Qm"
if [ $? == 1 ];then
return 1;
fi
ShowInfo $packagename "-Qi"
if [ $? == 1 ];then
Foreign ;
fi
Deps(){
ShowPackages "-Qd"
if [ $? == 1 ];then
return 1;
fi
ShowInfo $packagename "-Qi"
if [ $? == 1 ];then
Deps ;
fi
Explicit(){
ShowPackages "-Qe"
if [ $? == 1 ];then
return 1;
fi
ShowInfo $packagename "-Qi"
if [ $? == 1 ];then
Explicit ;
fi
Groups(){
grouplist=$( pacman -Qg | cut -f1 -d " " | uniq )
R=$(zenity --width=800\
--height=600\
--list\
--text "Select Group"\
--column "Group" \
$grouplist \
if [ $? == 1 ];then
return 1;
fi
groupname=$R
ShowGroupMem $groupname
if [ $? == 1 ];then
Groups ;
fi
ShowGroupMem(){
packagelist=$(pacman -Qg $1 | cut -f2 -d " " )
R=$(zenity --width=800\
--height=600\
--list\
--text "Select package"\
--column "Package" \
$packagelist \
if [ $? == 1 ];then
return 1;
fi
packagename=$R
ShowInfo $packagename "-Qi"
if [ $? == 1 ];then
ShowGroupMem $1 ;
fi
ShowInfo()
pacman $2 $1 >/tmp/result
R=$(zenity --width=800\
--height=600\
--text-info\
--filename="/tmp/result" \
if [ $? == 1 ];then
return 1;
fi
ShowPackages(){
packagelist=$(pacman $1 )
R=$(zenity --width=800\
--height=600\
--list\
--text "Select package"\
--column "Package" --column "Version"\
$packagelist \
if [ $? == 1 ];then
return 1;
fi
packagename=$R
GetPackName(){
R=$(zenity --width=800\
--height=600\
--list\
--text "Select package"\
--column "Package" --column "Version"\
$packagelist \
if [ $? == 1 ];then
return 1;
fi
packagename=$R
Info(){
param="-Qi"
GetPackName
if [ $? == 1 ];then
return 1;
fi
ShowInfo $packagename $param
if [ $? == 1 ];then
Info;
fi
List(){
param="-Ql"
GetPackName
if [ $? == 1 ];then
return 1;
fi
ShowInfo $packagename $param
if [ $? == 1 ];then
List;
fi
Sync(){
R=$(zenity --width=800\
--height=600\
--list\
--text "Select Sync options"\
--column "Option"\
--column "Desc"\
"Install" "Install or upgrade package"\
"Syu" "You know what it is"\
if [ $? == 1 ];then
main;
fi
case $R in
"Syu")
$term -e sudo pacman -Syu
"Install")
Install;
esac
if [ $? == 1 ];then
Sync;
fi
Install()
packagelist=$( pacman -Ssq )
R=$(zenity --width=800\
--height=600\
--list\
--text "Package Name"\
--column "Package"\
$packagelist\
if [ $? == 1 ] ; then
return 1;
fi
$term -e sudo pacman -S $R
main
(Disclaimer2: Bugs who come with bugfixes are allowed inside)

It's that time again
0.0.3 is out. To all of those 2 users actually using guzuta, thank you!
Guzuta 0.0.3 (04 Oct 2005)
* Display package size in KB, MB, etc.
* Go to package url by clicking in the package information.
* Dependency checking when installing from file.
* Added new option for specifying the browser to use when clicking in pkg URL.
* Speedups interfacing with pacman. Much better usability.
* Added an install from repository button and popup menu.
* Quicker search capabilities.
* Download only pkg button and popup.
* Cache listing.
* Fixed bug when pacman upgrading itself.
* When selecting packages using the 'Selected' column, do not display
information and popup.
* Use own trayicon.
* Fixed bug when adding a new repo to /etc/pacman.conf and not sync'ing. Guzuta
now does this on startup if needed.
* Fixed bug when looking for new updates and pacman reporting an error.
* Erase cache selectively by X days old or by X versions old.
* Show in a popup all the files of a package.
* It now has a .desktop.
http://developer.berlios.de/projects/guzuta/
http://aur.archlinux.org/packages.php?d … =1&ID=1800

Similar Messages

  • After having yet another problem with my MacBook Pro and having to wipe the drive, I am now unable to sync my iPhones etc without erasing all the music on them. Is there a way around this? I have no other library!

    After having yet another problem with my MacBook Pro and having to wipe the drive, I am now unable to sync my iPhones etc without erasing all the music on them. Is there a way around this? I have no other library!
    iTunes is a mess! It couldn't find it's own libraries and I was forced to create a new one. Now I don't know where my music is or if any's missing.

    columbus new boy wrote:
    How crap is that?
    It's not crap at all.
    It's not that simple. For example, I've 3500 songs on my MacBook but don't want them all on my phone, so I have to manually select each song again???
    There has to be a solution.
    Why not simply make a playlist with the songs you want on the iPhone?
    and maintain a current backup of your computer.

  • Front-end HTTP Server and Performance with .jspx pages?

    This is more of a general question that I'm looking for validation:
    If the majority of our website is implemented as .jspx pages, with very few straight HTML pages, is there benefit in deploying to an environment with a separate HTTP front-end web server and back-end Application server (java container)? For example, I'm deploying to Tomcat as both the HTTP server and Java Application server for the .jspx pages; is there a performance advantage in deploying to an Apache HTTP server with a connector to Tomcat if I'm primarily serving up .jspx pages? I'm not as familiar with Oracle AS architecture, so my question is primarily around Tomcat deployment.
    thanks

    This is more of a general question that I'm looking for validation:
    If the majority of our website is implemented as .jspx pages, with very few straight HTML pages, is there benefit in deploying to an environment with a separate HTTP front-end web server and back-end Application server (java container)? For example, I'm deploying to Tomcat as both the HTTP server and Java Application server for the .jspx pages; is there a performance advantage in deploying to an Apache HTTP server with a connector to Tomcat if I'm primarily serving up .jspx pages? I'm not as familiar with Oracle AS architecture, so my question is primarily around Tomcat deployment.
    thanks

  • Front End network time and GUI time

    Hello,
    I am having a few doubts on the performance monitoring of SAP servers.
    GUI time - is the time taken for several communication steps between the SAP R/3 server and the local SAP R/3 frontend.
    After this definition i have a few doubts.
    1) what is the difference between, GUI time and front end network time?
    2) While calculating the processing time do we substract GUI time from the actual respone time?
    Please help.
    Thanks.
    Regards,
    Siddhartha

    Hi,
    F1 help provides the exact information of the each time specified in st03n..
    Further for your information:
    Frontend time:
    The front-end network time (FE Net time, fenettime, sometimes also called guinettime) is the time span that is consumed for sending data from/to the front end.
    However, no roundtrips (RFCs) for the GUI are included. These are entered in the GUITIME.
    If RFCs are involved on the server side, this time is specified with an incorrect value.
    The FE Net time is formed by the difference that arises between the response time from the view of the frontend and from that of the application serve
    GUI time:
    The GUI time is the time used in the network and the local front end for these communications steps (not the time in the application server, however). The GUI time does not contain the front end network time.
    Regarding the Processing Time:
    Please Refer following note 8963.
    For Response time Refer note 1063061 which gives clear idea of What is response time.
    Thanks and Regards,
    Balaji.S

  • Are Registrar pool and Front end pool one and the same?

    Hi,
    What is the RegistrarPool parameter which is used in Enable-CsUser command? 
    Is it same as Front end pool because whenever I search for information on Registrar pool, I end up with the links explaining about Front end pools? 
    Are there any msdn or technet links which talk about this?
    Thanks in advance,
    Sandeep

    Hi Sandeep,
    The registrar pool is the pool where user's Lync account is homed.
    So if you have a single pool in your Lync environment, then the registrar pool will be same as front end pool. If you have multiple front end pools and you want to find out a user's registrar pool, you can
    1. either check the user account in control panel 
    2. Check the parameter RegistrarPool for a user by running "get-csuser -identity useralias" 
    Hope this helps.
    Regards,

  • Yet another case of new type[array] and parametrized type

    I suppose this is an often asked question, to which I seem not to be able to find a simple answer. I know of the "incompatibility" of arrays and generics, and yet in such a seemingly simple case I run into a mystery, or a compiler bug. Look at this warning:
    Set<Integer>  C[];
    foo/bar/some.java:1148: warning: [unchecked] unchecked conversion
    found   : java.util.HashSet[]
    required: java.util.Set<java.lang.Integer>[]
                    C=new HashSet[H-L+1];So far so good, but precisely this *"Set<type>[]"* does not exists, does it? When I try to add a parametrized type to this new statement, compiler says:
    Set<Integer>  C[];
    foo/bar/some.java:1148: generic array creation
                    C=new HashSet<Integer>[H-L+1];
                      ^
    1 errorIn a regular case we can easy deal with the "unchecked" warnings, e.g. Effective Java 2nd Ed, Item 24 discusses this, but all this seem to be ignoring this case. When generic array creation is not permitted, than why this warning stating that *"java.type<typeparam>[] required"* appear, and how to resolve this for safety and correctness? Of course, I can still ignore the warning and do a few instanceof checks and casts, like before, but I am really curious how to transfer this into the new paradigm.
    As much generics improve and help in many cases, I regret their arcane complexity. To paraphrase C.A.R. Hoare, the Java language itself becomes now the problem, not its solution.
    Thomas

    I wonder if we have someplace recent measure just an array stack against a current implementation of a set in Java? In JDK1.4 I remember array was several times faster, 350% faster if my memory serves me, and I do have the classic "inner loop" operation, very repetitive. I can live with the warning, what's the problem?
    Of course all this are considerations fully aside of the issue at hand, that the JDK1.6 compiler prints a nonsense warning message that a parametrized array is expected, what is in fact illegal in current implementation of generics. Which is in my eyes severely faulty, but that would be yet another assault on the Braha Ivory Tower, wouldn't it?
    Thomas

  • Design Question: Can I use Rest-CsPoolRegisterState command in order start Front End Service when Quorum is lost and less than 85% of FES are available?

    Hi, 
    Assuming below setup for Enterprise edition Lync 2013
    Single Pool Stretched architecture with 4 FES servers
    Site A Data Center
    Site B Data Center
    FES
    2
    2
    SQL
    1 Primary
    1 Mirror
    Fact: In a situation when we lose network connectivity to Site A DC, and due to less than 50% FES servers, Quorum will be lost and as a result Front End Service will stop after 5 minutes. 
    The question is, would I be able to do a manual intervention by using this command
    Reset-CsPoolRegistrarState –PoolFqdn <pool name fqdn> –ResetType QuorumLossRecovery , and start FES with just 2 FES servers in Site B DC and 1 SQL
    Server?
    The reason I am asking this question is because it is mentioned in one of the Lync manuals that at least 85% of the servers must be available to recover once the Quorum has lost. The same manual also mentions to use above
    mentioned command in order to recover from Quorum Loss despite the fact that the lost FES servers are still not available.
    Thanks in Advance

    Hi,
    In Lync server 2013 Stretched pools are not supported for the Front End, Edge, Mediation, and Director server roles. It need two Lync pools.
    If one pool fail to connect, An administrator can declare an emergency and fail over the pool to the backup pool.  That is done by using the:
    Invoke-CsPoolFailover –PoolFQDN <Pool fqdn> –DisasterMode –Verbose
    More details:
    http://blog.avtex.com/2012/07/26/understanding-lync-2013-server-failover/
    Note: Microsoft is providing this information as a convenience to you. The sites are not controlled by Microsoft. Microsoft cannot make any representations regarding the quality, safety, or suitability of any software or information
    found there. Please make sure that you completely understand the risk before retrieving any suggestions from the above link.
    Best Regards,
    Eason Huang
    Eason Huang
    TechNet Community Support

  • Business One and Open Source Web Front-Ends, PHP etc.

    Hi there,
    I am a complete newbie to all things SAP, so please excuse my ignorance.
    I am trying to implement a solution for SAP Business One, including a web front-end for queries and information. The  SAP backend is running on a SQL Server, Windows 2000.
    The catch is, I won't be running the web front-end off a Windows server. I need to find a solution for an Apache server, running (probably) PHP but could be JSP or any other scripting language to access SAP - but it will be running on a separate server, non-windows.
    I have been given examples of people getting access to the DI Server using PHP, but it all involves a call to a COM() function that won't run from anything except a Windows server.
    How can I acheive the same result running a PHP page from an OpenBSD or Linux / Apache server? Is the DI Server the right thing to be looking at, or am I going in completely the wrong direction?
    Any help would be appreciated.
    Thanks,
    Nick.

    post your question in SAP Business One SDK for better response.
    Regards
    Raja

  • ADF 3-tiered with Swing front-end is it possible?

    Hi,
    I'm beginning to use Oracle ADF and JDeveloper 10.1.3.
    My intention is to develop a 3-tiered application. In the persistence tier an Oracle database will be used, in the business tier I would like to use Oracle ADF, and in the front-end Swing with screens for edit and querying data. The Swing front-end will not have direct access to the database, and in the future the business tier could be used by a Web front-end with Servlets and JSPs.
    Which benefits I can get with Oracle ADF for this type of application?
    What ADF components can be used in the business tier?
    How can it deliver and receive data from the Swing front-end (EJB, Web Service, another approach)?
    Somebody knows some tutorial about ADF/Swing applications?
    Thank´s.

    I've been working on a soon-to-go-production 3-tier ADF Swing project for a while.
    I would say it is possible but not easy. A lot of effort in my project has gone into workarounds for various things that do not work as expected (and not as in 2-tier mode), refresh-issues, deployment issues and other. We have found workarounds for most of them and JDev 10.1.3 is a lot better for ADF Swing then earlier releases.
    Scalability is still an unsolved issue for us as a lot of functionality you'd expect in a rich gui is lost when using "batch mode" which probably scales better then "immediate".

  • Unable to acces Oracle Apps 11i from front end

    Hi All
    unable to access my production server from front end.after a cold backup, database and apps started normally but It is not accesible from front end.
    details
    bash-3.00$ adapcctl.sh status apps/apps
    adapcctl.sh version 115.47
    Apache Web Server Listener is stopped.
    Apache Web Server Listener :httpd ( pid 571 ) is running
    adapcctl.sh: exiting with status 0
    bash-3.00$ ps -ef | grep Apache
    applprod 614 571 0 01:22:26 ? 0:00 /applprod/prodora/iAS/Apache/
    Apache/bin/httpd -d /applprod/prodora/iAS/Apache/A
    applprod 609 571 0 01:22:26 ? 0:00 /applprod/prodora/iAS/Apache/
    Apache/bin/httpd -d /applprod/prodora/iAS/Apache/A
    applprod 591 571 0 01:22:25 ? 0:00 /applprod/prodora/iAS/Apache/
    Apache/bin/httpd -d /applprod/prodora/iAS/Apache/A
    applprod 607 606 0 01:22:26 ? 0:00 /applprod/prodora/iAS/Apache/
    Apache/bin/rotatelogs /applprod/prodora/iAS/Apache
    applprod 592 571 0 01:22:25 ? 0:00 /applprod/prodora/iAS/Apache/
    Apache/bin/httpd -d /applprod/prodora/iAS/Apache/A
    applprod 3455 2625 0 02:14:54 pts/3 0:00 grep Apache
    applprod 610 571 0 01:22:26 ? 0:00 /applprod/prodora/iAS/Apache/
    Apache/bin/httpd -d /applprod/prodora/iAS/Apache/A
    applprod 571 1 0 01:22:25 ? 0:00 /applprod/prodora/iAS/Apache/
    Apache/bin/httpd -d /applprod/prodora/iAS/Apache/A
    applprod 606 571 0 01:22:26 ? 0:00 /bin/sh -c /applprod/prodora/
    iAS/Apache/Apache/bin/rotatelogs /applprod/prodora
    applprod 615 571 0 01:22:26 ? 0:00 /applprod/prodora/iAS/Apache/
    Apache/bin/httpd -d /applprod/prodora/iAS/Apache/A
    applprod 608 571 0 01:22:26 ? 0:00 /applprod/prodora/iAS/Apache/
    Apache/bin/httpd -d /applprod/prodora/iAS/Apache/A
    Thanks
    Rahul

    log file is as follows
    bash-3.00$ tail -40 /applprod/prodora/iAS/Apache/Apache/logs/error_log
    [Wed Oct 13 18:54:18 2010] [error] [client 192.168.66.111] client denied by serv
    er configuration: /applprod/prodcomn/java/oracle/ewt
    [Wed Oct 13 18:54:18 2010] [error] [client 192.168.66.111] File does not exist:
    /applprod/prodcomn/java/oracle/ewt/alert/resource/AlertBundle_en_US.properties
    [Wed Oct 13 18:56:36 2010] [error] [client 192.168.66.243] client denied by serv
    er configuration: /applprod/prodcomn/java/java
    [Wed Oct 13 18:56:37 2010] [error] [client 192.168.66.243] client denied by serv
    er configuration: /applprod/prodcomn/java/java
    [Wed Oct 13 18:56:37 2010] [error] [client 192.168.66.243] File does not exist:
    /applprod/prodcomn/java/oracle/forms/icons/oracle_logo_light.gif
    [Wed Oct 13 18:56:37 2010] [error] [client 192.168.66.243] File does not exist:
    /applprod/prodcomn/java/oracle/forms/icons/oracle_logo_light.gif
    [Wed Oct 13 18:56:37 2010] [error] [client 192.168.66.243] File does not exist:
    /applprod/prodcomn/java/oracle/forms/icons/oracle_logo_light.gif
    [Wed Oct 13 18:56:37 2010] [error] [client 192.168.66.243] File does not exist:
    /applprod/prodcomn/java/oracle/forms/icons/oracle_logo_light.gif
    [Wed Oct 13 19:01:23 2010] [error] [client 192.168.66.243] File does not exist:
    /applprod/prodcomn/java/oracle/apps/media/oracle/apps/media/splash.gif
    [Wed Oct 13 19:01:23 2010] [error] [client 192.168.66.243] File does not exist:
    /applprod/prodcomn/java/oracle/apps/media/oracle/apps/media/splash.gif
    [Wed Oct 13 19:01:23 2010] [error] [client 192.168.66.243] File does not exist:
    /applprod/prodcomn/java/oracle/apps/media/oracle/apps/media/splash.gif
    [Wed Oct 13 19:01:23 2010] [error] [client 192.168.66.243] File does not exist:
    /applprod/prodcomn/java/oracle/apps/media/oracle/apps/media/splash.gif
    [Wed Oct 13 19:01:23 2010] [error] [client 192.168.66.243] File does not exist:
    /applprod/prodcomn/java/oracle/forms/icons/oracle_logo_light.gif
    [Wed Oct 13 19:01:23 2010] [error] [client 192.168.66.243] File does not exist:
    /applprod/prodcomn/java/oracle/forms/icons/oracle_logo_light.gif
    [Wed Oct 13 19:01:25 2010] [error] [client 192.168.66.243] client denied by serv
    er configuration: /applprod/prodcomn/java/oracle/dms
    [Wed Oct 13 19:01:25 2010] [error] [client 192.168.66.243] client denied by serv
    er configuration: /applprod/prodcomn/java/oracle/dms
    [Wed Oct 13 19:02:44 2010] [error] [client 192.168.57.8] File does not exist: /a
    pplprod/prodcomn/java/oracle/apps/media/oracle/apps/media/splash.gif
    [Wed Oct 13 19:02:44 2010] [error] [client 192.168.57.8] File does not exist: /a
    pplprod/prodcomn/java/oracle/apps/media/oracle/apps/media/splash.gif
    [Wed Oct 13 19:02:44 2010] [error] [client 192.168.57.8] File does not exist: /a
    pplprod/prodcomn/java/oracle/apps/media/oracle/apps/media/splash.gif
    [Wed Oct 13 19:02:44 2010] [error] [client 192.168.57.8] File does not exist: /a
    pplprod/prodcomn/java/oracle/apps/media/oracle/apps/media/splash.gif
    [Wed Oct 13 19:02:44 2010] [error] [client 192.168.57.8] File does not exist: /a
    pplprod/prodcomn/java/oracle/forms/icons/oracle_logo_light.gif
    [Wed Oct 13 19:02:44 2010] [error] [client 192.168.57.8] File does not exist: /a
    pplprod/prodcomn/java/oracle/forms/icons/oracle_logo_light.gif
    [Wed Oct 13 19:03:31 2010] [error] [client 192.168.57.8] client denied by server
    configuration: /applprod/prodcomn/java/oracle/dms
    [Wed Oct 13 19:03:31 2010] [error] [client 192.168.57.8] client denied by server
    configuration: /applprod/prodcomn/java/oracle/dms
    [Wed Oct 13 19:05:50 2010] [error] [client 192.168.66.188] client denied by serv
    er configuration: /applprod/prodcomn/java/oracle/ewt
    [Wed Oct 13 19:05:50 2010] [error] [client 192.168.66.188] client denied by serv
    er configuration: /applprod/prodcomn/java/oracle/ewt
    [Wed Oct 13 19:05:50 2010] [error] [client 192.168.66.188] File does not exist:
    /applprod/prodcomn/java/oracle/ewt/alert/resource/AlertBundle_en_US.properties
    [Wed Oct 13 19:20:00 2010] [error] [client 107.108.6.97] client denied by server
    configuration: /applprod/prodcomn/java/java
    [Wed Oct 13 19:20:00 2010] [error] [client 107.108.6.97] client denied by server
    configuration: /applprod/prodcomn/java/java
    [Wed Oct 13 19:20:01 2010] [error] [client 107.108.6.97] File does not exist: /a
    pplprod/prodcomn/java/oracle/forms/icons/oracle_logo_light.gif
    [Wed Oct 13 19:20:01 2010] [error] [client 107.108.6.97] File does not exist: /a
    pplprod/prodcomn/java/oracle/forms/icons/oracle_logo_light.gif
    [Wed Oct 13 19:20:01 2010] [error] [client 107.108.6.97] File does not exist: /a
    pplprod/prodcomn/java/oracle/forms/icons/oracle_logo_light.gif
    [Wed Oct 13 19:20:01 2010] [error] [client 107.108.6.97] File does not exist: /a
    pplprod/prodcomn/java/oracle/forms/icons/oracle_logo_light.gif
    [Wed Oct 13 20:22:44 2010] [error] [client 107.108.6.22] File does not exist: /a
    pplprod/prodcomn/portal/PROD_flex-prod/favicon.ico
    [Wed Oct 13 20:22:46 2010] [error] [client 107.108.6.22] File does not exist: /a
    pplprod/prodcomn/portal/PROD_flex-prod/favicon.ico
    [Wed Oct 13 20:22:49 2010] [error] [client 107.108.6.22] client denied by server
    configuration: /applprod/prodcomn/java/java
    [Wed Oct 13 20:22:50 2010] [error] [client 107.108.6.22] File does not exist: /a
    pplprod/prodcomn/java/oracle/forms/icons/oracle_logo_light.gif
    [Wed Oct 13 20:22:51 2010] [error] [client 107.108.6.22] File does not exist: /a
    pplprod/prodcomn/java/oracle/forms/icons/oracle_logo_light.gif
    Terminated
    [Wed Oct 13 20:25:45 2010] [notice] caught SIGTERM, shutting down

  • Using DAC0/DAC1 as I/Q baseband channel to work with zero-IF architectu​re RF front end

        Hi,
         I am using the 5640R FPGA card together with RF front-end to transmit and receive OFDM modulated signal. (something similar to 802.11). I was working with a low-IF architecure RF front-end (NI PXI 1042) and now I need to modify my design to work with a zero-IF(direct downconversion) architecture RF front-end.
       Therefore, I need to generate both I and Q baseband analog signal which I will use as the input to the RF front-end.  Thus, I need to gurantee the I and Q channel (ADC0/ADC1, or DAC0./DAC1) are both synchornized.
       I read Mauricio's post about synchronizing the two DAC and two ADC, in his response to the filtering with IF-RIO. It helps a lot. Yet I still have some questions. Advices would be greatly appreciated.
        If I want to synchornize ADC0 and ADC1, should I put a "ADC reset" vi in the host after I finish the DAC configuration VI? Besides, I could not find anything similar to the "Profile" used in the DAC configuration. Since DAC reset will reset the profile 0 which is undesired as discussed in the previous post, I am wondring if there is anything similar to the ADC.
       Besides, to get the received I/Q based band data, should I just read the ADC_0_Port_I and ADC_0_Port_Q? I will later set the Transmit Frequency and Receive Frequency to both 0M. Is there anything that I should do in addition to what Mauricio kindly listed in his post?
       I attached the picture of what I did to the Host VI and FPGA VI.
       Thanks a lot.
    David
    Attachments:
    zeroiffp.JPG ‏99 KB
    zeroifho.JPG ‏116 KB

    Hi,
       I was not able to run my vi after I clocked the configuration loop with RTSI_Ref_Clk and also did the other step as illustrated in "filtering with..." post.  A error -61046 occured with the following message.
      Error -61046 occurred at ni5640R Template (HOST).vi
       Possible reason(s):
        LabVIEW FPGA:  An error was detected in the communication between the host computer and the FPGA target.
        If you are using any external clocks, make sure they are connected and within the supported specifications. Also, verify that the rate of any external clocks match the specified clock rates. If you are generating your clocks internally, please contact National Instruments Technical Support.
       The attached .zip file is my coded project.
       Advice is greatly appreciated...Thanks.
    David
    Attachments:
    Joing Configuration of WLAN Transmitter and Receiver up to Carrier step_zeroIF.zip ‏4980 KB

  • 2 Front-end vs 3 Front-end server

    Hi everyone,
    Our front-end pool will consist of 2 front-end servers for high availability. One front-end server should support 10,000 users, but since the recommendation for a front-end pool is 3 servers, i want to know if deploying only 2 could be a real issue. What
    I understand from the Technet documentation is that the way user data is stored (1 primary copy and 2 backup copies) is one reason (but I would thing not enough reason for us as a company of 1200 users) and that you need to shutdown and bring them up again
    in a specific order. Am I missing something what would definitely make me deploy 3 front-end servers? 

    I'd say just never do two front end servers, it's not recommended at all.
    Check out these links to learn more and see some experiences:
    Check out Richard Brynteson's blog post
    http://masteringlync.com/2013/10/29/understanding-how-windows-fabric-works/ (thank you for writing this up, Richard!)
    http://ucnew.wordpress.com/2013/08/16/lync-server-2013-2fe-2be-high-availablity-issue/
    http://unifiedme.co.uk/2013/04/lync-server-2013-front-end-architecture-process-and-can-you-run-enterprise-edition-pool-with-one-two-front-end-servers/
    Per TechNet "If you do not want to deploy three Enterprise Edition Front End Servers and want high availability and disaster recovery, we recommend you use Lync Server Standard Edition and create two pools with a paired backup relationship. This
    will provide the best high availability and disaster recovery solution with only two servers."
    http://technet.microsoft.com/en-us/library/gg412996.aspx
    Please remember, if you see a post that helped you please click "Vote As Helpful" and if it answered your question please click "Mark As Answer".
    SWC Unified Communications

  • Front end query writing.

    Hi gurus,
       I know about query designer, Bex analyzer, Bex browser and other related topics such as variables, Conditions and exceptions? But i cant understand what's this Front end query writing or Back end data modelling. Will you plz give me detailed description on this topic, how it should be used  in real time scenario.
    Thanks,
    Sameer.

    Hi Sameer
    If I understand ur question correctly
    <b>query designer, Bex analyzer, Bex browser and other related topics such as variables, Conditions and exceptions?</b> all these are for creating queries and used for generating reports. So these come front end side.
    And abt <b>Back end data modelling</b>, it is modelling thing we do in Adminstrator work bench(RSA1) i.e creating infoobjects, datatargets etc.,
    In real time we will get the data from source system and store it in the data targets and infoobjects we modelled in AWB and then we report on this datatargets.
    So this ETL and modelling part becomes back end and Reporting becomes front end.
    I think it's clear for u now
    Any doubts let me know
    Regards
    Kiran

  • How to add front end material to your book?

    Hello,
    I have added all the chapters to my book and now I want to add the Title Page, Dedication, Acknowledgements, and Introduction pages before Chapter 1.
    I thought these would be seperate sections at the same level as chapters, but everytime I add a section it inserts into chapter 1. Do I create a "Front End Material" chapter and then insert the sections? ("Front End Material" sounds so wrong for a chapter name)
    Could someone please let me know the proper way to handle this. I also have a bibliography which I am also assuming is a seperate chapter at the end.
    Thanks,
    Rhek

    Would you happen to know if there is a "formal" name for "front end" material?
    Thanks,
    Rhek
    'Front Matter'. At least in English
    Other cultures like to put an index in the front, as one example, so 'front' becomes a relative term.
    Some like everything on the same level, so there is no 'front'. And still others like to bury the details in minutiae, leaving it to the reader to decode, often to the extent that they are left to come up with their own structure...or not.

  • How to edit data in mtl_system_items_interface table from front end.

    Hi All,
    As i dont have create/update transaction permissions on mtl_system_items_interface from back end.
    I need to update the failed records in mtl_system_items_interface and reprocess them again.
    Kindly suggest mr how to proceed from apps front end to query and update.
    Thanks in advance
    Regards
    Santosh

    Hi Santosh,
    I think there is no front-end access to reprocess the failed records.
    For help, some useful Metalink Notes are:
    FAQ for Item Import [ID 109628.1 ]
    A Guideline to IOI Error Messages and Solutions [ID 52746.1]
    INCOIN: Basic Steps for Researching Failed Item Imports [ID 552683.1]
    Understanding Item Import and Debugging Problems with Item Import [ID   268968.1]
    Item API Or Concurrent Manager, Which One Is Best For Item Creation? [ID   760498.1]
    reagrds
    Sanjay

Maybe you are looking for

  • Can't reinstall InDesign CS3

    I was a longtime PageMaker user, and upgraded from PageMaker 6.5 to InDesign CS3 a few years ago. I'm not a designer, so use it mostly for family projects.  Last month my computer died and I took it to a computer shop, where they had to wipe it clean

  • BPEL Process with complex Business logic

    Hi, So far my knowledge,complex business logic can be implemented by different way in bpel process. 1. Business rule 2. ejb with java callout 3.ADF BC as servcie Can anybody please suggest which approach do I need to follow,what are the pros and cons

  • Are triangle buttons always jagged?

    I have selected Arrow Left Grey Triangle in the Apple shapes as button for the home menu on each submenu. While the rectangles buttons are all fine the arrow shows pixels in the diagonal lines against my pict image. Is this a limitation of DVDSP? One

  • Factsheet for both Business Partner Cockpit & Portal

    Hi, There are some factsheets inside business partner cockpit. Can these factsheets be viewable in portal as, for instance, an iView? One of the BP partner cockpit factsheets is CL_CRM_CCKPT_IOS_XML_RFC_STYLE which renders HTML from XML data generate

  • Purchased song won't play anymore on iPhone 4s

    I've only noticed it on one song so far but no matter what I do it won't play.  I can play it on my computer but not on my iPhone.  What can I do to make it work?