OpenSUSE :: Wine Installation And Implementation?

May 11, 2010

i have done everything that all the documentations have said and i still cant get this bloody thing working. some one give me the exact commands that removes all traces of all wine packages. and then can someone give me the exact commands to install.

which user i must be doing this under and exactly what i must configure in the config files. all that i want too accomplish by this is to successfully play games on my pc.

View 5 Replies


ADVERTISEMENT

OpenSUSE :: After Applying The Latest Wine Update Mouse Cursor In Wine Windows Is Now Purple/magenta/pink

Oct 19, 2009

I don't know if it's just my system, but after applying the latest Wine update, the mouse cursor in Wine windows is now purple/magenta/pink, whatever. Not a big problem, just annoying. I've looked through the various config files in ~home and /usr/share/wine, and can't find any parameter that might even remotely address this.

View 4 Replies View Related

General :: Wireless Implementation In Ns2?

Feb 5, 2011

not able to solve an error when i try to do a wireless scenario in ns2.

num_nodes is set 3
warning: Please use -channel as shown in tcl/ex/wireless-mitf.tcl
INITIALIZE THE LIST xListHead

View 2 Replies View Related

Programming :: Implementation Of RSA Algorithm In C / C++

Aug 2, 2010

Can I know the implemention of RSA(Encryption and decryption) algorithm in C / C++.

View 1 Replies View Related

Programming :: MD5 Algorithm Implementation

Apr 27, 2011

I have a copy of the MD5 algorithm and I'm taking a look at the source. It's pretty interesting but there are a few things that I'm curious about and I was wondering if anyone a bit more intuitive than I could help me out.The function declarations in the MD5 files are a bit unfamiliar to me. There is a macro used called PROTO_LIST, which I'm still not sure as to what this thing is doing exactly, but it's littered everywhere throughout the source.The signature here isn't too unfamiliar to me with the exception of the position of the PROTO_LIST macro. So here is a function with an unnamed argument of type MD5_CTX*.To me, this resembles an initializer list found in C++ with constructors but I certainly don't think that is the case here. So my questions about this are (1) how is this legal code in C and (2) what functionality has the PROTO_LIST macro provided for the function?

View 3 Replies View Related

Ubuntu Networking :: How To Use IPtables For Different NAT Implementation

May 6, 2010

IPtables, implementing each type of NAT
-Full Cone NAT
-Restricted Cone NAT
-Port Restricted Cone NAT
-Symmetric NAT
using IPTables.

Explanation:
Full Cone: A full cone NAT is one where all requests from the same internal IP address and port are mapped to the same external IP address and port. Furthermore, any external host can send a packet to the internal host, by sending a packet to the mapped external address.

Restricted Cone: A restricted cone NAT is one where all requests from the same internal IP address and port are mapped to the same external IP address and port. Unlike a full cone NAT, an external host (with IP address X) can send a packet to the internal host only if the internal host had previously sent a packet to IP address X.

Port Restricted Cone: A port restricted cone NAT is like a restricted cone NAT, but the restriction includes port numbers. Specifically, an external host can send a packet, with source IP address X and source port P, to the internal host only if the internal host had previously sent a packet to IP address X and port P.

Symmetric: A symmetric NAT is one where all requests from the same internal IP address and port, to a specific destination IP address and port, are mapped to the same external IP address and port. If the same host sends a packet with the same source address and port, but to a different destination, a different mapping is used. Furthermore, only the external host that receives a packet can send a UDP packet back to the internal host.

On the netfilter mailinglist, Pedro Goncalves suggested the following:
192.168.2.170 is "public" address and 10.0.0.1 is "private" address

/-"Full Cone NAT", with the following rules:/

HTML Code:
iptables -t nat -A POSTROUTING -o eth0 -j SNAT --to-source 192.168.2.170
iptables -t nat -A PREROUTING -i eth0 -j DNAT --to-destination 10.0.0.1

/-"Port Restricted Cone NAT", with just a single rule:/

HTML Code:
iptables -t nat -A POSTROUTING -o eth0 -j SNAT --to-source 192.168.2.170

View 1 Replies View Related

Networking :: Implementation Of Network Protocols

Apr 10, 2009

How to implement Network Protocols.

View 1 Replies View Related

Networking :: Implementation Of TCP/IP Applications Over SCTP?

Dec 9, 2010

Have any of the below TCP based applications are implemented over SCTP in Linux ?

1. ftp
2. telnet
3. HTTP

Or any other applications ?

View 1 Replies View Related

General :: Implementation Of IPTables And Netfilters?

Oct 20, 2010

I am trying to understand the implementation of iptables and netfilters. Any good links or docs.

View 1 Replies View Related

Software :: Install Wine Got "Missing Dependency: Wine-gecko Is Needed By Package Wine"?

Mar 19, 2010

when I tried to install wine I got "Missing Dependency: wine-gecko is needed by package wine"so I looked for wine-gecko and download it but also when I tried to install it I got "Missing Dependency: wine-gecko is needed by package wine"it seems that I am in loop each package need the other what to do please?

View 1 Replies View Related

