Software :: Install Perforce Visual Client (P4V)

Feb 7, 2010

how to install The Perforce Visual Client (P4V): for linux, Ubuntu [URL]... Linux kernel 2.6 for 32-bit Intel (x86)[URL]...

View 1 Replies


ADVERTISEMENT

Ubuntu Servers :: Configure For Remote TCP/IP Client Conncections Using MS Visual Basic OLE DB C

Mar 9, 2011

I'm trying to get a VB program to make a client connection to my PostgreSQL server running on an Ubuntu 10.10 server. Here's what I've done: Client side - installed and registered the OLE DB .dll's from the PostgreSQL OLE DB Provider project. server side - the configuration described here: [URL]... Have added this line to postgresql.conf:

listen_addresses = '*, 144.96.80.35, localhost'
I've also tried this as simply:
listen_addresses = '144.96.80.35, localhost'
also, port = 5432
I have added the following to pg_hba.conf:
# IPv4 local connections:

[Code]...

View 6 Replies View Related

Ubuntu :: How To Install Microsoft Visual Basic

Jan 18, 2010

How do I install microsoft visual basic on ubuntu....(using wine etc)

View 4 Replies View Related

Fedora :: Nvidia (GeForce Go 7900 GTX) Driver Install Ok But No GLX Visual

Feb 11, 2010

I've enjoyed accelerated 3d graphics for years with this laptop, but since moving from CentOS 5.3 to FC12 I have had no 3d or opengl working at all.My install seems good. I'm running right now with the 'nvidia' driver in 1920x1200 res with no real problems except the lack of 3d. I have just finished trawling the forums again, coming back to: F12,F11 & F10 Nvidia driver guides [URL] I uninstalled all my nvidia packages, re-installed only "kmod-nvidia xorg-x11-drv-nvidia-libs.i686" and dependencies, ensured 'nvidia' was my selected driver in xorg.conf (using nvidia-config-display disable, then enable), and rebooted, and still no joy. No errors in Xorg.0.log. My 'glx' extension is loaded. 'nouveau' is rdblacklisted. SELinux is disabled. I have 3Gb RAM and so have chosen not to use the PAE kernel or modules.

Code:

[neek@uberneek ~]$ glxinfo
name of display: :0.0
Error: couldn't find RGB GLX visual or fbconfig

[code]....

View 4 Replies View Related

General :: Driver To Install So I Can Enable Extra Visual Effects?

Apr 20, 2010

I want to enable extra visual effects on my Laptop but when I select it a windows pops up saying 'Desktop Effects could not be enabled'
explain it in dummies terms i am 14 and just learning the basics of linux

View 2 Replies View Related

Hardware :: Cannot Install Drivers On Video Card That Enable Visual Effects

Feb 3, 2010

I have ubuntu 9.10 I have the ATI Technologies Inc Mobility Radeon HD 3600 Series [1002:9598]video card. I dont know what it is but i want to enable extra visual effects. unfortunally a message stating "searching for drivers" appears, eventuall folowed by " Visual Effects can not be enabled" i think this is due to the drivers obviosly.

what are the drivers I need for linux (if any) for my specific video card? what do I need to do? also which video card are best fit for ubuntu/ linux? note: I dont know what it is, but originally when I first installed ubuntu I did something and the visual effects had worked had worked and up until recently i may or may not have of messed with any thing could i have of touched something

View 1 Replies View Related

Ubuntu :: Turn On Visual Effects It Gave Prompt To Install An NVidia Driver?

Jun 28, 2010

I'm currently running 10.04, when I went to go turn on visual effects it gave me a prompt to install an nVidia driver, after installation was complete it said I had to restart. When I start it up the screen flickers from being on and off, it then finally stops at being on but nothing shows up. Please help. My graphics card is nVidia G210M. Sony Vaio.

View 4 Replies View Related

Fedora :: Install Visual Affects In Fedora?

May 12, 2010

i need some visual affect for fedora 12.if have tried ubuntu then you are familiar with a rubber visual affect in ubuntu so where is the visual affect option in fedora

View 5 Replies View Related

OpenSUSE Install :: Can't Login After Install Novel Client For 2.0-SP2

Apr 17, 2011

I install Novell-Client-2.0-sp2-sle11-i586.iso for Linux on My IBM T23 with SUSE 11.2. I test it with Open Server 6.5 SP8 and SUSE Enterprise 11 both have Novell eDirectory 8.8.Know I can't login I get a error message "Module in unknown" can't you help?

View 1 Replies View Related

Networking :: Connecting Debian Client To Voyager Client Via Crossover Cable?

Jan 6, 2011

