Ubuntu :: Best Distribution For Cyber Cafe Client

Apr 22, 2011

can anyone advise me as to which distribution would be best suited for a cyber cafe: for client and for the server. I'm having trouble installing cafe con leche on my 10.04 LTS because some repositories are unavailable.

View 2 Replies


ADVERTISEMENT

Ubuntu :: Setting Up Cyber Cafe Kiosk Systems?

Feb 7, 2010

My friend and I are helping a local internet cafe transition their public computers (and possibly servers at some point) to run on free software (after many bad virus experiences). Currently, they are using Antamedia Internet Caffe, with the server program running on a POS system that for the time being still needs to run Windows. We played with ZenCafe a little, but ideally we need something that runs in kiosk mode, allowing the user to browse the web, instant message and word process.

View 1 Replies View Related

General :: What Internet Billing Software Should Use In Ubuntu In Cyber Cafe?

Feb 26, 2010

i am trying to set up a cyber cafe using ubuntu 9.10 but i don't know what internet billing software to use and how i will set it.then if there is is the internet billing package is there a way that i can incoporate that it works with windows??

View 4 Replies View Related

Fedora :: How To Download Rpm With Its Depencies From Cyber Cafe To Home

Jul 18, 2009

i want to know how to download rpm with its depencies from cyber cafe to home. in cyber cafe they have xp i want to know how to get it all.is there any software which can make it.

View 1 Replies View Related

General :: Can't Seem To Find Any Easy To Use Cyber Cafe Timer

May 19, 2010

I have been trying to configure a cyber cafe timer and I have so far tried Mkahawa and CCL. However the problem is following the instructions since most of them require you to be conversant with the Gnome commands..

View 1 Replies View Related

Software :: Cafe Con Leche Client / Does Not Connect To Server To Show The Timer Automatically?

Jun 2, 2010

i have a problem with one of my PCs which refuses to run the CCLc timer on its screen, i have tried to run the application so many times but every time i run it it does not connect to the server to show the timer automatically as the other PCs do,therefore the client cannot know how much he/she is supposed to pay.this forces us to manually time the clients that are using that PCs.

View 1 Replies View Related

Ubuntu :: Internet Cafe Software Small Internet Cafe Can Run On Ubuntu That Works Great?

Jul 8, 2010

Does anyone know if there is any Internet Cafe software a small internet cafe can run on Ubuntu that works great?

View 4 Replies View Related

General :: Installing Code For One Distribution To Another Distribution?

Mar 5, 2009

I would like to install a program (R for statistical computing). I am using Slackware. On the download page of R (The Comprehensive R Archive Network) there are options to download the code for Debian, Redhat, Suse, and Ubuntu. Which one should I download in my case (using Slackware)? Is there any of them which I should not download?

View 4 Replies View Related

General :: Configure Mkahawa Cyber Management?

Dec 18, 2010

i am trying to install mkahawa cyber management package!! but the client part is giving me alot of problems.

View 3 Replies View Related

Ubuntu :: Can't Start New Thread In Community Cafe

Feb 1, 2011

I can't start a new thread in the community cafe because there is no 'new thread' button to be clicked.

View 2 Replies View Related

Ubuntu :: Forum Homepage Freezes Past Community Cafe Link?

Jun 25, 2010

Ubuntu forum home page will lock up, just for several seconds once I scroll past the community cafe link. Then the page will free up, it is just annoying to have to wait 5-10 seconds for the page to free up.

I am running 64 bit ubuntu 10.04 and my browser is google chrome.

Does this happened to anyone else? Any advice on a corrections, this seems weird enough to not have a fix

FYI, does not freeze on firefox.

View 3 Replies View Related

Ubuntu Security :: Establishing A SOCKS Proxy Connection At An Internet Cafe

Aug 7, 2011

I've got my netbook set up so that I can run a SOCKS proxy via my desktop machine. This works fine at home, but I'm wondering what happens at an internet cafe with public wifi.

