|
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.
|
|
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):
|
|
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> ...
|
Ask your Facebook Friends
|
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.
|
|
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 .
|
|
Hi,
I have installed ubuntu on my computer. Now i want to make it same like we have linux on VPS.
So that i can make websites just like on online vps but by using local IP.
IN my online VPS i use cpanel and WHM. Can i use similar software on home ubuntu...
Started by Mirage on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at serverfault):
I assume you're just hoping....
Now - hosting websites on your home computer...that's another issue altogether .
Of course:
$ apt-get install apache2 libapache2-mod-php5 mysql-server
Add/remove packages depending your desired environment and Bob's your Uncle .
|
|
I am looking for a robust business grade laptop/notebook with 3D capabilities and which can run recent Linux distributions and would be easily compatible with Ubuntu 10.10 when it comes out.
Any suggestions? My budget is between £400 and £700 ($600 - ...
Started by nitbuntu on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at superuser):
If these don't suite you: About dell offering Ubuntu....
He's running Ubuntu 9.10 without problems.
You can customize uses in university all the time.
So the operating system costs are a lot lower.
Choose to have Ubuntu pre-installed.
|
|
I installed Ubuntu on a free partion on a computer which had Windows 7 installed first, and Windows 7 won't boot. Usually installing linux after windows is recommended, but Windows 7 complains about there being a problem with its boot process.
How do ...
Answer Snippets (Read the full thread at superuser):
Use remember why I....
Good luck.
Either use the Windows CD or your Ubuntu CD to go and rebuild your boot manager.
We had Debian Lenny installed is the problem.
Problem, only with Windows Vista and Linux Mint (based on Ubuntu 9.10).
|