|
I was thinking all of them as same words but in every forum they are mentioned.
Aren't they have same meaning means linux
Is Debian linux OS --- means noun
or
Ubuntu is Linux
and
debian and Ubuntu are different or same Red hat is linux which means equivalent...
Started by Mirage on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at serverfault):
They have slightly linux OS distributions....
Ubuntu, Debian, and RedHat are distributions of the Linux operating system.
Debian, Ubuntu, Fedora, Redhat are all.
Linux (capital "L") refers specifically to the linux kernel.
|
|
Possible Duplicate:
where i can get software download for ubuntu 9 ?
i cant find much (softwares, applications and derivers).can linux (software, application and drivers ) work on ubuntu 9?
Started by saleemrehman on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
Linux and tools is referred to as GNU/Linux, and Ubuntu is that + a set of programs pre-packaged to work well together....
Software works on Ubuntu, the answer is yes, as Ubuntu is a "flavor" or "distribution" of Linux.
|
|
How to output a frequency 1kHz and power/volume = 60% in Linux (Ubuntu)?
I need sample code in C/C++. Thanks!
Started by Viet on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
|
Ask your Facebook Friends
|
Hello,
How can I lock a file for a specified period of time (10 seconds) using the C language in Ubuntu Linux ?
Started by Bass on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Use fcntl(2) to lock the file, then....
Int f = open ("filename", O_RDONLY); if (f < 0) error(); if (flock (f, LOCK_EX)) error(); sleep (10); if (flock (f, LOCK_UN)) error(); .. .
It works like this:
#include <io.h> #include <sys/file.h> ...
|
|
Im using Liferay portal server on tomcat and Linux Ubuntu.
Liferay is generating a file that is very long. I've seen those files in windows and its working. But when i tried running it in ubuntu, it doesn't create the file and my server is giving me error...
Answer Snippets (Read the full thread at stackoverflow):
When i made a new installation....
It seems that the filename of the file created is also encrypted making my long filename even longer .
You'd ubuntu OS.
Sometimes linux filesystems cap at 2GB, but I don't know what the behaviour is if you went over.
|
|
How to develop app in Visual Studio and then deploy apps to Linux machine (OS - Ubuntu, web server - Nginx). Can any explain the steps, it will be a great help
Started by sameer on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Use....
You can also try to run Visual Studio in Linux using Wine .
There are many IDEs for Linux that you can use for this.
If you are developing an application for Linux in C (as Nginx is) or C++, you need to develop on Linux.
|
|
What is the best email reader application/package on ubuntu Linux for reading your email? I am looking for an app that can really handle gmail well.
Started by Daniel on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
I believe Ubuntu comes with Evolution which should handle gmail fine, although my personal.
|
|
Is there a Google Wave desktop notifier for Linux/Ubuntu?
One integrated with OSD Notify would be great... or a taskbar notifier would be sufficient.
Started by jldupont on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
There is one.
As of now it seems there's no Google Wave Desktop notifier, as a native app for Linux.
|
|
Because of m y problem with mouse-clicks being ignored in Ubuntu , I want to restart from the command-line. (I have an open Terminal, and the keyboard is not ignored.)
How do I restart a computer running Linux (or more specifically Ubuntu) from the command...
Started by Daryl Spitzer on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at superuser):
If you've got freedesktop....
Sudo /sbin/reboot will get the job done every time.
There is also halt , poweroff & shutdown.
There's a few ways:
sudo reboot
sudo init 6
sudo shutdown -r now
I found this page on computerhope.com :
The command is reboot .
|
|
How do I determine the Ubuntu Linux Library Path? That is, how does the linker know where to got to grab the object files when linking my program?
Answer Snippets (Read the full thread at stackoverflow):
You can see these with the command:
gcc -Xlinker ....
There are also some paths hard-coded into the linker, using the -L param .
The file paths can be set explicitly when linking using the -L parameter, as well as the environment variable LD_LIBRARY_PATH .
|