Can i use linux

have LV for linux 5.1 but i would like to use a GPIB board 778032-01 in that enviroment, can GPIB driver support that or what do i have to download?

The NI suite I received from NI includes an RPM for GPIB. It is installed in /etc/rc.d/init.d/ and so if installed, should run on boot. If it doesn't then you need to run, in su mode# service gpib start
I have run everything NI successfully on the Mandriva distro.
I have to admit that it took two years of asking to receive the CDROM from NI. :-(
:-) Peter
:-) Peter

Similar Messages

  • Can I use Linux Lubuntu 14.10 software

    Can I use Linux Lubuntu 14.10 software.On my HP ALL -IN -ONE HP DESKJET F2200 All In One, series

    Hello @BigLDavid, 
    Welcome to the HP forums.
    I understand that you are running a Linux operating system, and would like to use your Deskjet F2200 with it.
    I would like to help.
    It is hard to give a yes or no answer with an open source operating system.
    If your OS has the HPLIP software installed, you should be able to use that printer.
    Chances are your version of Linux already has the HPLIP software installed.
    If it does not please use the following link.
    HP Linux Imaging and Printing
    Aardvark1
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!

  • Can I use LINUX Drivers in Solaris 10...

    As a beginner, I have installed Solaris 10 version 08/07 onto my system. The motherboard is ASUS M2A-VM, with integrated graphics, network interface, audio, etc...
    My audio and network interface are not working... The motherboard came with a cd which has windows drivers and additional software.
    It also has linux drivers for:
    Audio:
    Core5
    Core6
    Linux
    RHEL4
    SUSE10
    Other
    realtek-linux-audiopack-4.05f
    LAN
    FreeBSD
    Linux
    SCO_OpenServer6
    Unixware7.x
    Chipset, and RAID!
    Has anyone used any of these ASUS Linux drivers with Solaris...
    If so what steps do I need to take to get them to work on my system! (I hate to ask, I know you all have better things to do) Maybe you can point me to a good book that explains how to go step by step...
    My question is how do I get my NIC to work (What steps do I need to follow? the sound is not an issue, as, I can do with out that. Will any of the drivers mentioned above work?) thank you in advance for your answers...

    Drivers are the "connective tissue" between the Operating System and the hardware. The connections from the drivers to the OS are not compatible between different operating systems, so no, you cannot use Linux drivers in Solaris.
    If the OS is similar enough you can sometimes get away with it -- example, using Solaris 9 drivers in Solaris 10. But between completely different OSes? Won't work.

  • Can I use Linux next to mountain lion on my MBP? if so, how to install...

    I have a MBP 2.9 GHz Intel Core i7 OSX 10.8.3 and like to add Linux to my machine. Is that possible, and if so, what is the best way to go about installing this?
    DJSMID

    Read threads listed over on the right under the heading More Like This, especially the last one.
    Allan

  • How to use Linux OS parallel with Windows

    I've been using my laptop(P500) for a year and half now, It has been Windows 8 since then. I need to use Linux OS (CentOS) for my studies. How can I use Linux and Windows 8 on the same device?
    There are 2 drives; C: 650GB and D: 24GB

    It sounds like a problem of advanced network parameter settings.
    You can start "Interface Configuration Utility", choose the port and select "Edit", then choose "Advanced..." button to have "Advanced Stack Configuration" dialog.
    Change values to:
    T1 0x40000,
    T2 0x40000,
    T3 0x30000,
    Slot Time 5
    Click OK to close "Interface Configuration Utility", and run NI-FBUS CM or Configurator to check whether it helps.
    If you have 3.0 or 3.1 version, you just choose the "Old Default" button to set the values automatically.

  • How can I use Drap and Drop in Linux system?

    I try to use DnD in a item from "explorer" in Linux into my application, but it does atually not work. The same version is work well on Windows. Below is code (3 separated files):
    * FileAndTextTransferHandler.java is used by the 1.4
    * DragFileDemo.java example.
    import java.io.*;
    import java.util.*;
    import java.awt.*;
    import java.awt.datatransfer.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.text.*;
    class FileAndTextTransferHandler extends TransferHandler {
        private DataFlavor fileFlavor, stringFlavor;
        private TabbedPaneController tpc;
        private JTextArea source;
        private boolean shouldRemove;
        protected String newline = "\n";
        //Start and end position in the source text.
        //We need this information when performing a MOVE
        //in order to remove the dragged text from the source.
        Position p0 = null, p1 = null;
        FileAndTextTransferHandler(TabbedPaneController t) {
           tpc = t;
           fileFlavor = DataFlavor.javaFileListFlavor;
           stringFlavor = DataFlavor.stringFlavor;
        public boolean importData(JComponent c, Transferable t) {
            JTextArea tc;
            if (!canImport(c, t.getTransferDataFlavors())) {
                return false;
            //A real application would load the file in another
            //thread in order to not block the UI.  This step
            //was omitted here to simplify the code.
            try {
                if (hasFileFlavor(t.getTransferDataFlavors())) {
                    String str = null;
                    java.util.List files =
                         (java.util.List)t.getTransferData(fileFlavor);
                    for (int i = 0; i < files.size(); i++) {
                        File file = (File)files.get(i);
                        //Tell the tabbedpane controller to add
                        //a new tab with the name of this file
                        //on the tab.  The text area that will
                        //display the contents of the file is returned.
                        tc = tpc.addTab(file.toString());
                        BufferedReader in = null;
                        try {
                            in = new BufferedReader(new FileReader(file));
                            while ((str = in.readLine()) != null) {
                                tc.append(str + newline);
                        } catch (IOException ioe) {
                            System.out.println(
                              "importData: Unable to read from file " +
                               file.toString());
                        } finally {
                            if (in != null) {
                                try {
                                    in.close();
                                } catch (IOException ioe) {
                                     System.out.println(
                                      "importData: Unable to close file " +
                                       file.toString());
                    return true;
                } else if (hasStringFlavor(t.getTransferDataFlavors())) {
                    tc = (JTextArea)c;
                    if (tc.equals(source) && (tc.getCaretPosition() >= p0.getOffset()) &&
                                             (tc.getCaretPosition() <= p1.getOffset())) {
                        shouldRemove = false;
                        return true;
                    String str = (String)t.getTransferData(stringFlavor);
                    tc.replaceSelection(str);
                    return true;
            } catch (UnsupportedFlavorException ufe) {
                System.out.println("importData: unsupported data flavor");
            } catch (IOException ieo) {
                System.out.println("importData: I/O exception");
            return false;
        protected Transferable createTransferable(JComponent c) {
            source = (JTextArea)c;
            int start = source.getSelectionStart();
            int end = source.getSelectionEnd();
            Document doc = source.getDocument();
            if (start == end) {
                return null;
            try {
                p0 = doc.createPosition(start);
                p1 = doc.createPosition(end);
            } catch (BadLocationException e) {
                System.out.println(
                  "Can't create position - unable to remove text from source.");
            shouldRemove = true;
            String data = source.getSelectedText();
            return new StringSelection(data);
        public int getSourceActions(JComponent c) {
            return COPY_OR_MOVE;
        //Remove the old text if the action is a MOVE.
        //However, we do not allow dropping on top of the selected text,
        //so in that case do nothing.
        protected void exportDone(JComponent c, Transferable data, int action) {
            if (shouldRemove && (action == MOVE)) {
                if ((p0 != null) && (p1 != null) &&
                    (p0.getOffset() != p1.getOffset())) {
                    try {
                        JTextComponent tc = (JTextComponent)c;
                        tc.getDocument().remove(
                           p0.getOffset(), p1.getOffset() - p0.getOffset());
                    } catch (BadLocationException e) {
                        System.out.println("Can't remove text from source.");
            source = null;
        public boolean canImport(JComponent c, DataFlavor[] flavors) {
            if (hasFileFlavor(flavors))   { return true; }
            if (hasStringFlavor(flavors)) { return true; }
            return false;
        private boolean hasFileFlavor(DataFlavor[] flavors) {
            for (int i = 0; i < flavors.length; i++) {
                if (fileFlavor.equals(flavors)) {
    return true;
    return false;
    private boolean hasStringFlavor(DataFlavor[] flavors) {
    for (int i = 0; i < flavors.length; i++) {
    if (stringFlavor.equals(flavors[i])) {
    return true;
    return false;
    * TabbedPaneController.java is used by the 1.4
    * DragFileDemo.java example.
    import java.awt.event.*;
    import java.awt.*;
    import javax.swing.*;
    * Class that manages area where the contents of
    * files are displayed.  When no files are present,
    * there is a simple JTextArea instructing users
    * to drop a file.  As soon as a file is dropped,
    * a JTabbedPane is placed into the window and
    * each file is displayed under its own tab.
    * When all the files are removed, the JTabbedPane
    * is removed from the window and the simple
    * JTextArea is again displayed.
    public class TabbedPaneController {
        JPanel tabbedPanel = null;
        JTabbedPane tabbedPane;
        JPanel emptyFilePanel = null;
        JTextArea emptyFileArea = null;
        FileAndTextTransferHandler transferHandler;
        boolean noFiles = true;
        String fileSeparator;
        public TabbedPaneController(JTabbedPane tb, JPanel tp) {
            tabbedPane = tb;
            tabbedPanel = tp;
            transferHandler = new FileAndTextTransferHandler(this);
            fileSeparator = System.getProperty("file.separator");
            //The split method in the String class uses
            //regular expressions to define the text used for
            //the split.  The forward slash "\" is a special
            //character and must be escaped.  Some look and feels,
            //such as Microsoft Windows, use the forward slash to
            //delimit the path.
            if ("\\".equals(fileSeparator)) {
                fileSeparator = "\\\\";
            init();
        public JTextArea addTab(String filename) {
            if (noFiles) {
                tabbedPanel.remove(emptyFilePanel);
                tabbedPanel.add(tabbedPane, BorderLayout.CENTER);
                noFiles = false;
            String[] str = filename.split(fileSeparator);
            return makeTextPanel(str[str.length-1], filename);
        //Remove all tabs and their components, then put the default
        //file area back.
        public void clearAll() {
            if (noFiles == false) {
                tabbedPane.removeAll();
                tabbedPanel.remove(tabbedPane);
            init();
        private void init() {
            String defaultText =
                "Select one or more files from the file chooser and drop here...";
            noFiles = true;
            if (emptyFilePanel == null) {
                emptyFileArea = new JTextArea(20,15);
                emptyFileArea.setEditable(false);
                emptyFileArea.setDragEnabled(true);
                emptyFileArea.setTransferHandler(transferHandler);
                emptyFileArea.setMargin(new Insets(5,5,5,5));
                JScrollPane fileScrollPane = new JScrollPane(emptyFileArea);
                emptyFilePanel = new JPanel(new BorderLayout(), false);
                emptyFilePanel.add(fileScrollPane, BorderLayout.CENTER);
            tabbedPanel.add(emptyFilePanel, BorderLayout.CENTER);
            tabbedPanel.repaint();
            emptyFileArea.setText(defaultText);
        protected JTextArea makeTextPanel(String name, String toolTip) {
            JTextArea fileArea = new JTextArea(20,15);
            fileArea.setDragEnabled(true);
            fileArea.setTransferHandler(transferHandler);
            fileArea.setMargin(new Insets(5,5,5,5));
            JScrollPane fileScrollPane = new JScrollPane(fileArea);
            tabbedPane.addTab(name, null, (Component)fileScrollPane, toolTip);
            tabbedPane.setSelectedComponent((Component)fileScrollPane);
            return fileArea;
    * DragFileDemo.java is a 1.4 example that
    * requires the following file:
    *    FileAndTextTransferHandler.java
    *    TabbedPaneController.java
    import java.awt.event.*;
    import java.awt.*;
    import javax.swing.*;
    public class DragFileDemo extends JPanel
                              implements ActionListener {
        JTextArea fileArea;
        JFileChooser fc;
        JButton clear;
        TabbedPaneController tpc;
        public DragFileDemo() {
            super(new BorderLayout());
            fc = new JFileChooser();;
            fc.setMultiSelectionEnabled(true);
            fc.setDragEnabled(true);
            fc.setControlButtonsAreShown(false);
            JPanel fcPanel = new JPanel(new BorderLayout());
            fcPanel.add(fc, BorderLayout.CENTER);
            clear = new JButton("Clear All");
            clear.addActionListener(this);
            JPanel buttonPanel = new JPanel(new BorderLayout());
            buttonPanel.setBorder(BorderFactory.createEmptyBorder(5,5,5,5));
            buttonPanel.add(clear, BorderLayout.LINE_END);
            JPanel upperPanel = new JPanel(new BorderLayout());
            upperPanel.setBorder(BorderFactory.createEmptyBorder(5,5,5,5));
            upperPanel.add(fcPanel, BorderLayout.CENTER);
            upperPanel.add(buttonPanel, BorderLayout.PAGE_END);
            //The TabbedPaneController manages the panel that
            //contains the tabbed pane.  When there are no files
            //the panel contains a plain text area.  Then, as
            //files are dropped onto the area, the tabbed panel
            //replaces the file area.
            JTabbedPane tabbedPane = new JTabbedPane();
            JPanel tabPanel = new JPanel(new BorderLayout());
            tabPanel.setBorder(BorderFactory.createEmptyBorder(5,5,5,5));
            tpc = new TabbedPaneController(tabbedPane, tabPanel);
            JSplitPane splitPane = new JSplitPane(JSplitPane.VERTICAL_SPLIT,
                upperPanel, tabPanel);
            splitPane.setDividerLocation(400);
            splitPane.setPreferredSize(new Dimension(530, 650));
            add(splitPane, BorderLayout.CENTER);
        public void setDefaultButton() {
            getRootPane().setDefaultButton(clear);
        public void actionPerformed(ActionEvent e) {
            if (e.getSource() == clear) {
                tpc.clearAll();
         * Create the GUI and show it.  For thread safety,
         * this method should be invoked from the
         * event-dispatching thread.
        private static void createAndShowGUI() {
            //Make sure we have nice window decorations.
            JFrame.setDefaultLookAndFeelDecorated(true);
            //Create and set up the window.
            JFrame frame = new JFrame("DragFileDemo");
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            //Create and set up the menu bar and content pane.
            DragFileDemo demo = new DragFileDemo();
            demo.setOpaque(true); //content panes must be opaque
            frame.setContentPane(demo);
            //Display the window.
            frame.pack();
            frame.setVisible(true);
            demo.setDefaultButton();
        public static void main(String[] args) {
            //Schedule a job for the event-dispatching thread:
            //creating and showing this application's GUI.
            javax.swing.SwingUtilities.invokeLater(new Runnable() {
                public void run() {
                    createAndShowGUI();

    I'm currently using Linux Fedora system.
    Doesn't matter. There's no standard way for D&D on Linux, no single API.
    Every application has its own mechanism which may or may not be compatible with any other.
    Gnome and KDE groups are doing some work to provide a common standard but as you know the Linux zealots are completely opposed to anyone telling them what to do (such as creating standards) and won't in general follow them.

  • How can I use Boot Camp with Linux?

    How can I load Linux into Boot Camp on my iMac and Macbook Pro?

    PBern80 wrote:
    How can I load Linux into Boot Camp on my iMac and Macbook Pro?
    Use a virtual machine like Fusion, Parallels, or VirtualBox to install Linux. You can not use Bootcamp.

  • HT5639 Can I use Boot Camp to install Linux on my MacBook Pro?

    Can I use Boot Camp to install Linux on my MacBook Pro?

    Welcome to the Apple Support Communities
    Boot Camp wasn't designed to install Linux. Apart from that, the Boot Camp version included in OS X Mountain Lion will ask you to insert a Windows 7 or Windows 8 DVD in order to run Boot Camp, as far as I know.
    Apple doesn't support Linux on Macs, but it works properly on Macs. There are a lot of how-to's in the Internet about the steps to install Linux and the different possibilities you have. Also, what distribution do you want to install on the computer? You should also consider the option to install Linux on a virtual machine

  • How can use linux in my macbook?

    how can use linux in my macbook?

    You can use various distributions of Linux either by running them under Boot Camp, or in a virtualized environment such as Parallels or VMWare's Fusion. Note that you may have to try several different distros until you find one that works. I settled on Ubuntu running under Parallels.
    Best of luck.

  • Hi, i have zte open c with Fos 1.3 and there is no russian keyboard in settings, how can i install it? (i do not use linux) may be there is firmware update?

    hi, i have zte open c with Fos 1.3 and there is no russian keyboard in settings (rus locale working fine), how can i install it? (i do not use linux) may be there is firmware update or something in market?

    To give an update on this issue, here is the latest information I have:
    "Indeed the current eBay Open C doesn't come with root privilege. Now ZTE is going to put an engineering build on their website for users to download and flash."
    I will update this thread as I know more information. Thank you for your patience.
    - Ralph

  • Can i use vps's for linux edge server's???

    I can stream to edge server on fme------>windows7-edge ------> origin-linux-dedicated--and or--vps------>website works...
    but cant do fme---->linix-edge-vps------>linux-orgin-dedicated--or----vps------>website Doesnt work
    nore can i do fme------>linux-edge-vps--->windows7-origin---->website Doesnt work
    All using latest centos tried and same results with ununtu
    so am i out of luck for using vps's?
    any help would be great thanks

    yeah no that doesn't work but get this...
    when i publish to windows edge server the signal gets sent to origin vps  then to viewers...
    but if i make windows origin and vps edge server is does not work dont understand why this is happening
    Date: Wed, 22 Dec 2010 01:45:19 -0700
    From: [email protected]
    To: [email protected]
    Subject: can i use vps's for linux edge server's???
    I agree load balancing part but load balancing should be done in context of subscribing and not in terms of publishing. You can do failover in context of publishing using Multi-point publish.
    If you publish directly to origin and then introduce edge servers for subscribing do you still face issue.
    I mean if you set up your linux VPS as edge and then subscriber goes through that edge - say like rtmp://linuxedge/?rtmp://origin/live - does this work?
    Can you try that out and let me know.
    >

  • Can I use NI pcie-1430 in linux ?

           I want to  use NI pcie-1430 in linux environment or a embed linux,. But I don't know if i can get a linux driver and how can i get.
          Thanks!.

    Has this changed since the orignal post? it's been 5 years, so I would hope NI would branch out a little and support linux for high speed image acqusition, MATLAB does.

  • Can i use itunes on linux ....how

    can i use itunes on linux ....how

    Yes, although not natively. You can install iTunes under the Wine framework (see http://www.junauza.com/2010/07/how-to-install-itunes-on-ubuntu-linux.html). Wine allows Linux to run Windows applications by doing a  translation of Windows APIs to the equivalent Linux system calls.
    You could also install a Windows Virtual Box using VMWare or Virtual Box, and then install iTunes in the VM.

  • Can you use *Active Directory* in *Linux* as a directory server?

    This is a simple question that I just couldn't find a straight answer to on Google, Oracle forums, Metalink, etc. ... when I use the Net Configuration Assistant on my Linux server, the only option that exists for Directory Usage Configuration -&gt; Directory Type is Oracle Internet Directory. In Windows, however, OID and Active Directory appear as the available options. I can't find an obvious answer to whether AD will work in Linux as a directory option. Does it? If not, is there an add-on or option that I'm missing? Our company only uses Linux hosts for Oracle purposes, and only has Active Directory for directory usage.
    I was also thinking of tweaking ldap.ora and sqlnet.ora to utilize our Active Directory server(s), but I wasn't sure how to manually configure those. Is there a paper out there for more information on such a thing?
    My intention is to synchronize our users in Oracle with AD, so there will be no password and maintenance discrepancies. All of our other applications (Windows, websites, GUIs, etc.) authenticate against AD, and I wanted to tie Oracle in to wrap up user maintenance up in a nice, neat package.
    Thanks ahead of time.

    Any thoughts on this? I'm kind of bumping it back to the top, because I still can't find any definitive evidence regarding this anywhere on the 'net. Am I phrasing something in a hazy manner? Is there something I can clarify?
    Thanks.

  • Can I use Creative Cloud Applications on LINUX through Wine as It is possible now with box versions?

    as in title:
    Can I use Creative Cloud Applications on LINUX through Wine as It is possible now with box versions?
    Are there any things to consider / do differently?

    You are certainly welcome to try.  We have not tested this environment in anyway and you may face difficulties with Adobe Creative applications that require heavy use of the CPU.  I also would be surprised if Acrobat could be installed in this environment due to it's dependencies to system resources.

Maybe you are looking for