Networking :: Practive For Implementation Of A Failover Server?

Jan 20, 2011

I'm in need of some advise from you guys. I'm currently running a live production serverA, and last week it went down for a couple of hours which was really bad to say the least.

I've been thinking about building a mirror serverB that will rsync my data nightly. Now I don't want to load balance here, I just need to be able to switch to serverB when serverA goes down for any reason.

Would the best solution for this is to change my main nameserver entry when I want to switch ? I'm just curious if it will be a few hours or an instant change.

I thought I'd ask before attempting this live.

View 3 Replies View Related

General :: Optimize Implementation Of DSR Algo In UBUNTU 9.1 Using NS 2.34 ?

Feb 25, 2010

I need to optimize the implementation of DSR algo using NS-2. Now i need to identify the first of all "the parameters which i can change and which are effective in optimization point of view." I want to get into the c++ code as well as header files which are used to implement DSR algo.

View 4 Replies View Related

General :: Find A Leach Protocol Implementation For Ns2.34?

Aug 11, 2011

I am trying to find a leach protocol implementation for ns2.34 but all links available are dealing with ns2.27 Are the instructions valid for ns2.34?

View 4 Replies View Related

General :: Linear Hashing Implementation In C Language?

Dec 7, 2010

I'm looking for linear hashing implementation in C language. PS: I have to implement this on Ubuntu 10.04 Linux on 64 bit machine.

View 2 Replies View Related

Programming :: Proper Implementation Of POSIX Threads

Apr 6, 2011

I've implemented a program URL... which reads digital IF data from a radio receiver through a named pipe, measures power levels, and sends the result to stdout. The program is interactive; there is a thread that reads from stdin to watch for commands, a thread that constantly either reads data from the named pipe or throws data away, and an array of processing threads. The program uses GTK+extra to plot the signals. The IF data stream bandwidth exists at the limits of today's technology (is very very fast).

Problem Statement:The program works fine with a few bugs. I've learned since I've made it that using global state variables to coordinate threads isn't a good way of doing it. I also only had knowledge of mutexes and polled the state variable instead of using other methods.My reimplementation will use the following:

- One "Stdin Command Monitoring" thread
- One "Get data from named pipe" thread
- One post-processor thread
- N Processing threads

All threads are alive during the life of main()There are N buffers. Data will come in from the named pipe, and the "Get data" thread will write the data to an "available" buffer. When the buffer is full it will be marked as "full". There will be N processing threads, one for each buffer. When a processing threads' buffer is full, it will process the buffer and save the result to a final buffer. At the end of a number of averages, the post-processor thread will perform a final process on the final buffer and send the results to stdout.

View 2 Replies View Related

Red Hat / Fedora :: Implementation Of Kernel-based Virtual Machine

Jun 9, 2011

I'm Redhat 5 user, and I want to implement Kernel-based Virtual Machine. I tried too much search in google but I cant find the perfect instruction regarding it.

View 3 Replies View Related

General :: Web Panel To Manage Iptables And Tc / Secure Implementation Of Changes

Mar 19, 2010

Subject of my school work:"Web interface for managing firewall and band on the access server (Linux)"I have a big problem because I do not know how to safely implement the change in the system and show the logs on the Web page.Unfortunately, the number of solutions for today is enormous and it is increasingly difficult to me to decide on the right.They are:

1. Launching a web server with root privileges (the default mode of miniserv'a Webmin)
2. CGI scripts on apache SUID (mode webmin on "foreign" server)
3. suPHP or suexec
4. Cron implements changes to the root
5. Daemon in C "periodically" implement changes in the configuration files created by PHP
6. Daemon in C to implement the changes requested in the configuration files created by PHP
7.Use SSH in PHP and after logging into the root of execution of commands in the configuration files created by PHP (the root password in the DB)
8.Use SSH in PHP and after logging into the root of execution of commands in the configuration files created by PHP (the root password, enter manually)
9. Like the above so that the use of sudo and user rights only to the necessary shell commands
10. Add the user apache in the /etc/sudoers can perform all the necessary applications shell commands
11. Seize the opportunity to command: shell_exec ( `sudo php-f / home /example/script.php`), and /etc/sudoers

View 1 Replies View Related

Programming :: General Implementation SIP Client Software Using C' Language?

Sep 15, 2010

I am new to this forum and to Networking as well. I have chosen to implement:

1) SIP Client using C' language
2) Platform: Windows
3)Its going to be on command line

my problem is that I need some reference like books, material or website where I can learn how to write the code from scratch or port the code according to my requirements. My implementation should serve the purpose like two SIP clients should communicate with each other for exchange of Audio data.

View 4 Replies View Related

General :: Firewall Rule Implementation - Facebook - Give Only 2 Ips To Get Its Access?

Aug 1, 2011

My network diagram is internet<---->dansguardian proxy(centos5)<--->my network i have blocked facebook for my network but now i want to give only 2 ips to get its access & i do not want to enter these ip in exceptioniplist as if i doo so then they will be able to access all the sites that i have blocked. and if i am giving this entry [URL] in bannedsite list it is also not working.....

View 1 Replies View Related

