2,228 Topics
![]() | |
hi friends and seniors i want to play (add audio files, remove audio files,and other oprations) players(like vlc) through c++ coding in Ubuntu help me out. how do i do this. i don't even have idea... i know how to accept input from command prompt | |
[B]I want to play mp3 song file in ubuntu using c++ [/B] suggest me is their any function to do this plz suggest me as simple as u can suggest any method.... plz give ur valueable suggestions..... | |
I'm running Ubuntu and have just installed PHP5, Apache2, and MySQL. I created a PHP Project in Netbeans and trying to echo "Hello World." When I run it, I just get a 404 Not Found error with this "The requested URL /PhpProject1/index.php was not found on this server." Any ideas … | |
Hi guys, I'll try to keep it as short as possible. Basically, I love the webcomic [URL="http://www.xkcd.com"]xkcd[/URL]. And recently, I've been browsing around for a downloader, and have found one written in Perl that works great. It even grabs the Alt-Text (text that pops up when you hover your mouse … | |
Hello I run ubuntu linux and I have just bought a new ipod touch You need itunes to set it up, which is, as usual, only available for Windows and mac (stupid apple for forgetting linux!!!). How can I set up my ipod? Thanks, Calum | |
| |
Hey ., need to know does turbo c work for ubuntu as well and if not what editor-cum-compiler should be used? Thanks | |
Right now I am using gdb on command line in Ubuntu. It seems pretty inefficient and cumbersome. Is that just because of the learning curve or because it is really that way? Do "real" c++ programmers use gdb? I felt the same way about vi until I learned to use … | |
Hi. I hope question fits in this section. I am looking to buy a laptop. Going to use it for studies and work. Specs I'm looking for are: [LIST] [*]procesor: core 2 due up to cheapest i3 [*]RAM: 3-4 GB DDR3 [*]HDD: 320 GB or more [*]videocard: doesn't really play … | |
Have you read this? [url]http://arstechnica.com/open-source/news/2010/10/shuttleworth-unity-shell-will-be-default-desktop-in-ubuntu-1104.ars?utm_source=rss&utm_medium=rss&utm_campaign=rss[/url] | |
The below block of code generates stuff like the below array but here's where it gets somewhat interesting. I took the legend and turned them all in to variables because of what I would like to have done which I will now describe below. Of the four arrays that this … | |
Hi The only programming I know is some basic scientific programming using Python. Now I want to develop some software. I want to learn how to develop: 1. An operating system 2. Changing an existing (open-source) software written in C and/or C++ so that it loads when I boot my … | |
Hi guys, I developed a website and want to access it through the Internet by using my registered own domain. Website will be served by my Ubuntu machine at home. I have a router called Thompson Speedtouch. I simply want to host my own website at home. Domain: www . … | |
Hi, I am running Ubuntu 10.04 LTS, and wanted to install RVM today, I used: bash < <( curl [url]http://rvm.beginrescueend.com/releases/rvm-install-head[/url] ) (NOTE: I already have git-core and curl, etc.) After running that command I get the output in terminal from Wayne, and I added: if [[ -s "$HOME/.rvm/scripts/rvm" ]] ; … | |
Title kinda says it, I was wondering if anyone has heard of this what im about to ask. If i program code on ubuntu 10.04 using netbeans, and code in C. can I somehow save the file from netbeans, and transfer/make a conversion for the netbeans file to be able … | |
i am trying to implement a simple keylogger... my code works fine and is able to detect simple keystrokes.... the problem that im experiencing is that whenever a key is pressed it remains pressed forever even after i release the key unless i press some key again...and if i try … | |
im new to cgi scripting...im using python...and ubuntu... i changed apache2's default file to set the cgi directory to /var/www/cgi-bin...and there i i uploaded my simple cgi file...the cgi file runs perfectly fine when run through terminal...which means there is no error...but when i try to access it through a … | |
Hi everyone! I have a strange problem, I haven't been able to solve, even with quite some knowledge of videocards, and computers. I have an nVidia 250 GTS, purchased a year ago (all new, no second-hand). Everything worked very well, until about a month ago. Sometimes, when I power on … | |
I recently received a used Toshiba Tecra 9000 from my brother. It has several problems, but I'm only bothered by one. I"ll list all the problems though. 1(the one that bothers me). I've been using Ubuntu Live to test/operate the computer, but recently (last two days) it has started freezing … | |
Hey Windows fans, would you like to take Linux for a spin to see what everyone's buzzing about? It's easy to do in just five easy steps. You can test Linux for yourself without having to setup multibooting, worry about partitioning or installing over your current Windows system. That's right, … | |
I am running ubuntu and mistakenly deleted /usr/bin/ld. Now I can't compile anything. Any help would be appreciated. | |
hi everyone , I'm new to linux and I've just downloaded ubuntu , i tried to setup a network connection but i couldn't in windows it's much easier .I want to set a network connection on windows i use broadband connection that requires a user name and password using dsl … | |
Hello programmers :), I'm creating a program that requires too many command line parameters to run. I noticed that many system programs in Ubuntu (my operating system) have the feature of auto-completion of the command line parameters. So, for example, if you type the following in Ubuntu: sudo apt-get i<tab> … | |
I am working on a friend's computer (Dell Inspiron 1525 3 yrs old) and it won't boot. I've tried reinstalling Windows Vista to no avail and it won't boot from the cd either. I am now running a DST short test on the hard drive and it has been reading … | |
Hi all, I write because I am struggling with a very strange thing. I have this class: [CODE] static const long POINTS_VERY_FEW = 100; class Bin2DSphere { /*! Class for 2-dimensional binning on a sphere */ public: string Name; double PhiMin; /* Minimum value of Phi */ double PhiMax; /* … | |
[B]Is there an application that allows video IM in Linux, specifically Ubuntu. I have Empathy and Pidgin but the video features in Pidgin were turned off in a previous version because of some sort of copyright infringement. I have searched, but have not found an application that does video. My … | |
Hi, Can anybody describe me the different ways of running a .exe file in Ubuntu? Thank you! | |
I am looking for some assistance regarding a new project i am doing. I am not a programmer by trade but have taught myself PHP, some javascript and some flash /AS2 & AS3 over the past 2 yrs along with mysql and currently run a company which utilises software i … | |
Hello dears. I am using python 2.6 in Ubuntu 10.10. I need an interface that make me able to trace my project. for example portable python ver 1.1 has this ability. please intruduse me an interface that be compatible with my os. Thanks. | |
I'm running ubuntu on x86_32...and I keep getting segmentation fault while running this program. [CODE] #include<stdio.h> #include<stddef.h> char *memcp(char *dest, const char *src, size_t n) { char *dp = dest; const char *sp = src; while(n--) *dp++ = *sp++; return dest; } int main() { char *s = "abcde"; char … | |
Hey guys, first of all if this is the wrong category than I'm sorry but I really didn't know where to post this thread. Anyway I recently installed ubuntu on an external hard drive and it was booting up fine for a while, but later on the pc starting taking … | |
Hello All! First post I believe. I've hit a small program in a project of mine. For my Senior Projects class, I am writing an accounting system for a small town in Java. I have an AWT List Box that hold the login names for all the employees. In my … | |
Hi in my program there is an option to enter a directory as a command line argument. Is there any check I can perform to see whether this directory is relative to the current working directory? For example if we are /home/user and the user wants to input /home/user/folder they … | |
Hi I'm a newbie in linux. I installed Kubuntu 10.10. then tried to install VirtualBox. an error message appeared: g++ is not installed. the OS cannot be connected to the internet. where can I find and download a self-contained package for g++ to be installed on Kubuntu 10.10? | |
Hi guys, I want to access my virtual domain from another computer on same network by typing [url]www.site1.com[/url] or site1.com without using IP at the beginning of URL. Currently it works this way: [U]Server computer where Apache is running:[/U] [url]www.site1.com[/url] AND site1.com works fine as I want. [U]Another desktop computer … | |
Hello, I am having trouble with MySQL on a newly installed Fedora 14. I have found that there are several issues with MySQL on Fedora but none of the issues I have found have exactly fit my situation. To start off, when I installed Fedora, I chose the Web Server … | |
Hi, hopefully someone can help me with this, since there seems to be dozens of threads similar to my situation yet unintelligible to me. So I recently did a fresh install of Windows 7 Professional x64, and in the process decided I would install Ubuntu to dual boot on the … | |
Hi All, after almost a year, I'm back to Pythoning again! Now I want to setup my Ubuntu Box with LAMPP to work with Django. In PHP I just put my files in www folder and there it is! Please help me setup Django sites. Thanks and Happy new year … | |
Hello, I have installed apache server on Ubuntu 9.1 desktop. When I access http://localhost:8888 or http://192.168.1.60:8888, I get message : "It works". Now, I am able to run the apache on the port 8888 using the windows 7 without any problem and I accessed it from outside internet and that … | |
i had installed 2 os in my acer aspire 4736g i had ubuntu and windows vista i deleted the partition that contain the ubuntu os... when i reboot my laptop, it comes out GRUB loading stage1.5 GRUB loading, please wait... Error 22 and it stuck there....cannot load windows i knew … | |
Hi... I have this Web program running on UBUNTU... and I'm not familiar with Linux Systems... Heres the problem... I need to access the MySQL database on UBUNTU to create a report using VB.Net on WINDOWS... I downloaded an ODBC driver(MySQL ODBC 5.1 Driver) for MySQL then I tried to … | |
Env : Php 5.3, Ubuntu 10.10, apache 2.2.16 In fact IE8 blocks cookies avoiding the php session cookies to be saved in the client environment. Configure ssl on your webserver an do a http redirect at the very top of your source script from http to https layer. | |
Hi there, I was wandering if anyone can give me a brief explanation on how to connect my C application to the Internet. What i would like to do in the end is to access a web page trough the application and have means to read the html code behind … | |
Hi, I'm using Ubuntu 10.10 and I would like to know a way to know what applications are asking you to enter password for default keyring to unlock. In the past that dialog used to appear at startup once but now appears twice and I would like to know which … | |
Hey guys,I admit I do commit Mistakes But this piece of code got well executed in my college (USED TURBO C++) But in my home PC (UBUNTU) Its not getting COMPILED [CODE]#include<stdio.h> /*header*/ //#include<conio.h> /*header*/ #include"maths.h" int main() { int rur1,rur2,b,a,c,x,y; int d; //clrscr(); printf( "Enter the value of A … | |
Hi Friends, Here is my Scenario, I have two ISP Connections from different Providers BSNL and Sify. Both are 1MBps. In my Office Now we are using Sify for Only one Machine and BSNL is configured in wifi router. But Often BSNL network is in problem. So we have planned … | |
Hi all ! In my Online Ticket Booking Project on i am using AJAX for source and destination cities.. destination is dependent on source city.. but on my machine Ajax is not working ... while on all the other machine it is working properly.. please help.. i am using mozilla … | |
Hi, Steps below works fine if I have only one folder(site) in /var/www/http/ but when I add another (folder)site into /var/www/http/ and repeat same steps just by changing the name of the (folder)site, it retrieves the previous site even if I enter the second one. e.g. myhost1.com and myhost2.com display … | |
Hi, Like everyone, I access my apache server by typing [url]http://localhost[/url] or [url]http://127.0.0.1[/url] but what I want is that I want to access it from outside by typing a domain name like [url]http://my.domain.com[/url] I've added my current IP information for you. This is what I need. I'll be much appreciated … | |
Hi everybody, I'm trying to set up a File Server running on Linux but I encountered some strange difficults... The hard disk I want to share is a 320GB I formatted before to install the Operating System (Ubuntu Server 10.10) and I formatted as NTFS because I want to read … |
The End.