Ubuntu Linux start problem

When I try to use the application launcher to start Oracle, I get the following: "operation failed. stan is not a member of the dba group."
I am able to start the database in the terminal window using the /etc/init.d/oracle-xe start command - and have added user stan with dba privileges. 'stan' is the name of my Linux machine.
What am I doing wrong ? It would be nice to be able to use the application launcher instead of the terminal window.
Thank You...

The launcher was designed to be used from the same userid that installed the database.

Similar Messages

  • Problem with character set (ubuntu linux)

    hello everyone.
    I 'have already installed oracle-xe-universal_10.2.0.1-1.1_i386 in ubuntu.
    The problem is that greek characters from the db appear like ??????.
    How can i set the right nls_lang character set to solve the problem in ubuntu linux?
    Thank you in advance!

    Character code point translation is in the realm of the client, try setting NLS_LANG environment variable.
    If your client programs handle UTF8, as do many linux utilities, that is the best choice, set your <language>_<locale>.<characterset>, i.e.
    export NLS_LANG=AMERICAN_AMERICA.AL32UTF8
    Or french_france, or german_germany ... depends on the locale you want to use. Try a `putty` session to the host, the terminal can be set for many different character sets, i.e. ISO8859-<n> a.k.a. the WE8<n> or Western European, UTF, etc. under Window/Translation.
    Try a few select ... from dual; statements in sqlplus with a literal, and different unicode values- the unistr() and dump() functions can come in quite handy.
    select unistr('\ac20 euro' ) from dual;
    ... € euro ...
    select dump( unistr('\ac20 euro' ) ) from dual;
    ... <ascii codes for the character values> ...
    select dump( unistr('\ac20 euro' ),16 ) from dual; -- this one for hex dump

  • Install Oracle 11gR2 Express Edition on Ubuntu Linux 11.04 (64-bit) Howto

    h2. Install Oracle 11gR2 Express Edition on Ubuntu Linux 11.04 (64-bit) Howto
    Version: B
    Author: Dude, 24. May 2011
    The following are step by step instructions how to install Oracle 11gR2 Express Edition (Beta) under Linux Ubuntu 11.04, 64-bit.
    Access to the Internet is required.
    The instructions cover the following additional topics:
    - Converting Red Hat based Oracle XE installer to Ubuntu.
    - Work-around for missing /sbin/chkconfig tool.
    - Install Oracle XE into a different directory or disk volume.
    - Relocate and configure the Oracle user and default login directory.
    - Uninstall, reconfigure and perform first database backup.
    - Notes and web links.
    - Troubleshooting
    h3. A) System Setup and Prerequisites
    h4. A.1. System Access
    You will need terminal command line, root and system console access to perform the setup tasks.
    To open a Terminal at the system console:
    Menu Applications > Accessories > TerminalThe following commands will enable remote ssh login with root access:
    sudo apt-get install openssh-server
    sudo passwd root
    Verify:
    ssh root@xe_server_host_nameh4. A.2. Software Prerequisites
    The following is required in order to install Oracle 11gR2 XE:
    sudo apt-get install alien libaio1 unixodbcThe following is not required, but it will fix backspace and arrow keys in case you prefer using the vi-editor:
    sudo apt-get install vimh4. A.3. System Swap space
    Minimum swap space required is 2 GB. You can increase swap space if necessary using a swap file:
    To analyze current swap space and memory configuration:
    sudo cat /proc/meminfo
    To install a 1 GB swapfile named swapfile in /, for example:
    sudo dd if=/dev/zero of=/swapfile bs=1024 count=1048576
    (this may take a while)
    sudo mkswap /swapfile
    sudo swapon /swapfile
    sudo cp /etc/fstab /etc/fstab.orig
    sudo echo '/swapfile swap swap defaults 0 0' >> /etc/fstab
    Verify:
    sudo swapon -a
    sudo swapon -sh4. A.4. Kernel Parameters
    Oracle 11g XE requires the following additional kernel parameters:
    sudo nano /etc/sysctl.d/60-oracle.conf
    (Enter the following)
    # Oracle 11g XE kernel parameters
    fs.file-max=6815744
    net.ipv4.ip_local_port_range=9000 65000
    kernel.sem=250 32000 100 128
    kernel.shmmax=536870912
    (Save the file)
    Note: kernel.shmmax = max possible value, e.g. size of physical RAM.
    Verify: sudo cat /etc/sysctl.d/60-oracle.conf
    Load new kernel parameters:
    sudo service procps start
    Verify:
    sudo sysctl -q fs.file-max
    -> fs.file-max = 6815744h4. A.5. Oracle Installation Directory
    The current Oracle Installation Guide uses the same directory like in previous versions: /usr/lib/oracle/xe/app/oracle/product/11.2.0/server. However, the current Beta installation uses Oracle Flexible Architecture (OFA) and installs into /u01/app/oracle/product/11.2.0/xe. Due to size limitations of Oracle XE it may not be necessary to store the installation to a specific directory or separate volume, but it is possible:
    Install Oracle XE to separate disk volume:
    From the system console menu: System > Administration > Disk Utility
    Select "ext3" filesystem for Oracle compatibility and specify a Volume label, e.g. Oracle.
    Notice the device name e.g. /dev/sdb
    Get the drive UUID:
    sudo blkid
    e.g. /dev/sdb: UUID="d19a2d8f-da43-4802-8bdb-0703c855e23a"
    Modify /etc/fstab to automatically mount the volume at system startup:
    sudo cp /etc/fstab /etc/fstab.original
    sudo nano /etc/fstab
    (Add the following, using determined UUID, for exmple)
    UUID=d19a2d8f-da43-4802-8bdb-0703c855e23a /u01 ext3 defaults,errors=remount-ro 0 1
    (Save the file)
    Create the mount-point, mount the new volume and set ownership and privileges:
    sudo mkdir /u01
    sudo mount -a
    sudo chown root:root /u01
    sudo chmod 755 /u01
    Verify:
    df -h
    or restart the systemYou can also install Oracle XE into a specific directory:
    Create a symbolic link to store the installation into an existing directory, for instance:
    sudo mkdir /home/oracle-xe
    sudo ln -s /home/oracle-xe /u01h3. C) Oracle 11g XE Download and Installation
    h4. C.1. Download and convert the Installer from Red Hat to Ubuntu
    Please see section E.3. to download the Oracle 11gR2 XE installer.
    Select the version listed for Linux x64.
    sudo unzip linux.x64_11gR2_OracleXE.zip
    sudo alien --to-deb --scripts oracle-xe-11.2.0-0.5.x86_64.rpm
    (This may take a while)h4. C.2. Create a special chkconfig script
    The Red Hat based installer of Oracle XE 11gR2 beta relies on +/sbin/chkconfig+, which is not used in Ubuntu. The chkconfig package available for the current version of Ubuntu produces errors and my not be safe to use. Below is a simple trick to get around the problem and install Oracle XE successfully:
    Create /sbin/chconfig:
    sudo nano /sbin/chkconfig
    (Cut and paste the following)
    #!/bin/bash
    # Oracle 11gR2 XE installer chkconfig hack for Debian by Dude
    file=/etc/init.d/oracle-xe
    if [[ ! `tail -n1 $file | grep INIT` ]]; then
       echo >> $file
       echo '### BEGIN INIT INFO' >> $file
       echo '# Provides:             OracleXE' >> $file
       echo '# Required-Start:       $remote_fs $syslog' >> $file
       echo '# Required-Stop:        $remote_fs $syslog' >> $file
       echo '# Default-Start:        2 3 4 5' >> $file
       echo '# Default-Stop:         0 1 6' >> $file
       echo '# Short-Description:    Oracle 11g Express Edition' >> $file
       echo '### END INIT INFO' >> $file
    fi
    update-rc.d oracle-xe defaults 80 01
    (Save the file)
    Set appropriate execute privileges:
    chmod 755 /sbin/chkconfig
    Note: You should remove the /sbin/chkconfig file after successful installation of Oracle XE.
    h4. C.3. Install and configure Oracle XE
    sudo dpkg --install ./oracle-xe_11.2.0-1.5_amd64.deb
    /etc/init.d/oracle-xe configure
    (This will take a while)
    Remove the /sbin/chkconfig script, which is no longer needed.
    sudo rm /sbin/chkconfigh4. C.4. Relocate and Configure the Oracle user login
    The Oracle XE installer specifies /u01/app/oracle as the login directory for the Oracle user. Although not really necessary, the following will relocate the Oracle user $HOME to a standard location and create standard /etc/skel login files:
    Exit all Oracle user sessions:
    sudo /etc/init.d/oracle-xe stop
    sudo kill -9 `ps -ef | grep oracle | grep -v grep | awk '{print $2}'`
    sudo userdel oracle
    sudo useradd -s /bin/bash -G dba -g dba -m oracle
    sudo passwd oracle
    Verify:
    sudo id oracle
    -> uid=1001(oracle) gid=1001(dba) groups=1001(dba)h4. C.5. Setup Oracle environment variables
    In order to use sqlplus and other tools, the Oracle account requires certain environment variables. The following will set these variables automatically at every interactive Oracle login:
    sudo echo '. /u01/app/oracle/product/11.2.0/xe/bin/oracle_env.sh' >> /home/oracle/.bashrch4. C.6. Oracle sudo root access
    It is not essential to allow the Oracle user to use sudo, but it is convenient:
    usermod -G admin oracle
    Verify:
    id oracle
    -> uid=1001(oracle) gid=1001(dba) groups=1001(dba),120(admin)
    sudo su -
    -> Enter Oracle account passwordh4. C.7. Oracle 11g XE Post-installation
    After you install Oracle Database XE, its graphical user interface is only available from the local server, but not remotely.
    The following will correct the problem if necessary:
    Login as user Oracle or use:
    su - oracle
    sqlplus / as sysdba
    At the SQL prompt, enter the following command:
    EXEC DBMS_XDB.SETLISTENERLOCALACCESS(FALSE);
    exith3. D) Unintstall, Reconfigure and Troubleshooting
    h4. D.1. Uninstall Oracle 11g XE
    The following will completely uninstall and remove Oracle 11g XE:
    Login as user root:
    sudo su -
    /etc/init.d/oracle-xe stop
    dpkg --purge oracle-xe
    rm -r /u01/app
    rm /etc/default/oracle-xe
    update-rc.d -f oracle-xe removeh4. D.2. Reconfigure Oracle 11g XE
    Type the following in a terminal window:
    /etc/init.d/oracle-xe stop
    sudo rm /etc/default/oracle-xe
    /etc/init.d/oracle-xe configureh4. D.3. Enable Archivelog mode and perform a database backup
    Login as user Oracle:
    su - oracle
    sqlplus / as sysdba
    At the SQL prompt, enter the following commands:
    shutdown immediate
    startup mount
    alter database archivelog;
    alter database open;
    exit
    Login to system console of the Oracle user account:
    Select Applications > Oracle Database 11g Express Edition > Backup Databaseh3. E) Notes
    h4. E.1. Oracle 11g XE limitiations overview
    - It will consume, at most, processing resources equivalent to one CPU.
    - Only one installation of Oracle Database XE can be performed on a single computer.
    - The maximum amount of user data in an Oracle Database XE database cannot exceed 11 GB.
    - The maximum amount of RAM that Oracle XE uses cannot exceed 1 GB, even if more is available.
    - HTTPS is not supported natively with the HTTP listener built into Oracle Database XE.
    h4. E.2. Documentation and Links
    Official documentation for Oracle 11gR2 XE can be found at:
    http://www.oracle.com/pls/xe112/homepage
    h4. E.3. Oracle 11g XE downloads
    The Installer is available from the Oracle Technology Network at:
    http://www.oracle.com/technology/products/database/xe
    http://www.oracle.com/technetwork/database/express-edition/downloads/index.html
    h4. E.4 APEX links and archives
    The APEX archives can be found at:
    http://www.oracle.com/technetwork/developer-tools/apex/application-express/all-archives-099381.html
    The APEX download site is:
    http://www.oracle.com/technetwork/developer-tools/apex/downloads/index.html
    h3. F) Troubleshooting
    ... in progress
    Regards and best of luck!
    Edited by: Dude on May 25, Version B: various corrections. chkconfig package (A.2.) not required.

    even though I am admin user.Admin user is a MS Windows term, that does not apply to Linux or Unix in the same fashion.
    The configuration script tells you "You must be root user to run the configure script. Login as root user and
    then run the configure script."
    This is most likely correct because your account is not root and does not have UID 0. What you can do is to login as root e.g. sudo su -, as the message suggest, or use "sudo /etc/init.d/oracle-xe configure", provided your account is defined in the /etc/sudoers file to perform root/admin actions.
    Btw, do not modify /etc/passwd and /etc/group to give you admin privileges or try to create a another root account under a different name. That's not the way it works and usually leads to nasty problems.

  • Mega pc 865 runnig ubuntu linux

    i've just instaled ubuntu linux on my mega pc 865. everything seems to be working properly...
    the only (big) problem is the fan noise. when i boot windows xp, the fan noise always reduces into an acceptable minimum. but that doesn't happen when i boot into ubuntu.
    oh, and i have bios version 1.30. before i upgraded the bios, i had suse 9.2 and it worked fine...
    any linux experts out there...?
    thanks,
    Miguel

    It took me months to figure out, but YES you CAN get fan control in Ubuntu 5.10 on a MEGA 865.  Linux isn't my strongpoint, in fact getting to work on the MEGA has been my only accomplishment, so I can't walk you through it step by step.  I'm at work now, so later I'll have to look through my bookmarks to find some of the guides I used to get it working.  A few things I know for sure:
    You need to upgrade the kernel to 2.6.14 or higher so the necessary drivers are availible.  Search ubuntuforums.org for a great easy to follow guide.
    Then you need to install the lm_sensors package.  You can just use 'sudo apt-get install lm-sensors' for that.
    Now when I said fan controll I didn't mean automated software controlled fan regulation.  I'm still trying to figure that part out.  However, you can manually modify the fan speeds by setting the right files to the appropriate values.  This obviously is dangerous as you can't really tell when to turn the speed up, but it's a start!  After you get all the drivers installed the files are called pwm1 and pwm2, where pwm1 id the primary CPU fan and pwm2 is the secondary.  To modify these all you need to do is echo the appropriate value in.  Example: (this is from memory so it may not be 100%)
    cd /sys/bus/i2c/devices/9191-0800
    sudo echo 170 > pwm1
    sudo echo 130 > pwm2
    the 170 and 130 are simply the values that I found made the fans sound most like they did in Windows when they were on low speed.  I have not yet had any problems with these values.  You can use anything from 0-255, but for the chip that's in our MEGAs the values are inverted, so 0=full speed and 255=off.
    I'll try adn find some of the web pages I used to get it working and post links.  Hope this helps.  Remember, ubuntuforums is your friend.  Search those for lots of great how tos and other help.
    -Eric

  • Can anyone tell me how to update my bios in my Acer aspire 5610Z laptop. I installed Ubuntu Linux

    I installed Ubuntu Linux in my Acer Aspire 5610Z laptop and all was fine until the latest updates came in. I inquired about the problem and I was told that I needed the newer version of bios. My laptop uses Pheonix WinPhlash bios and I cannot make it work through Ubuntu. Iwould appreciate any help that anyone might be able to give me. The keyboard does not work correctly and the person at Ubuntu assured me that it was the bios causing the problem. My laptop originally came with a Windows Vista installation disk. Thanks in advance.Rich S.

    I had no problems with Ubuntu version 13. I started having problems with my keyboard after it upgraded to 14.04. I filed a bug / problem report with Ubuntu and I was told it was my out dated bios version 3.50. I went through hell trying to update it to bios version 3.60 but after many frustrating hours I finally ended up puting in Windows 2000 and updating WinPhlash through it. I had wiped my hard drive, reformatted it and it would no longer install Windows Vista. I can't figure that one out at all? After going through about two weeks of failure I finally got bios 3.60 installed. It did not change anything. The keyboard of the laptop worked just fine with Windows. When I put Ubuntu back it I had the same old ball game. I have to use a USB keyboard. I installed Ubuntu 15.04 (advice from my learned son) that produce no change either. Now, I had been going on the asumption that the fellow from Ubuntu knew what he was talking about since he assured me that it was a "buggy bios" version 3.50 causing the keyboard problem. I did a Google search only to find out that laptop keyboard problems are a very common thing with almost all versions of Ubuntu, especially version 14.04. I was told there is a Kernel 4.1 that may solve the problem but I do not understand Kernels very well and I fear I may mess things up and will have to start all over a again. I shall find out.

  • Exception when removing player component running on Ubuntu Linux

    Hi,
    when I remove the player component from the GUI, I get the following exception on Ubuntu Linux 12.04 (Unity).
    The project started 10 years ago and was running without any problems on windows, Mac, Linux.
    I didn't test it on other linux distributions or desktop environments.
    Catching the exception helps but this is somewhat ugly....
    I'm using JMF 2.1.1e, Cross Platform Version.
    On win7/8 no problems.
    Any ideas?
    TIA
    gve
    java.lang.IllegalArgumentException: null source
        at java.util.EventObject.<init>(EventObject.java:56)
        at java.awt.AWTEvent.<init>(AWTEvent.java:337)
        at java.awt.event.InvocationEvent.<init>(InvocationEvent.java:224)
        at java.awt.event.InvocationEvent.<init>(InvocationEvent.java:188)
        at java.awt.event.InvocationEvent.<init>(InvocationEvent.java:150)
        at sun.awt.X11.XBaseMenuWindow.dispose(XBaseMenuWindow.java:907)
        at java.awt.MenuComponent.removeNotify(MenuComponent.java:310)
        at java.awt.Menu.removeNotify(Menu.java:198)
        at java.awt.Component.removeNotify(Component.java:6980)
        at com.sun.media.renderer.video.HeavyComponent.removeNotify(HeavyComponent.java:50)
        at java.awt.Container.removeAll(Container.java:1290)

    I too am having this problem. On all of my linux distributions, including Ubuntu 8.04, 8.10, knoppix 5,1, fedora 8,9,10 flashplayer 10 is broken in the same way.  It reports that it cannot find webcam, and the settings dialog refuses to recognize mouse clicks.  I've poked around the web quite a bit and have not yet found a solution.  I saw the problem mentioned on an adobe bug reporting site and their response was to close the issue saying it wasn't repeatable on their system.  I tried to re-open it and my post was deleted without comment (I may have posted incorrectly or something)
    Looking here  and elsewhere I see that the problem is very common and I don't see any posted bug-fixes, or even acknowledgement that a bug exists.  Has adobe lost interest in being cross-platform compatible?

  • Upgrading to Firefox 17 on ubuntu linux 10.04 caused my xmodmap remapped keys to not work in Firefox

    After upgrading from Firefox 16 (16.0.2+build1-0ubuntu0.10.04.1) to Firefox 17 (17.0+build2-0ubuntu0.10.04.1) on 22-November-2012 I no longer can use an xmodmap remapped F key in Firefox. It still works in other gnome programs but pressing the new F key anywhere in Firefox 17 produces no action. I even had to use the gedit program in order to type all this before copying it into the Ask a Question form.
    Here is my situation: I use Ubuntu Linux 10.04 LTS on a circa 2004 Sony Vaio notebook pc. I've been using linux on it dating back to Ubuntu 8.04. When I got the used pc the "F" key on the keyboard was broken off. I programmed the .xmodmaprc file in my home folder to initiate the "Keycode 133 = F" command on startup in order to remap the missing key to the unused Windows Logo key on the lower left of the keyboard. This has worked flawlessly for over four years. In all prior versions of Firefox going back to whatever version was included in Ubuntu 8.04 I have had no trouble using this key through all Firefox upgrades until now.
    On the morning of 22-Nov-2012 the Update Manager notified me of an upgrade to the following packages as shown in the history log of Synaptic Package Manager:
    Commit Log for Thu Nov 22 09:20:16 2012
    Upgraded the following packages:
    firefox (16.0.2+build1-0ubuntu0.10.04.1) to 17.0+build2-0ubuntu0.10.04.1
    firefox-branding (16.0.2+build1-0ubuntu0.10.04.1) to 17.0+build2-0ubuntu0.10.04.1
    firefox-gnome-support (16.0.2+build1-0ubuntu0.10.04.1) to 17.0+build2-0ubuntu0.10.04.1
    firefox-locale-en (16.0.2+build1-0ubuntu0.10.04.1) to 17.0+build2-0ubuntu0.10.04.1
    ubufox (2.1.1-0ubuntu0.10.04.1) to 2.6-0ubuntu0.10.04.1
    xul-ext-ubufox (2.1.1-0ubuntu0.10.04.1) to 2.6-0ubuntu0.10.04.1
    After performing the upgrade and restarting Firefox I noticed I was no longer able to use my remapped F key at all. I checked other programs and it worked OK so I know it's a Firefox 17 problem only. I tried reinstalling all the packages again with no results. I even went so far as to perform a Reset Firefox in Help-->Troubleshooting Information to try and get it working. All this ended up doing was removing all add-on extensions and changing some of my settings in Preferences but I'm not positive of any changes beyond the Location Bar setting in Privacy changing from Nothing to History and proxy setting going from No to Auto-Detect.
    The only solution that has worked to fix this problem is uninstalling Firefox 17 and reinstalling Firefox 16 using a downloaded firefox_16.0.2+build1-0ubuntu0.10.04.1_i386.deb file from Ubuntu as Firefox 16 no longer shows up in the main repository since 22-November-2012. The only versions available for a Force Version in Synaptic are 3.6 and 17 now. After downgrading only the firefox package shows version 16.0.2, all other components I listed above stayed at version 17. I don't know if this will cause any other problems but so far nothing bad has happened.
    After I submit this question I will be downgrading again to Firefox 16 until this problem can be solved.
    Edit: noted the following Language Packs were disabled on restart after downgrading to Firefox 16 again:
    English (GB) Language Pack 17.0
    English (South Africa) Language Pack 17.0
    If my memory is correct I only remember having an English (GB) Language Pack in all prior versions of Firefox. Firefox 17 was the first time I noticed a English (South Africa) Language Pack installed. It's possible the problem with xmodmap keys not functioning in Firefox 17 could be related to something in these two packs.

    Ok I tested a bunch of different Firefoxes on my pos linux box.
    '''''Worked with xmodmap:'''''
    Vanilla 16.0.2,
    Vanilla 16.0B6,
    Ubuntu Firefox 16.0.2 (16.0.2+build1-0ubuntu0.10.04.1)
    '''''Did Not Work with xmodmap:'''''
    Vanilla 17.0.1,
    Ubuntu Firefox 17.0.1 (17.0+build2-0ubuntu0.10.04.1)
    I have an old Dell Dimension 2400 I plan to use as a replacement for the Sony Vaio when it pops. I've held out as long as possible because it lacks a pci or usb wifi and I really didn't want to run 50 feet of cat5 up a flight of stairs to it. [as i type this i think i remember where a linksys stick for it might be]. Yes I guess it's about time I just do that.
    Don't laugh but the reason I held off adding a simple usb keyboard was just lack of space in my tiny bedroom. My setup is on two tray tables side-by-side. Sony Vaio is on left one, my lcd monitor and mouse are on the other. I barely have room to put a cup of coffee on the one with monitor and mouse let alone a full size usb keyboard lol.
    Anyway thank you again for all your help.

  • How to install Oracle client on UBUNTU LInux

    Hi,
    I want to install oracle client on ubuntu linux. Which version of oracle client works on it and is there any other tool which i can install instead of oracle client?
    Regards,
    RJiv.

    RJiv wrote:
    Hi,
    I want to install oracle client on ubuntu linux. Which version of oracle client works on it All recent Oracle version support different Linux flavours
    The problem is Oracle usually don't provide direct Oracle Client download except for Windows. You need to download the Server installation file and install the client piece. The download files are rather large.
    and is there any other tool which i can install instead of oracle client?It depends on what you plan to do with Oracle client and why you need it.
    On alternative is instance client, it has direct download for all supported platform.
    http://www.oracle.com/technology/software/tech/oci/instantclient/index.html

  • Printers in RDP Windows 2012 and Ubuntu Linux

    Computer 1. Windows Server 2012 Std with RDP Terminal Server
    Computer 2. Ubuntu Linux 13.04 with RDP client Remmina and HP LaserJet 1020 Printer
    Computers isn't located in one local network. When I connected to the Windows by RDP - I couldnt see any printers (e.g. HP LJ 1020). What should I do to make visible my printers when I connect thru Remmina to Windows 2012 Server? May be add some components
    or roles? By the way, when I use Windows 7 to connect to Server 2012, I could see my printer like Remote Desktop Easy Print.
    Windows Server 2012 и клиент на Ubuntu не находятся в одной локальной сети, поэтому подключить принтер из под терминальной сессии по локальной сети не получится. Нужно прокидывать принтер с Ubuntu в терминальную сессию через RDP. Так вот,
    если я подключаюсь из под Windows 7, то принтер виден, Easy Print отрабатывает нормально, а если из под Ubuntu, то нет ни одного принтера. Как я понял, это особенность Windows 2012, то что они отключили там устаревшие компоненты, потому
    что подключаюсь к Windows 2008R2 и там принтер из Ubuntu виден.

    (SOLVED) Problem with printer redirection between Ubuntu Linux 12.04 and Windows 2012R2
    Server - Windows 2012R2 
    Clients - Linux Ubuntu 12.04/14.04 
    RDP client - Remmina Remote Desktop Client (Stable release: 1.0.0). 
    It turned out that for some strange logic in the connection settings to the server in the RDP client - Remmina must specify sound "local". 
    Then Printer redirection works and print remotely without problems. 
    Special thanks to the user with the nickname "nechik_uk" from forum.oszone.net.

  • Adobe Reader 9 Linux GUI problems

    Hi!
    I've been using Linux Mint 8 since October 2009. Before that I was using Debian Lenny. I'm trying to use Adobe Reader 9.3 for working with multiple pdf documents. I've run into some problems that didn't seem to exist when I was using it on Lenny (although it was also using Adobe Reader 9.1, so I'm not sure where the problem lies). Here are the problems...
    If I have a large number of pdf's open in tabs, I can view one, but to print, I have to click once somewhere in the toolbar before the print button works - essentially I have to click twice to activate the print button. After that, I cannot activate another tab until I first click somewhere on the document window. Between all these clicks, the mouse pointer is switching back and forth between the nice and smooth Linux mouse pointer, and the ugly and pixelly pointer that Reader uses for some reason. Finally, if I have more tabs open than fit in the width of the window, clicking on the left or right arrows that scroll the tabs scrolls all the way to the very last or very first tab. It will not just move over by one tab. If there is a really, really long list of tabs, I cannot get to the ones in the middle.
    Anyone have a solution for this? I cannot use Evince or other Linux-based pdf viewers due to the startling lack of tab support (really should be a common thing by now, in my opinion). I just don't want to have to juggle tons of windows.
    Thanks!

    I am not fully familiar with Mint, but it is based on Ubuntu ..
    Update to the latest version of Adobe Reader, and re-check these issues.
    TO UPDATE
    Check in Synaptic that the 'partner' software repository is enabled.
    At terminal type:
    (if required) update your system
    ~:   sudo apt-get update && sudo apt-get upgrade  <Enter>
    install latest Acrobat Reader (for Ubuntu Linux), AND font packs
    ~:   sudo apt-get install acroread acroread-fonts  <Enter>
    Then look for Adobe Reader in the applications menu (top left of screen).

  • Inadequate sound capture levels using Audigy 2 w/ Ubuntu Linux.

    Hello, everything works fine in Windows XP. I use Audacity to do some basic multitrack recording with my guitar and Line6 POD.
    However, I recently installed Ubuntu Linux (5.10) in a dual boot configuration with Windows. I cannot get decent recording levels using my typical recording method: guitar => Line6 POD preamp => Aux 2 (stereo RCA) on Audigy2 ZS Platinum breakout box => Audacity software. I'm wondering if this has something to do with the Linux audio drivers. I have found where to change the audio capture levels for the sound card (ALSA mixer), but even when I max everything out, my record levels are pathetic compared to Windows (-10 dB or more). Does anyone have suggestions?

    Thanks pzad! At least now I know I'm not going crazy. Still, it's disappointing to come across problems like this. It looks like I'll have to ditch Linux for audio recording purposes, at least until this issue is resolved or I get some new audio hardware.
    I gathered from that bug tracker issue that you were planning to release a patch for this issue. Since the issue is still open, I take it that you haven't been able to do this yet? If it's because you don't have the hardware to test, I would be happy to help in any way I can. Just to warn you though: I am a Linux noob.

  • Using a Signature Pad in Adobe Reader Ubuntu Linux??

    We are wanting to move away from Window and us Ubuntu Linux on our field computers.  The only problem is we have a signature pad and we need that to work in Adobe Reader.  We are using a Topaz signature pad.  I have been in contact with the company and they have been very helpful.  They have a driver for the signature pad in linux but they do not have a plugin for Adobe Reader.  Does anyone know a signature pad that will work in Adobe Reader?  Does anyone know if there is a plugin for Adobe Reader that may be used to work with the current signature pad we have.  Topaz said they can help me get set up to the point of going into Reader but then we would have to go the rest of the way.  Does anyone have any advice?
    Thanks

    I'm also experiencing the same issue where we go to open a document and it takes a long time to verify each of the signatures. Have you found a solution to this?

  • JavaScript Print Button Page Range Not Working Ubuntu Linux

    I have created a PDF file that has several button programed in Javascript to print a page or page range in the file.  It works great in Windows and Mac but in Ubuntu Linux there is a problem.  When you hit the button it brings up the Print window but it has all pages set to print instead of the 1 or 2 pages it is programed to print.  How do you fix this.  I used the following Javascript.  Please help.
    this.print({
    bUI: true,
    bSilent: true,
    bShrinkToFit: true,
    nStart: 1,
    nEnd: 1
    This is supposed to print only page 2 of the document but in Adobe Reader in Linux it wants to print page 1-12.  Apparently the nStart and nEnd does not work.  Is there another way to do this so it will work in Ubuntu Linux.
    Thanks

    I suspect that the problem has to do with the added security
    included in Flash 8 and above that restricts javascript. If you
    search the flash player KnowledgeBase on Adobe.com you'll find more
    detailed information about fixes, but here is what worked for my
    Javascripted items.
    Find your Program Files > Adobe > Adobe Captivate 4
    > Templates > Publish folder. Within the folder is a
    standard.htm file. Open this file (for this simple task, i just use
    notepad). In the script section, add...
    so.addParam("allowScriptAccess", "always");
    you'll see other similar param declarations. It doesn't
    matter the order.
    You can edit the individual .htm file if you want to test
    this first.
    That should do it.
    Here is the KB article that discusses the security features
    in greater detail:
    http://www.adobe.com/devnet/flashplayer/articles/secure_swf_apps_04.html

  • Ubuntu Linux for S12 with VIA Nano?

    Hi,
    I'm thinking about buying an S12 with VIA Nano, but would like to install UBUNTU Linux to double-boot with WinXP. Is this possible? Any potential problems of Ubuntu with the Via Nano CPU?
    Thanks,
    Tolga

    Hi and welcome , similar quest could help to find the answer..
    Kubuntu S12 Via
     if you dont want to have a desaster... i prefer to backup the whole harddrive before you install ... if something goes wrong while install...you have a rescue belt...
    or give WUBI a chance install Ubuntu as a deinstallable program inside XP
     http://wubi-installer.org/ 
    without fear to loose your recover part...
    sincerely KalvinKlein
    Want more ? For further information to get the most of your S-Class machine
    Lenovo Energymanagement 
    Backup
    Windows 7
    Clean XP Install
    XP Startup
    Small WebCam Guide
    Lenovo Easy Capture
    Thinkies 2x X200s/X301 8GB 256GB SSD @ Win 7 64
    Ideas Centre A520 ,Yoga 2 256GB SSD,Yoga 2 tablet @ Win 8.1

  • How to Change or Use Browser for WebDynPro In Ubuntu(Linux)???

    Dear Experts,
                      I want to know how to use webdynpro in Ubuntu(Linux) OS, when i select 'test' it shows Browser started in Status bar but browser is not open, but when i copy and paste the URL in address bar it opens, please help me how to use in Ubuntu.
    Best Regards,
    Kavin L

    This post helped me.
    https://code.google.com/p/chromium/issues/detail?id=147510
    Basically, the "Search in Google" extension is from Safari and it can be disabled in System Preferences.
    System Preferences -> Keyboard -> Keyboard Shortcuts -> Services -> Searching and unchecking "Search with Google"
    It worked for me and I also disabled a few other right-click options that I never use.

Maybe you are looking for

  • Sharepoint Foundation 2013 Configure Search Navigation

    I am testing out the search feature of Foundation 2013 and I want to allow my users to refine their searches via Result Sources.  From the instructions that I have read I should be able to do this in the Global Search Results page that I created -> S

  • Report with project name and stock

    Please suggest a report to get project (WBS) and stock

  • What does the orange light on the power cord mean?

    i have a brand new Macbook and am charging it for the second time but when I plug it in the power adaptor goes green then orange? Anyone know what this is? i do not see anything about this online or in the manual. thanks, mark

  • While statement

    Hi, I have a while statement and within this a return statement, but when i compile this it produces an error - missing return statement. This is my code: public double getResults() { // Open getResults method while ( i >= 10 ) { // Open while i++; r

  • My finder is not opening at all. Can't see desktop either.

    My Finder stopped working. It won't open a new window, create folders on desktop, or even let me see the desktop. I don't know what could have caused it, but it's annoying. I can access finder from different users on my computer, but the account that