[SOLVED] X server and desktop environment?

ok I have 2 Q now I've been studding this quite a long time
well 1. Q
if I want to have a desktop I have to install X server and Desktop environment?
well2. Q
according to this article:
http://en.gentoo-wiki.com/wiki/Intel_GMA
I'd ask do I have to create a new file or is this an old topic for an old X server?
as I have now like this:
/etc/X11/
/twm
system.twmrc
/xinit
xinitrc
xserverrc
/xorg.conf.d
10-evdev.conf
10-monitor.conf
10-quirks.conf
Last edited by psihokiller4 (2010-08-07 13:50:03)

psihokiller4 wrote:
1. ok thanks
2.
it's sad:
X11 Configuration
If you find yourself needing to tell X11 to use the intel driver, set Driver to "intel" in /etc/X11/xorg.conf as in the example below,
File: /etc/X11/xorg.conf
Section "Device"
Identifier "My Intel Video Card"
Driver "intel"
EndSection
but I don't have it there so... do I need to create a new file or do I get this 4 lines in to
/etc/X11/xorg.conf.d/10-evdev.conf
Depends what works for you. You should do away with xorg.conf, but some setups are easier to pull off with it.
How about creating a new file named 20-intel.conf, just as you do with nvidia?

Similar Messages

  • [Solved] Setting my own desktop environment

    Hi, I'm trying to setup my own desktop environment with the following packages:
    * slim
    * metacity
    * compton
    * wbar
    This is my slim conf:
    # Path, X server and arguments (if needed)
    # Note: -xauth $authfile is automatically appended
    default_path /bin:/usr/bin:/usr/local/bin
    default_xserver /usr/bin/X
    xserver_arguments -nolisten tcp vt07
    # Commands for halt, login, etc.
    halt_cmd /sbin/shutdown -h now
    reboot_cmd /sbin/shutdown -r now
    console_cmd /usr/bin/xterm -C -fg white -bg black +sb -T "Console login" -e /bin/sh -c "/bin/cat /etc/issue; exec /bin/login"
    #suspend_cmd /usr/sbin/suspend
    # Full path to the xauth binary
    xauth_path /usr/bin/xauth
    # Xauth file for server
    authfile /var/run/slim.auth
    # Activate numlock when slim starts. Valid values: on|off
    numlock on
    # Hide the mouse cursor (note: does not work with some WMs).
    # Valid values: true|false
    # hidecursor false
    # This command is executed after a succesful login.
    # you can place the %session and %theme variables
    # to handle launching of specific commands in .xinitrc
    # depending of chosen session and slim theme
    # NOTE: if your system does not have bash you need
    # to adjust the command according to your preferred shell,
    # i.e. for freebsd use:
    # login_cmd exec /bin/sh - ~/.xinitrc %session
    login_cmd exec /bin/bash -login ~/.xinitrc %session
    # Commands executed when starting and exiting a session.
    # They can be used for registering a X11 session with
    # sessreg. You can use the %user variable
    # sessionstart_cmd some command
    # sessionstop_cmd some command
    # Start in daemon mode. Valid values: yes | no
    # Note that this can be overriden by the command line
    # options "-d" and "-nodaemon"
    # daemon yes
    # Set directory that contains the xsessions.
    # slim reads xsesion from this directory, and be able to select.
    sessiondir /usr/share/xsessions/
    # Executed when pressing F11 (requires imagemagick)
    screenshot_cmd import -window root /slim.png
    # welcome message. Available variables: %host, %domain
    welcome_msg Bienvenido a %host
    # Session message. Prepended to the session name when pressing F1
    # session_msg Session:
    # shutdown / reboot messages
    shutdown_msg The system is halting...
    reboot_msg The system is rebooting...
    # default user, leave blank or remove this line
    # for avoid pre-loading the username.
    #default_user simone
    # Focus the password field on start when default_user is set
    # Set to "yes" to enable this feature
    #focus_password no
    # Automatically login the default user (without entering
    # the password. Set to "yes" to enable this feature
    #auto_login no
    # current theme, use comma separated list to specify a set to
    # randomly choose from
    current_theme archlinux-slim-theme-whitey
    # Lock file
    lockfile /var/lock/slim.lock
    # Log file
    logfile /var/log/slim.log
    Now, my desktop entry for the sessions, which is located $HOME/.config/joelDE/joelDE.desktop:
    [Desktop Entry]
    Name=joelDE
    Comment=Mi entorno de escritorio
    Exec=/home/joel/.config/joelDE/joelDE
    TryExec=/home/joel/.config/joelDE/joelDE
    Icon=/home/joel/.config/joelDE/joelDE.png
    Type=Application
    I made the symlink: ln -s /home/joel/.config/joelDE/joelDE.desktop /usr/share/xsessions/joelDE.desktop and it DOES appears in slim sessions (F1), now jolDE script:
    #!/bin/bash
    # mi propio entorno
    (sleep 1s && metacity --replace &)
    bash $HOME/.fehbg &
    xscreensaver -no-splash &
    (sleep 1s && compton --config $HOME/.config/compton.conf -b) &
    (sleep 1s && wbar) &
    and finally my .xinitrc:
    #!/bin/bash
    # ~/.xinitrc
    if [[ ! "$1" ]]; then
    WM_Name=startxfce4
    else
    WM_Name=$1
    fi
    setxkbmap -layout latam
    if [ -z "$GTK_PATH" ] ; then
    GTK_PATH="/usr/lib/gtk-2.0"
    else
    GTK_PATH="$GTK_PATH:/usr/lib/gtk-2.0"
    fi
    export GTK_PATH
    if [ -z "$GTK_MODULES" ] ; then
    GTK_MODULES="canberra-gtk-module"
    else
    GTK_MODULES="$GTK_MODULES:canberra-gtk-module"
    fi
    export GTK_MODULES
    export LANG=es_MX.UTF-8
    echo ${WM_Name} >$HOME/DE_name.txt
    if [ ${WM_Name} != "startxfce4" ]; then
    export DESKTOP_SESSION=${WM_Name}
    export GTK2_RC_FILES=$HOME/.gtkrc-2.0
    exec dbus-launch --sh-syntax --exit-with-session ${WM_Name} >$HOME/xinitrc-log.txt 2>&1
    else
    exec ${WM_Name} >$HOME/xinitrc-log.txt 2>&1
    fi
    # :~ EOF
    This is the thing: after choosing "joelDE" in slim sessions it shows a black screen and rerun slim...
    1.- Doesn't SLim run x11?
    2.- If not, how do I call it?
    Thanks!
    Last edited by Joel (2014-07-14 04:37:30)

    Try moving the metacity line in joelDE to the end of the file and remove the last '&':
    #!/bin/bash
    # mi propio entorno
    bash $HOME/.fehbg &
    xscreensaver -no-splash &
    (sleep 1s && compton --config $HOME/.config/compton.conf -b) &
    (sleep 1s && wbar) &
    sleep 1s && metacity --replace
    With startx, and I think that this is true for SLiM as well, your X session will last as long as your ~/.xinitrc (or, I think more technically, the exec $whatever that may be at the end of the file).  So if everything in ~/.xinitrc forks (or in your case, your joelDE script), that script will complete immediately, and the X session will exit with it.

  • [solved/cannot be solved]Xorg-server and gnome-power-manager

    I was wondering if there is hope that someone will put patches to main tree of Xorg-server which are here: http://blogs.gnome.org/hughsie/2009/08/ … of-bodges/
    It should remove this weird blanking effect and time gap before screen is backlighted again. I didn't tested it, because it requires rebuild of xorg-server and I don't want to use git version, but guys there says that it's working.
    Last edited by megawebmaster (2010-02-08 22:24:26)

    OK, thanks for advice, I'll try building xorg-server with ABS.
    I've got another problem with automatic turn off screen - media players don't prevent turning screen off while they are playing film. Is there any possibility to fix it? Only way I've found is to turn off automatic screen backlight off after couple of minutes, but it's not how tigers want this to work

  • [Solved]Xorg-server and nvidia binary driver don't work

    See topic. When updating to xf86-input-evdev-2.8.2-2  xf86-input-joystick-1.6.2-3  xf86-input-keyboard-1.8.0-2  xf86-input-mouse-1.9.0-2 and xorg-server-1.15.0-1 X won't start and 'systemctl status kdm.service' states that the X server has died. According to Phoronix this should not happen.
    Harvey
    Last edited by Harey (2014-01-14 11:06:53)

    The ABI check is there for a purpose:
    [ 38.018] Loading extension NV-GLX
    [ 38.027] (EE)
    [ 38.027] (EE) Backtrace:
    [ 38.029] (EE) 0: /usr/bin/X (xorg_backtrace+0x48) [0x5834c8]
    [ 38.029] (EE) 1: /usr/bin/X (0x400000+0x1871a9) [0x5871a9]
    [ 38.029] (EE) 2: /usr/lib/libpthread.so.0 (0x7ff70edbf000+0xf870) [0x7ff70edce870]
    [ 38.029] (EE) 3: /usr/lib/xorg/modules/drivers/nvidia_drv.so (0x7ff708c51000+0x4e427f) [0x7ff70913527f]
    [ 38.029] (EE) 4: /usr/lib/xorg/modules/drivers/nvidia_drv.so (0x7ff708c51000+0x4eb501) [0x7ff70913c501]
    [ 38.029] (EE) 5: /usr/bin/X (AddScreen+0x71) [0x435c81]
    [ 38.029] (EE) 6: /usr/bin/X (InitOutput+0x3df) [0x4769df]
    [ 38.029] (EE) 7: /usr/bin/X (0x400000+0x3961b) [0x43961b]
    [ 38.029] (EE) 8: /usr/lib/libc.so.6 (__libc_start_main+0xf5) [0x7ff70dc35b05]
    [ 38.029] (EE) 9: /usr/bin/X (0x400000+0x24dae) [0x424dae]
    [ 38.029] (EE)
    [ 38.029] (EE) Segmentation fault at address 0x18
    [ 38.029] (EE)
    Fatal server error:
    [ 38.029] (EE) Caught signal 11 (Segmentation fault). Server aborting
    Seems we have to wait for nvidia to include xorg-server 1.15 into their driver
    Harvey

  • [SOLVED]Mail Server and Drupal/Gallery2

    I set up this server, that's got a webpage running Drupal with Menalto Gallery2 running.  I've discovered that whenever a new user tries to register with either, no email is sent, and with Gallery2 an error message comes up.  So I figure I need a mail server so that Drupal and Gallery2 can send these emails to users trying to register, I don't need it for anything else.  While I've seen a number of guides on the wiki on how to set up Hula, Postfix, and Courier, but I really don't know what it is that I need to meet my needs.

    You'll have to forgive me for not being fully versed in this, but I configured /etc/postfix/main.cf by setting relayhost and mynetworks like you said.  I didn't find anything like a permit_mynetworks option though.
    What's interesting is that while Menalto Gallery2 used to give me an error message whenever I tried to register a user with the email authentication enabled, it now says that it is sending the email, yet no email gets delivered.
    Also, when you say install postfix, am I supposed to just pacman it, or am I supposed to do everything it says in the wiki also?

  • [SOLVED] vmware server and kernel 2.6.26

    I'm having trouble building the vmware-server-modules and I see that there is a patch for the 2.6.24 and 2.6.25 versions of the kernel.  I've got 2.6.26, is there a module patch for this kernel version?
    FYI, the error I'm getting while building the vmware-server-modules is:
    CC [M] /var/abs/local/vmware-server-modules/vmware-server-modules/src/vmware-server-distrib/lib/modules/source/vmmon-only/linux/driver.o
    /var/abs/local/vmware-server-modules/vmware-server-modules/src/vmware-server-distrib/lib/modules/source/vmmon-only/linux/driver.c:146: error: unknown field 'nopage' specified in initializer
    /var/abs/local/vmware-server-modules/vmware-server-modules/src/vmware-server-distrib/lib/modules/source/vmmon-only/linux/driver.c:147: warning: initialization from incompatible pointer type
    /var/abs/local/vmware-server-modules/vmware-server-modules/src/vmware-server-distrib/lib/modules/source/vmmon-only/linux/driver.c:150: error: unknown field 'nopage' specified in initializer
    /var/abs/local/vmware-server-modules/vmware-server-modules/src/vmware-server-distrib/lib/modules/source/vmmon-only/linux/driver.c:151: warning: initialization from incompatible pointer type
    make[2]: *** [/var/abs/local/vmware-server-modules/vmware-server-modules/src/vmware-server-distrib/lib/modules/source/vmmon-only/linux/driver.o] Error 1
    make[1]: *** [_module_/var/abs/local/vmware-server-modules/vmware-server-modules/src/vmware-server-distrib/lib/modules/source/vmmon-only] Error 2
    make[1]: Leaving directory `/usr/src/linux-2.6.26-ARCH'
    make: *** [vmmon.ko] Error 2
    make: Leaving directory `/var/abs/local/vmware-server-modules/vmware-server-modules/src/vmware-server-distrib/lib/modules/source/vmmon-only'
    ==> ERROR: Build Failed.
    Aborting...
    Last edited by murffatksig (2008-08-14 03:39:05)

    foutrelis wrote:
    I've modified PizzaPunk's PKGBUILD to include the patches from http://groups.google.com/group/vmkernelnewbies/files (VMware-server-vmmon-1.0.6-91891-2.6.26-1.patch & VMware-server-vmnet-1.0.6-91891-2.6.26-1.patch).
    If anyone's interested: vmware-server-modules
    FANTASTIC!  Thanks!

  • Monitoring/ tuning tool for sql server and os environment

    What is a good tool for monitoring/tuning OS and SQL layers.

    OS and SQL are different things, and I am not sure what you mean under layers.
    To further expand my question, what OS build, what SQL Server edition?
    All these have enormous impact on strategy.
    Then the question is for what? OLTP need one tuning, DW another.
    Monitoring is also a question of budget, how much allowed to spend?
    Secondly, this forum is not dedicated to these kinds of questions.
    Arthur My Blog

  • Differences between CTI OS Server and CTI Server ?

    Hello community,
    I've been working with CTI Desktop for a while but I'm not clear about the differences between CTI OS Server and CTI Server?
    If you go to http://docwiki.cisco.com/wiki/Unified_CCE_Software_Compatibility_Matrix_for_8.5(x) and read note 10, they make diffrences between both products.
    Thanks in advance,
    Alejandro

    CTI Server was the original CTI interface into ICM.  It uses a network communication protocol, GED-188 I believe, for communication between the client and server.  This is relatively difficult to program against.  CTIOS and it's related SDKs were developed to provide an easier method of developing desktops and integrating desktop applications.  CTI Server communicates with ICM, CTIOS Server communicates with CTI Server, and desktop applications using the various SDKs communicate with CTIOS Server.  Cisco may be looking to get away from CTIOS Server in the future because of their decision to integrate Finesse with CTI Server rather than CTIOS Server.  Hope that helps.

  • LightDM-devel does not allow to change desktop environment

    Hi,
    I'm new to Arch and I'm trying LightDM under systemd as my display manager. I don't know if this is the right place to ask about it, since it involves a package from AUR but if anyone can help me, I'll appreciate it.
    I am currently using XFCE4 as my desktop environment. Since I need to switch user and language quite often, the current LightDM version available in pacman does not work for me since it has a bug that prevents it from reading the language selection correctly (https://bugs.launchpad.net/lightdm/+bug/1019314). Therefore, I'm trying the development version available in AUR which corrects the language problem but introduces a new one.
    Because I am new to systemd and LightDM, I'm afraid I have ask the following newbie question. On the first time that I log in, I am able to select language and desktop environment but if I log out and try to log in again, I notice a few strange things. First of all I see that the user name is in bold letters, as if the user would be still logged in. I also notice that I am not longer able to change my desktop session or language, but if I select another user I am able to do it (unless of course, I have already logged in witht this second user, in which case the problem is the same). If I reboot or restart lightdm, I am able once again to select session and language but just like before, only once until next restart. Is this the normal behaviour of lightdm or should i report this as a bug?
    Please, let me know if I'm omitting any important information regarding my system or configuration that may be responsible for this behaviour.
    Last edited by pedroobv (2013-08-02 22:46:20)

    Hello Liza,
    Did you try my solution?
    [Re: Change source system name in variant in BWQ]
    There are solutions to change variants properties, but that particular program has the logsys parameter not able to change, so you cannot change the value of that variant (only with debug).
    It's best to go for that solution I already provided to you...
    Diogo.

  • Robohelp server or desktop

    hi there,
    We have to write help files for our various products.
    What are the major difference in server and desktop version.
    Precisely, i am looking for anwers of :
    1. can we create independent (does not look for robohelp
    server to get data) executable files (.exe, .htm) so that we can
    link it to our application software.
    2. if we buy RoboHelp Desktop, then what are we MISSING...if
    we buy robohelp server
    thanks for your expert knowledge sharing in advance.
    regards,
    Rohit Kumar
    Decision Support Specialist.
    Toronto Rehab Institute
    Toronto
    [email protected]

    While many of the RoboHelp Server administrative tasks can be performed from the browser-based Web Admin app, certain basic configuration tasks require Configuration Manager. That app is strictly accessed from the server itself. Most folks set up a Windows Remote Desktop Connection to the server desktop and use it that way. Of course this requires getting permissions and access to the server from your desktop.
    Is this what you mean?
    John Daigle
    Adobe Certified RoboHelp and Captivate Consultant
    Evergreen, Colorado
    www.showmethedemo.com

  • Remote App and Desktop RDP client never succeed to logon the RDS gateway server running Windows 2012R2

    Remote App and Desktop RDP client never succeed to logon the RDS gateway server running Windows 2012R2
    1. Client Os : Windows 7 Pro
    2. Server OS : Windows Server 2012R2 with RDS broker and RDS Gateway server with 3.part Certificate  with friendly name sky.mti-itservice.no activated.
    The  main problem is following: The RDP logon session never ends
    Any ideas ?
    Regards
    Kenneth Knudsen
    Email : [email protected]
    mvh Kenneth Knudsen MCSE 2003 HP ASE

    Hi Kenneth,
    Here for your case suggest you to configure RDP session time limit so that your user can disconnect\log off once the specific time limit reached.
    You can setup the session time limit in different method.
    1. Open the Server Manager, select Remote Desktop Services.
    2. In Remote desktop Services, in right side you can drop down to collections.
    3. Select the collection which you want to edit the settings.
    4. Under collections Properties, select Task and then Edit Properties.
    5. In Properties dialog box, select Session.
    6. You can find all thetimeout settings under session collection properties; edit according to your requirements and then OK. 
    And apart also by group policy setting as below.
    Computer Configuration\Policies\Administrative Templates\Windows Components\Remote Desktop Services\Remote Desktop Session Host\Session Time Limits 
    User Configuration\Policies\Administrative Templates\Windows Components\Remote Desktop Services\Remote Desktop Session Host\Session Time Limits 
    -  Set time limit for disconnected sessions
    -  Set time limit for active but idle Remote Desktop Services sessions
    -  Set time limit for active Remote Desktop Services sessions
    -  End session when time limits are reached
    Please check which setting suitable for your environment and you can apply for your case.
    [Forum FAQ] Restrict number of Active Sessions in RDS 2012 and 2012 R2
    https://social.technet.microsoft.com/Forums/en-US/00c2252b-8ec0-489f-8da2-07a434a9b5a2/forum-faq-restrict-number-of-active-sessions-in-rds-2012-and-2012-r2?forum=winserverTS
    Hope it helps!
    Thanks.
    Dharmesh Solanki
    TechNet Community Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Lync Server 2013 in a Remote Desktop Environment

    Hello Community,
    We have a client who is sold on Lync. He wants to install Lync server in a Terminal Server but his environment is RDHS 2008v2 and his end users have thin clients. According to MS official position It is not supported. Has anyone successfully implemented
    this ? If yes what are the pitfalls that lay ahead with regards to audio/video redirection, desktop sharing etc. He has traditional phones but really he wants to get rid of them and go Lync full blown.

    The Virtualizing Lync Server 2013
    (WindowsITPro) article presents a nice overview to this topic.
    In additon, do take a look at the following resources which may be helpful:
    Planning a Lync Server 2013 Deployment on Virtual Servers
    http://www.microsoft.com/en-us/download/details.aspx?id=41936
    Deploying the Lync VDI plug-in in Lync Server 2013
    http://technet.microsoft.com/en-us/library/jj204683.aspx
    Making the Microsoft Lync to work best in your virtualization environment
    http://www.youtube.com/watch?v=WiZX3uoVKV8
    Note that unlike Lync Server 2010, the Lync 2013 VDI browser plug-in is designed to support VDI environments (with paired audio/video) running on supported platforms (from Windows Server 2008 R2 to 2012/R2).
    Hope this helps.
    Thanks / rgds,
    TechNet/MSDN Forum Moderator - http://www.leedesmond.com

  • How can I Create a Client Configuration File for RemoteApp and Desktop Connection with Server 2012?

    I have a working RDS RemoteApp site and looking to test out the feature in Windows 7 Control Panel\All Control Panel Items\RemoteApp and Desktop Connections
    I came across this link: Create a Client Configuration File for RemoteApp and Desktop Connection and I believe this is what I need to do first, but these instructions are for
    Server 2008, and I'm running 2012.
    Any suggestions or tips on how I can begin testing this with Server 2012?

    Hi,
    You can manually enter the path to the 2012 feed and it will connect and download the RemoteApps and Desktop connections.
    If you need a sample .wcx file I have posted one here a couple of times.  If you want I will look for it and post a link.
    -TP
    I tried adding my URL's below, these are sample links that work for me right now for when I log into the web page, but neither of these work.  And I'm not sure what I would need to do with or how to create a .wcx file.
    When I type in my URL of: https://connect.mydomain.org/RDWeb, I get redirected to: 
    https://connect.mydomain.org/RDWeb/Pages/en-US/login.aspx?ReturnUrl=/RDWeb/Pages/en-US/Default.aspx

  • What licenses do I need to get a virtual desktop environment up and running?

    I’m trying to figure out what licenses I need to get a full Windows Virtual Desktop Infrastructure (VDI) up and running with the Remote Desktop Service (RDS) roles.
    I have Win.Server 2012 running Hyper-V, which has about 10 different virtual machines (VM) with either Win.7 or Win.8 installed on it. These VMs will act as virtual desktops (VD) for about 200 people to remotely access and use.
    My question is, what licenses do I need to support this scenario?
    So far, I’m planning to purchase a few Windows Server 2012 Standard Edition with 10 Client Access Licenses ( $1414.19 each). I’m assuming that’s 1 license for the server and 10 Client Access Licenses (CAL) for users who will access the VDs. I’m also planning
    to buy about 200 RDS CALs ($149 each) for the rest of the users to access the VDs. Do I need to buy additional licenses for each VM image I create (the 10 images I mentioned earlier)? These VMs are in a pooled virtual desktop collection, so they reset themselves
    when users disconnect from them. If I have personal desktop collections which give unique desktops to each user and saves their settings, will my license have to change if I have that too?
    At first I thought just buying the RDS CALs will allow me to install windows where ever I want, how many times I want and all I have to worry about is paying for the client access, but do I need to pay for the OS as well? So essentially I’m doubling the
    license?
    A side question not really related is, if I have Windows Thin PC, (which was said to come free if I have SA with another product)  and bought the Windows Server license, does that come with SA and I can install Windows Thin PC as many times as I want
    on which ever desktop I have that will connect to this VDI system?

    The 10 server licenses are fine, but they don't help you with VDI or remote desktops. I you want to install the Remote Desktop Session Host (formerly known as Terminal Server) role on all your servers und provide remote desktops for your 200 users, 200 RDS
    CALs are the right choice (per user or per device).
    But if your 200 users have access to virtual desktops, you need 200 VDI licenses. It doesn't matter if you only have 10 virtual desktops if potentially all your 200 users have access to them. VDI licensing is not based on a concurrent model, so every client
    that can connect to a VM needs its own license. If Windows 8 Enterprise with SA is on all your client devices, you're set because SA gives users access rights to up to 4 Win8 or Win7 VMs concurrently (local or remote). In addition
    it gives them a so-called companion subscription license for personally owned, non-primary devices.
    For those primary corporate devices that are without SA, you'll need to purchase a single VDA license for each device that connects to any number of your Win7 or Win8 VMs. The same applies to personally owned devices of users who don't have a primary
    corporate device with SA. In other words, BYOD is supported if your primary device is under SA.
    For neither VDI/SA nor VDA it does matter if users are connecting to different VM images or only one. Typically, they cannot connect to more than 4 VMs at the same time in order to stay within the licensing limits.
    Benny

  • How do i keep spam from coming to my inbox on phone, I am on a server and my desktop receives spam in the junk and spam boxes?

    How can I keep spam and junk mail coming to my inbox on my phone?  I am on a server and my desktop receives most of it in junk or spam mailbox.  thanks

    Contact your ISP to block SPAM.

Maybe you are looking for

  • ITunes in Windows is horrendous

    Is there ever likely to be a day that Apple gets iTunes in windows right? I spent 1.5 hours last night trying to add a new movie to my daughters ipod touch... 1. the application is a memory hog and takes 2+ minutes to fully load 2. Switching between

  • Static member problem in multiple instance of  web application

    Problem I am working on a product which is java based. I have a war file. I have to deploy this war file in JBoss. Further, I need to run multiple instance of this war file in same JBoss instance. Issue      In that war file there is servlet Start.ja

  • Need Help in scripts relating to subscripts

    I have encountered a HUGE problem in flash and I desperately need urgent help from flash experts out there so please hear me out. Here it goes >> I am currently working on ‘fill in the blanks’ questions and answer for my chemistry project and the thi

  • How to update unique values

    I want to update the unique values, if they are not inserted... Please help in this regard CREATE OR REPLACE PROCEDURE PR IS lv_operator VARCHAR2(1) := 'N'; TYPE subset_rt IS RECORD ltt_whse_loc oe_sales_ord_commit.whse_loc%TYPE, ltt_shape oe_sales_o

  • Hyperion Planning Openings at Linium

    If you have a moment, I'd appreciate your help. Please take a look and forward this job on to anyone you think might be interested in the position, or anyone else who could help me find a great candidate. Linium is offering a $1,000.00 bonus for any