trying to create a "local network" by directly connecting an IBM Thinkpad with Debian Linux installed on it to an Alix computer running Voyager Linux. I'm following a "how to" I found to create a music server, hence the requirement. My issue is I can't get a static IP address to be configured on the Debian machine.I've trawled the net and have found the instructions about editing the /etc/network/interfaces and have tried to do this. First I tried to get DHCP working so I could connect the Debian machine to the net and this proved successful. I edited the interfaces file to look as follows:

# The loopback network interface
auto lo
iface lo inet loopback
auto eth0
iface eth0 inet dhcp

Then I tried adding a static IP address to the machine. As this is a network purely between two machines I made up the IP addres and used 192.168.0.1 and used a NetMask calculator to give me a NetMask of 255.255.255.254 (I told the calculator there would be 2 machines on the network). I then edited the interfaces file as follows:

# The loopback network interface
auto lo
iface lo inet loopback

[code]....

I re-booted the machine (ifdown eth0 followed by ifup eth0 keeps saying that eth0 hasn't been configured - a problem there that I don't understand), but during boot up time it failed to assign the Static IP address to eth0 and made me go into SU mode. To fix it I simply replaced the interface file with the static IP inputs with the file that had the DHCP entries (I'd made a copy of the DHCP file), and re-started the machine. Everthing came up fine. So the first question is how do I get a static IP address to be assigned to eth0 such that whenever I shut down and restart the machine the static IP address is always loaded?

The second question is around creating the network via the cross over cable. From what I've found via Google, all I should have to do is create a static IP address on the Debian machine and a static IP address on the Voyager machine. Once they're connected by the cross over cable they should see each other. Is that correct, or do I have to do anything else?

View 2 Replies View Related

Programming :: Detect A Closed Tcp Client Connection When Client Is Only Receiving Data ?

Mar 9, 2011

I am writing a TCP server in C, and the server listens to incoming client connections and accepts them. It then creates a thread to handle the client. The clients are expected to only receive data from my server and not send any data. So if I use a select() call with a recv(), I believe that the recv() will just block forever since there will not be any data coming from the client. If I use a non-blocking recv(), then this will just return a 0 which tells me nothing because the client is not expected to send any data. I am not sure if I have misunderstood some socket concepts, but I need a solution to detect when the client has disconnected so that I can close the socket and stop sending data to the client. As I understand it, simple ACKs etc are not captured by the recv(), and only data sent by the client will cause recv() to return a non-zero value, so I am not sure how to know when the client has disconnected.

View 7 Replies View Related

Ubuntu Servers :: 11.04 LTSP Connect Client Hard Drive - Register In The Fstab On The Client?

May 26, 2011

I have configured server ubuntu 11.04. Everything works fine, but there is a need for some clients to connect local hard drive. What should I do? How and what modules are added to the ltsp-image? How to register in the fstab on the client? Maybe I'm going the wrong way?

View 1 Replies View Related

Fedora :: Remote Desktop Client (RDP) Aka Terminal Services Client?

Nov 25, 2009

Is there a good terminal services client available I can connect to my Windows boxes from Fedora12? I am willing to pay for a commercial license if there is a good one

View 7 Replies View Related

Fedora :: Possible To Install TightVNC-client?

Dec 24, 2009

I'm accustomed to using the tightvnc client to view servers running vnc. Since installing Fedora, I see that it uses Tigervnc for everything, and there is no tightvnc client available. Normally, this wouldn't be a problem, especially since Tigervnc seems more functional. The problem I'm having is that there are "artifacts" when using tigervnc to connect to one of my servers. It's so bad, that I can hardly use it to view that server. I've tried to change some of the options in tigervnc, but the app just crashes when I try to save the changes.

Anyone else experience this problem with tightvnc? Anyone tried installing one of the old tightvnc packages from rpmfind.net or rpm.pbone.net?

View 11 Replies View Related

OpenSUSE :: How To Install Amanda Client 3.2

Oct 23, 2010

I'm trying to install the client but getting failed dependencies:

libcrypto.so.0.9.7 is needed by amanda-backup_client-3.2.0-1.suse10.0.i586
libcurl.so.3 is needed by amanda-backup_client-3.2.0-1.suse10.0.i586
libssl.so.0.9.7 is needed by amanda-backup_client-3.2.0-1.suse10.0.i586

where to find those files and how to install them? I'm running OpenSuSE 11.1

View 6 Replies View Related

OpenSUSE :: Install Novell Client On 11.3

Nov 9, 2010

Is it possible to get the novell Client work on openSUSE 11.3(KDE)?

View 1 Replies View Related

Ubuntu :: Install And Get MCL MUD Client To Work?

Apr 14, 2011

Http://www.andreasen.org/mcl/

I'm a little confused how you get this to work.

View 2 Replies View Related

Debian :: Install Citrix ICA Client Under Lenny?

Jan 26, 2011

Which is the best way to install citrix ICA client under Lenny?

View 4 Replies View Related

Debian :: Install Thunderbird Email.client?

Aug 8, 2011

I downloaded it

Where is it?

How do I install it?

View 3 Replies View Related

Debian Multimedia :: Another Xterm Client Install Under KDE

Jun 18, 2010

I have installed squeeze with KDE. I have xterm bugs, this last kill alone with command apt-get, the xterm is killed! There are another xterm client that I install under KDE?
>> apt-get install another xterm ........

View 14 Replies View Related

Fedora :: Install The Folding@Home Client On X64 14 Box?

Mar 24, 2011

I am trying to install the Folding@Home client on my x64 fedora 14 box. I am used to in ubuntu where all one would do was install the package "origami" and you just send 2 commands after to set name/team and the initial start and that was all.

such package doesn't exist for fedora, or so it seems.

is there such a package in the fedora world? if not, how do i go about setting it so it is installed and automatically runs upon startup?

View 5 Replies View Related

OpenSUSE Install :: DHCP4 Client Not Running?

Dec 2, 2009

My OpenSUSE 11.1 boot sequence pauses for 20 seconds (you can see the countdown in the log) when trying to start the DHCP4 client, and then fails to start it:

Code:
Setting up (localfs) network interfaces:
lo
lo IP address: 127.0.0.1/8
IP address: 127.0.0.2/8

[Code]...

View 3 Replies View Related

OpenSUSE Install :: Nfs Client Hangs System?

Aug 25, 2010

nfs client hangs system for 3 to 5 minutes during boot, Does any one have any clues?

The last message before the hang is 'Starting NFS client services: sm-notify idmapd'.

My fstab looks like this:/dev/system/swap swap swap defaults 0 0
/dev/system2/swap swap swap defaults 0 0
/dev/system2/root / ext4 acl,user_xattr 1 1

[Code]....

View 2 Replies View Related

Ubuntu One :: Cannot Install Ubuntuone-client-gnome?

Feb 27, 2010

I signed up for Ubuntu One, but I am unable to install the ubuntuone-client-gnome. When I click on it, it does nothing. I installed the ppa .deb files. What do I do

View 2 Replies View Related

Ubuntu :: How To Install Pidgin Chat Client

Apr 4, 2010

how can i install pidgin chat client on ubuntu

View 1 Replies View Related

Ubuntu :: How To Install AS400 Client (iSeriesAccess) In 10.04

Jul 19, 2010

Im trying to install iSeriesAccess in ubuntu 10.04. I have found some articles in installing iSeriesAccess in older versions in ubuntu. but unfortunately those steps did not work with 10.04. this is the article that i have followed URL...

View 3 Replies View Related

Ubuntu Servers :: OpenLDAP Install 10.04 And Client?

Nov 15, 2010

There are several parts of problems in my question.

1. Install openLDAP and authenticate clients

2. Simple way to authenticate Ubuntu clients (just like Windows simple domain model, but Linux)

Part 1 What I have done: I have been working on openLDAP for the past 4 weeks. There is a lot of information on LDAP and I have read a lot of it There are several guides out there for openLDAP installation on Ubuntu, and I have tried many of them, and reinstalled the server between tests.

[Code]...

Part 2 Simple way to authenticate Ubuntu clients (just like Windows simple domain model, but Linux)

I have tried to find something similar to Windows client login, but haven't found anything that works. I just need to be pointed to somewhere to read about the authentication model in Linux. I can work out my from there. It must be something very simple I am missing, because when I read som echapters in The Ubunutu Bible, I can't find anything on it.

View 9 Replies View Related

Ubuntu :: Install Torrent Client On External HD

Aug 13, 2011

I have Ubuntu on my notebook. I wanted to install a torrent client on my external HDD. Can I install a client and then just move it to the HDD?If so, how can I find where the app is installed? I really think that synaptic should show me where the hell it installed the application.

View 5 Replies View Related

Debian :: Install Citrix Client Automatically?

Mar 1, 2011

Howto install citrix client from:

[URL]

automatically, without asking for anything?

If I try:

Code:
# dpkg -i icaclient_11.100_i386.patched.deb
then I get a window with the LICENSE AGREEMENT.

View 4 Replies View Related

General :: Install Knock Client On Ubuntu 10.04?

May 27, 2011

install knock client on ubuntu 10.04?

View 3 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved