Replies
Welcome, guest
Join CrazyEngineers to reply, ask questions, and participate in conversations.
CrazyEngineers powered by Jatra Community Platform
-
@morningdot-6Xuj4M • Aug 2, 2010
Ok i started with the first one.
"cd ~/Desktop" command to access the desktop file through terminals -
@morningdot-6Xuj4M • Aug 3, 2010
Many of our CEan facing problem in finding packages for installing any software.
If you are new in ubuntu try to follow this for installing softwares "System->Administrator->synaptic package manager" or "Accessories->Ubuntu software centre".
If you have more share with us. -
@aashish-VrevFC • Aug 4, 2010
Install compizconfig-settings-manager to have greater control over the Desktop Effects (using Compiz of course!! 😁 )
among others you can enable water effect which is basically like raindrops on your desktop!! Some of the effects are very cool!! -
@sushant005-tyt4WK • Aug 13, 2010
Install all required packages for c and c++ programs.Here is the command which install all the packages :sudo aptitude install build-essential.
1>Write the program and save using .c(for c program) and .cpp(for c++ program).
2>If you have save it to the desktop then write like this:-cd ~/Desktop
3>now to compile write the following in the terminal:-g++ <your file name>.cpp -o <your file name>.----->for c++ program
for c program write .c instead of .cpp and gcc instead of g++.
4>to execute the program write:- ./<your file name> for ex ./hello.
and you are done.. -
@leo-ZJQlmh • Aug 13, 2010
Buddy i think you are starting very fast, many people are still new to Linux, start from basic. -
@sushant005-tyt4WK • Aug 13, 2010
I simply mention the command to install the required package for c or c++.
I think being a computer science we have to know how to write and compile a simple program in operating system which we are using thats why i share this tips here -
@special-bJB6Ij • Aug 14, 2010
your are rightLeoBuddy i think you are starting very fast, many people are still new to Linux, start from basic.
please do start with the basic,
i had installed ubuntu , i couldnt install anything in that.
I coundnot even play my mp3 songs every time i have to convert the song into .ogg format and then play it😔 -
@morningdot-6Xuj4M • Aug 14, 2010
Hey we started with the basics.Read from the 1st post.Here in ubuntu you need packages to installed any type of software.I think you need some mp3 player try to follow this "System->Administrator->synaptic package manager" or "Accessories->Ubuntu software centre" and search for the vlc.Specialyour are right
please do start with the basic,
i had installed ubuntu , i couldnt install anything in that.
I coundnot even play my mp3 songs every time i have to convert the song into .ogg format and then play it😔
Let me know if any more problem is there.
.
If you are new in ubuntu try to use some day after some day's you must like to work with them.I am realy a big fan of ubuntu. -
@special-bJB6Ij • Aug 15, 2010
can you tell me from were did u download ubuntu -
@morningdot-6Xuj4M • Aug 15, 2010
Check out here #-Link-Snipped-# for desktop edition.
You can also order for it you just have to do a registration.And they send you a original CD of ubuntu on your house.It's free because ubuntu is open source. -
@special-bJB6Ij • Aug 15, 2010
thanks buddy! i will first install it and then i will ask your help. last time it took 5hours for installation, i was really fed up of it, i will download it and work it on the vmware
thanks! -
@special-bJB6Ij • Aug 15, 2010
mohit007kumar00Check out here #-Link-Snipped-# for desktop edition.
You can also order for it you just have to do a registration.And they send you a original CD of ubuntu on your house.It's free because ubuntu is open source.
i couldnot install ubuntu on vmware
now can you tell me what to do? -
@bharathpb-FtEhYi • Aug 16, 2010
-
@special-bJB6Ij • Aug 17, 2010
there was no error it just got stuck therebharathpbSpecialu...
Let me know what error you got while installing ubuntu in vmware...? -
@morningdot-6Xuj4M • Aug 17, 2010
If you complete your downloading->write it in a CD->start your OS->insert your CD->and then installed it under your current OS. -
@morningdot-6Xuj4M • Aug 18, 2010
Install Midori 0.2.7 in Ubuntu 10.04/9.10
Midori is a lightweight web browser.
Open your terminal and type this command "sudo apt-get install midori" -
@morningdot-6Xuj4M • Aug 18, 2010
Install Latest Version of shutter in Ubuntu 10.04/
Shutter is a feature-rich screenshot program. U can take a scrnsht of a specific area, window,
Open your terminal and type this command "sudo apt-get install shutter" -
@aashish-VrevFC • Aug 21, 2010
if you just want a feel of ubuntu in a virtual enviroment, i suggest you try Oracle's virtualbox. It is easy to use, the documentation is easy to understand. All you need is an .iso image on your computer you can install it from there.Speciali couldnot install ubuntu on vmware
now can you tell me what to do?
#-Link-Snipped-# -
@morningdot-6Xuj4M • Aug 28, 2010
Follow this to install GNU c++ compiler in ubuntu.
System->Administration->Synaptic package Manager->quick search for g++ and apply for installation.
. -
@special-bJB6Ij • Aug 31, 2010
try installing wine software, it supports almost every .exe file -
@special-bJB6Ij • Aug 31, 2010
how to run java programs?? in ubuntu? -
@morningdot-6Xuj4M • Aug 31, 2010
Search for JDK in Synaptic Package Manager and apply for downloading.
After the installation open gpedit text editor write any program of java save them and try to compile and run from the terminal.
.
let me know if any problem is there. -
@special-bJB6Ij • Aug 31, 2010
Am not able to run c programs in ubuntu,
if i declare the header file conio.h it gives an error that "add.c:2:18: error: conio.h: No such file or directory" -
@special-bJB6Ij • Aug 31, 2010
Also am not able to run a simple program of addition,
the program codes are:
#include<stdio.h>
void main()
{
int a,b,c;
scanf("enter the nos",&a,&b);
c=a+b;
printf("the sum is %d",c);
}
the output given is:
anupam@ubuntu:~$ gcc add.c -o add
anupam@ubuntu:~$ ./add
13 5
the sum is 142898335anupam@ubuntu:~$
please suggest something..... -
@aashish-VrevFC • Sep 1, 2010
conio.h is windows specific. use iostream instead