Security :: Implementation Of Distributed Firewall In A Local Area Network?

Apr 6, 2011

I want to know the details about the implementation of distributed firewall in a local area network

View 5 Replies View Related

Programming :: C Coding Hacking / Ssh Dynamic Local Port Forwarding Implementation?

Feb 3, 2010

From this thread I've decided to try add a feature of removing local port forwardings in ssh.Here are some very ugly and not-yet working hacks what I made so far:

* Patch for channels.c
* Patch for channels.h
* Patch for clientloop.c

I was clearly expecting this to work without any troubles-everything seem to be logically correct, but I made a programming mistake somewhere: don't know where, maybe you will point me to this?Many sites say there is a WAY AROUND with -D param(starting socks proxy as a tunnel-generator), added since 5.2, but I don't need that way around. I need a way through. I use exact ports for exact services and if I want to change it runtime I'd like to have ability to do so.If you have other ideas or points instead of coding this, please share them here & here(original question).

View 2 Replies View Related

Slackware :: Errors - Warning: Unsupported SASL Client Implementation: Cyrus

Mar 17, 2010

My problem is to get postfix working with a smarthost, to send mails from home with dynamic IP, and which needs authentication. I did exactly the same with Slackware 12.2 (postfix 2.6.2) and it worked. Now I tried to do with 2.6.2 (actual running version is 2.7.0 with the same problem) on Slackware 13 64bit. Following error message occurs around every minute in the maillog:

[code]...

View 2 Replies View Related

OpenSUSE :: How To Run Wine On 11.2

Mar 25, 2010

i want to run wine on opensuse11.2.

View 9 Replies View Related

Debian :: Can't Remove Wine - Apt-get Bricked - Could Not Perform Immediate Configuration On 'wine-unstable'

Feb 16, 2011

while trying to get a game to work on wine I was surprised to find out that the wine version that ships with sid is 1.0.1 released in October 2005. So I installed the latest release I found at [URL] like this :

dpkg -i wine_1.1.42~winehq1-1_amd64.deb

The install failed, I think because I hadn't remove the old wine version, and that's when the joy-ride started. Impossible to remove wine to restart properly. (apt-get remove libwine wine and apt-get -f install didn't) After some googling I tried this :

dpkg -i --force-depends wine_1.1.42~winehq1-1_amd64.deb

This did install the wine version I wanted, and the game ran fine after that. However the result was a borked apt-get. Tried to remove wine again with the above commands, resulting in apt-get failing to do so because it tried installing wine-unstable and reported errors similar to these : E: Could not perform immediate configuration on 'wine-unstable'. see man 5 apt.conf under APT::Immediate-Configure for details. (2)

View 2 Replies View Related

Ubuntu :: How To Uninstall / Purge Wine And Any Wine Installed Windows Programs

Apr 15, 2011

How can I uninstall / purge wine and any wine installed windows programs?I've tried deleting .wine (hidden folder)but in /usr/bin/ there are a number of wine related files.And wine sub menu still appears in Applications menu

View 6 Replies View Related

Server :: Install Wine On Rhel 5 - Send Wine Installtion Command?

May 21, 2010

i want to install wine on rhel 5.plz send me wine installtion command.

View 1 Replies View Related

Software :: Wine In Virtualbox \ Distro Which Runs In A Virtual Box An Starts Wine?

Mar 29, 2011

maybe my questions sounds funny: i'm looking for a very small (or better as small as necessary) distro which runs in a virtual box an starts wine.The reason is: we have new laptops in my school runnig windows7 64bit home and we have some software which runs only on WinXP. So why not take a virtualbox wich runs wine to start the old Software?

View 2 Replies View Related

General :: WINE GNOME Menus Won't Show Up After Re-install Of WINE?

Dec 18, 2009

Lot of questions about WINE... When I'm done I'm going to make a HOWTO so that others can do what I did It's hard work, but I'm nearly done.The last problem I'm having is the WINE menu on GNOME won't show up after a install of WINE from a .deb package (it usually does). This was after I compiled WINE from source and removed it with "make uninstall" and "rm -rf /.wine".So now I installed the WINE from a deb package and the Wine menu entry is not showing up.I've tried re-installing Wine and rebooting my PC but nothing seems to work.

View 3 Replies View Related

Slackware :: 64 Wine Running A Game Results In Wine Crash

Jun 24, 2011

I have a problem running a game on a fresh Slackware64 install.

Slack version is 13.37

I've followed alien bobs instructions for a multilib environment from here:[url]

And then used sbopkg to download and compile wine version 1.2.2, which went through just fine.

After that I grabbed cabextract from sbopkg and ran this: wget [url] sh winetricks d3dx9 To get the DX9.

But, when I try to run the game, this is the error I get:

Code:

The game it self ran perfectly on the 32 bit version of Slackware, tested with 13.0. So now I think I'm missing some libs or something, but I have no clue which.

View 5 Replies View Related

OpenSUSE :: How To Use Wine To Use Matlab

Apr 13, 2009

matlab installed in windows; is it possible to launch it through wine in suse? I dont know much about wine

View 5 Replies View Related







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