Specifically, the connection needs initially to be set up with an ordinary direct internet connection so that I can log in to the cafe's router. I'm concerned that when I then set the network proxy to SOCKS host, the router will cease to recognise me and will disconnect me. This particular detail doesn't seem to have been covered in any instructions that I've seen (maybe I haven't looked hard enough).

View 5 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

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

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

Ubuntu :: Looking For Distribution Software?

Feb 5, 2010

My company has over 230 servers in the field (running Windoze Server 2003 with cygwin). I frequently write small admin utilities (in Bash or Java) and need to deploy them (new and updates) to all of the servers over ssh. I run Ubuntu (9.10) on my laptop (don't ask about the Windoze servers -- it was NOT my decision).

View 2 Replies View Related

Ubuntu :: Is There A 64 Bit Intel Distribution?

Nov 13, 2010

I just bought a computer from a company that was having a fire sale. Anyway I figured that I'd give Ubuntu another shot. I installed 10.10 yesterday without any real idea of what was in the box.Is this the right distro for this box? I'm not sure if the distro is 64 bit. There's an AMD64 version, but is that only for AMD chips? How do I tell if I'm running a 64 bit or 32 bit distro?

View 6 Replies View Related

Ubuntu :: How To Upgrade Distribution

Mar 18, 2011

I have an old copy of Ubuntu Feisty Fawn 7.04 in a virtual machine that I haven't used in a long time. I want to update the distribution to the latest but I'm not seeing an option to do so under the upgrade manager or the synaptic package manager. When I attempt to refresh my package information I get an error message talking about how the repository is no longer valid. I've even tried to open the terminal and type: sudo apt-get dist-upgrade and it doesn't do anything.

View 3 Replies View Related

Ubuntu :: Want Best Server Distribution

Jun 24, 2011

Which is the best server distribution?

View 4 Replies View Related

Ubuntu :: Customize The Installation For Distribution?

Jan 17, 2010

How to customize the Ubuntu Installation for your Distribution - TUTORIAL I have looked a lot in almost every page in Ubuntu, Google and some other Linux Distributions Forums, Help Guides and Tutorials, and have never been able to customize, or even find a valuable source on customzing the Ubuntu Installation, also known as Ubiquity. Now if you are planning on creating a LiveCD or Ubuntu-based Distribution using Remastersys or some program like that, then you will love this tutorial, as do I. First of all, make sure you have Ubiquity installed.Quickly goto Synaptic now, and check. Once you have that, go inside a terminal and type sudo nautilus.Then goto /usr/share/ubiquity. You will see some system files which I will now mention again in this tutorial for the sake of my tiredness.

Here you will see the images that are presented when you select your region in the installation process. You may customize it, but I hardly recemmond it as the areas I tell you to customize are far more rewarding. Now, just go inside the "ubuntu" folder and see the "logo.png". Customize it to have your own Logo and Distribution Name. After you finish that come out of it, all the way back to /usr/share. Now we go inside the big area, where we customize a LOT. Go inside "Ubiquity-Slideshow" folder. In this folder you will see the images and text that pop up during the installation of Ubuntu. Do you remember?

Now just go into Slides/icons and here you will see the beautiful icons of all the slides. You may notice the extroadinary graphics and input the Ubuntu team has put into most of these, and so I have decided not to customize this, but you can surely go ahead. However, for legal sake, I had to customize the logo which I have changed it to be mine (that is I deleted the Ubuntu logo and replaced it with a High-Quality version of my logo). Once you feel you have done enough, please go out of that folder and scroll straight down to customize the writing on the slides in the installation.

Here you will see 13 .html files. HTML is simple, you do not have to know anything in HTML to customize these files, however you must understand to not go out of the boundaries. Stay in the templates, because saying too much will look un-Professional and dodgy when it comes to size issues. I prefer Cutting huge paragraphs of writing in between the "" and starting to type about the subject in My Distributions way. Making sure that I do not exceed the previous 3-4 sentence that Ubuntu already had. Ok, to customize these .html files I will quickly show you one of them and customize it before I fall asleep on my keyboard. Right-click "accessibility.html". Click OPEN WITH and select GEDIT.

You will see something like this, however where it says Gosalia, that is my operating system, it used to say Ubuntu. CAUTION - Do not copy my work, there will be severe consequences, considering I took 5 minutes to write it and the rough work your Operating System installation will look...

Quote:

<h1 class="title">Accessibility in Gosalia</h1>
<div class="main">
<div class="content"><ul>

[code]....

Enjoy, do this to all of them remembering to only write in between the <li> and the </li> Remember one thing, where it says "UBUNTU" you can change it, unless it is a file name, then DON'T CHANGE IT! Oh yes, and now when you create your ISO with Remastersys (or equivalent) then you will have your customized Installation ready in the LIVECD process, check it out! It worked for me, and it is spectacular. Making a Video about this now...

View 1 Replies View Related

Ubuntu :: Compile Wubi For Distribution?

Apr 13, 2010

The Gosalia Enterprise and we are in the midst of creating a Linux Distribution.

I have been set the task of creating Wubi-like application for our ISO (Ubuntu9.10-based) but I don't know how to, so I came here to ask.

How can I compile WUBI for our ISO of Gosalia? Also, how can i create an ISO of Gosalia, we know that we can use Remastersys, but what is the PROFESSIONAL way of doing it?

View 3 Replies View Related

Ubuntu Installation :: 'New Distribution Available' Unavailable

May 4, 2010

I'd like to upgrade my 9.10 desktop to 10.04 but I can't get past step 1.I've done alt-f2 and issued update-manager -d, but no "New distribution" option is presented.I've clicked the "check" button and updated all my repo information but that doesn't help.I've done a wireshark trace and observed that the update-manager's requests get through the corporate firewall, and responses come back.Somehow it determines that no new distro is available.I'll explore further if someone could help me out with getting hold of the relevant update-manager source code.

View 2 Replies View Related

Ubuntu :: Rebranding/Changing The Distribution Name?

Aug 6, 2010

I am working on my own custom remastered version of Ubuntu(just for personal use), and I would like to know how to change the distribution name to something else. Instead of Ubuntu, I'd like to be able to have the name changed. I don't know what yet, but I'd like to know how.

View 2 Replies View Related

Ubuntu Installation :: 10.04 Does Not Distribution Upgrade To 10.10?

Apr 13, 2011

I am on a 10.04 desktop, it was previously set to only upgrade to LTS releases. I have change it to do normal distribution releases. This is checkable in the update manager and /etc/update-manager/release-upgrades

[Code]...

View 1 Replies View Related

Ubuntu :: Install Program From Another Distribution?

Jun 21, 2011

Is it possible to install programs from the distribution (2.8 altemate for example) to another distro (Ubuntu 10.04) With an indication of the way, if possible

View 2 Replies View Related

Ubuntu Installation :: Unable To Upgrade To The Next Distribution?

Apr 30, 2010

Since 9.10 was available, I've been unable to upgrade to the next distribution. Today I actually took the time to copy down and make note of the error given. The pop-up error is this: Could not calculate the upgrade

[Code]...

View 3 Replies View Related

Ubuntu Multimedia :: Distribution Where Audio Just Works?

Jul 20, 2010

Is there a Ubuntu distribution in which sound "just works"? I'm booting into Windows 7 far too much.I am running both Jaunty (on an old P4V533-MX desktop) where for some reason my sound went away, and Lucid, on a new Dell laptop (all-Intel Studio 14). I thought a new installation of Ubuntu 10.04 on modern hardware would give me rhythmbox back, but I get no sound of any kind from the Dell laptop after installation, although everything works Ok if I boot into a W7 (came with the purchase) partition.

I don't want to fiddle with configuration files any more - just wondering if there is a "most-dependable" Ubuntu with respect to audio. Which I will install. Frustrated and impatient after weeks of this.I am an old (hairy eared) Unix fan but IMO if Linux continues to complicate itself so freely (i.e. Pulseaudio - I don't know an audio mixer from a can opener and would prefer to remain that way), then the small market share it has will slip away rather than grow.

View 4 Replies View Related

General :: What Does 'distribution' Mean?

Jan 10, 2010

What does "distribution" mean? My Acer computer, on which I have linux linpus lite, comes with very little documentation and while I have a physics BA and have had exposure to technology, my knowledge of linux is just about zip. Is there a good place to start? As you can see, this question about the word "distribution" is a razor thin top of an enormous iceberg of ignorance.

View 3 Replies View Related

Ubuntu Servers :: Apt-mirror -- Move Distribution After End Of Life?

Apr 13, 2010

i have a complete local ubuntu mirror; nicely kept in sync by apt-mirror. unfortunately, i need to keep some of the old releases as well. [URL].. kindly provides those. with the upcoming end-of-life of intrepid ibex, i would like to move the packages for intrepid on my mirror to the directory i use for the old-releases, without having to download these approximately 30GB from the original server.

is there a way to move distributions in a local mirror? apt-move seems only capable of rearranging the packages in /var/cache/apt/archives/ .

View 8 Replies View Related







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