Important Linux threads

MyWorld

Executive Member
Joined
Mar 24, 2004
Messages
5,001
Okay, lets clean the bookmarks a bit here:
http://www.gentoo.org <-- Gentoo Linux
http://gentoo-wiki.com <-- Gentoo wiki

Now for the fun stuff:
http://www.xs4all.nl/~carlo17/howto/undelete_ext3.html <-- How to undelete ext3 files
http://www.brunolinux.com/01-First_Things_To_Know/Skinny_Elephants.html <-- Very useful escape sequences. NOTE: Support needs to build into the kernel (SysRq)
http://www.cyberciti.biz/faq/tunning-linux-ext3-filesystem/ <-- Optimizing ext3
http://www.scottklarr.com/topic/115/linux-unix-cheat-sheets---the-ultimate-collection/ <-- Linux cheat sheets
http://www.foogazi.com/2008/03/18/linux-commands-you-probably-dont-use/ <-- Interresting commands to spice up your Linux life
http://cb.vu/unixtoolbox.xhtml <-- Advanced Linux
http://souptonuts.sourceforge.net/how_to_linux_and_open_source.htm <-- Some Linux Kung-Fu
 
Last edited:

amysmedley

New Member
Joined
Sep 10, 2009
Messages
4
Hi friends, :)

I'm newbie. So, I don't know where to post my problem.:sick: Currently, I have Ubuntu 9.04 in my laptop. I have graphics problem. My laptop display suddenly gets dotted signs. What should I do to remove this problem? :confused:
 
K

kingrob

Guest
Hi friends, :)

I'm newbie. So, I don't know where to post my problem.:sick: Currently, I have Ubuntu 9.04 in my laptop. I have graphics problem. My laptop display suddenly gets dotted signs. What should I do to remove this problem? :confused:

Upgrade to Ubuntu 9.10?
 

goodmanmorx

New Member
Joined
Sep 23, 2010
Messages
1
Hai.....

The POSIX thread libraries are a standards based thread API for C/C++. It allows one to spawn a new concurrent process flow. It is most effective on multi-processor or multi-core systems where the process flow can be scheduled to run on another processor thus gaining speed through parallel or distributed processing. Threads require less overhead than "forking" or spawning a new process because the system does not initialize a new system virtual memory space and environment for the process. While most effective on a multiprocessor system, gains are also found on uniprocessor systems which exploit latency in I/O and other system functions which may halt process execution. (One thread may execute while another is waiting for I/O or some other system latency.) Parallel programming technologies such as MPI and PVM are used in a distributed computing environment while threads are limited to a single computer system. All threads within a process share the same address space. A thread is spawned by defining a function and its arguments which will be processed in the thread. The purpose of using the POSIX thread library in your software is to execute software faster.

Managed Network Services
 
Top