
mylinuxlearnings.blogspot.com
LINUX LEARNINGSA blog to help C Linux developers
http://mylinuxlearnings.blogspot.com/
A blog to help C Linux developers
http://mylinuxlearnings.blogspot.com/
TODAY'S RATING
>1,000,000
Date Range
HIGHEST TRAFFIC ON
Friday
LOAD TIME
0.4 seconds
16x16
32x32
PAGES IN
THIS WEBSITE
19
SSL
EXTERNAL LINKS
53
SITE IP
172.217.11.33
LOAD TIME
0.391 sec
SCORE
6.2
LINUX LEARNINGS | mylinuxlearnings.blogspot.com Reviews
https://mylinuxlearnings.blogspot.com
A blog to help C Linux developers
LINUX LEARNINGS: Thread synchronization
http://mylinuxlearnings.blogspot.com/2013/04/thread-synchronization.html
This Blog is for LInux C Developers. Thursday, April 11, 2013. Q: How to use pthread cond wait();. Int pthread cond wait(pthread cond t *cond, pthread mutex t *mutex);. Or pthread cond timedwait(). Functions may occur.Since the return from pthread cond wait(). Or pthread cond timedwait(). Pthread mutex t mutex = PTHREAD MUTEX INITIALIZER; pthread cond t cond = PTHREAD COND INITIALIZER; int avail = 0;. If(avail = THRESHOLD) pthread cond signal(&cond); /* Wake sleeping consumer */. Pthread cond wait(&cond,...
LINUX LEARNINGS: Links soft and hard
http://mylinuxlearnings.blogspot.com/2013/04/links-soft-and-hard.html
This Blog is for LInux C Developers. Wednesday, April 3, 2013. Links soft and hard. Soft Link (Synbolic link):. Symbolic links are names that reference other files. It can refer to other directory also. Soft link can be made across file systems . When a hard link is made, then the i-numbers of two different directory file entries point to the same. Thats why hard links cannot span across file systems. Is used to delete link. Ln -s foo bar / make soft link. 538643 bar 538639 foo / inode no are different.
LINUX LEARNINGS: EOF end of file
http://mylinuxlearnings.blogspot.com/2013/04/eof-end-of-file.html
This Blog is for LInux C Developers. Wednesday, April 3, 2013. EOF end of file. There is no special character as EOF. At the end of ascii files. Both Windows and Linux have file systems that always know the exact length in bytes of the contents of a file, and have absolutely no need of any special character marking the file’s end. Long back system used to read in BLOCK fashion and then they needed special character Control-Z character decimal code 26, hex 1A. In C and C in file stdio.h. Links And My blogs.
LINUX LEARNINGS: Useful Commands redirecting console output
http://mylinuxlearnings.blogspot.com/2009/10/general-things.html
This Blog is for LInux C Developers. Sunday, October 25, 2009. Useful Commands redirecting console output. To make a file Zero size. Cat /dev/null filename.log. Directing Std out in file. Command and file name. REdirecting Error to stdout. Posted by Amit K Sharma (xamitx). Subscribe to: Post Comments (Atom). Links And My blogs. Useful Commands redirecting console output. Amit K Sharma (xamitx). View my complete profile.
LINUX LEARNINGS: Command to put all Co files in a directory
http://mylinuxlearnings.blogspot.com/2010/11/command-to-put-all-co-files-in.html
This Blog is for LInux C Developers. Tuesday, November 2, 2010. Command to put all Co files in a directory. Cleartool lsco -cview -all -short xargs -I {} cp {} /dest/path/. Its very useful in case of transfer files from local vob to Remote vob. CO all files in a file. Cat /newfile.txt xargs cleartool co -nc. To populate file list which need to be co from remote view :. Cleartool lsco -cview -all -short newfile.txt. Command to change name of a Vob element . Ct move src dest. Links And My blogs.
TOTAL PAGES IN THIS WEBSITE
19
C Learnings: September 2008
http://bitreader.blogspot.com/2008_09_01_archive.html
This blog is for those who love C programing. Tuesday, September 9, 2008. Http:/ www.open-std.org/JTC1/SC22/WG14/www/docs/n1256.pdf. Posted by Amit K Sharma (xamitx). Subscribe to: Posts (Atom). Good c stuff form Gowri my friend. Enter your search terms. Only search Amit's Blog. Welcome to c coders world. Amit K Sharma (xamitx). View my complete profile. Provided by website-hit-counters.com.
cpluspluslearnings.blogspot.com
CPP Learnings: V table compiler option to see calss heirarchy
http://cpluspluslearnings.blogspot.com/2013/03/v-table-compiler-option-to-see-calss.html
This blog is created to improve CPP and OOPS concept . It include OOPS concept , CPP FAQ , CPP Interview questions and many helpful material to improve CPP. Wednesday, March 13, 2013. V table compiler option to see calss heirarchy. Base: ZTV4base: 3u entries. 0 (int (*)(.) 0. 4 (int (*)(.) (& ZTI4base). Base size=8 base align=4. Vptr=( and base: ZTV4base) 8u). Derive1: ZTV7derive1: 3u entries. 0 (int (*)(.) 0. 4 (int (*)(.) (& ZTI7derive1). Base size=12 base align=4. Vptr=( and derive1: ZTV7derive1) 8u).
myinterviewsawaals.blogspot.com
Some questions for Interview purpose: Non Blocking Connect with Timeout
http://myinterviewsawaals.blogspot.com/2012/08/non-blocking-connect-with-timeout.html
Some questions for Interview purpose. Monday, August 13, 2012. Non Blocking Connect with Timeout. If there is no response retries will be done on interval which keeps increasing for minutes . If we need to return quicker connect should be done as nonblocking and time can be set for how long wait for SYN ACK from Server. Fd set fdset;. Struct timeval tv;. Int flags ;. If ( flags = fcntl(sock, F GETFL). Printf("fcntl get FL failed n");. If( fcntl(sock, F SETFL, O NONBLOCK). Printf("fcntl get FL failed n");.
myinterviewsawaals.blogspot.com
Some questions for Interview purpose: Traceroute
http://myinterviewsawaals.blogspot.com/2012/03/traceroute.html
Some questions for Interview purpose. Thursday, March 8, 2012. Q) How TraceRoute works. It works on the principle of TTL.Router decrements TTL while processing and if TTL is zero it drops the Packet and sends ICMP Error Time Exceeded. Mesage back to source HOST. In the ICMP Reply Message source IP is of Router which drops the packet. Every router in path must have respinded to source host and We got list of all HOPS on ROUTE. Q) What kind of message are send in traceroute? In Unix like OS. Q Why cant we ...
myinterviewsawaals.blogspot.com
Some questions for Interview purpose: June 2010
http://myinterviewsawaals.blogspot.com/2010_06_01_archive.html
Some questions for Interview purpose. Wednesday, June 16, 2010. Remote login Through C code? Printf("%d",m) whede m = 987. Endianess happens because of what? Why cant OS take care of it? How to write code which can be easily ported across OS? Hashing how to decide hash funciton? AVL tree , bst- Binary tree? Complexity ot binary tree? Q If i do malloc for 64 MB will it go if yes how . Does process memory increases . Q Is Stack frame Size constant . what is stack corruption. Q Use of extern in C.
cpluspluslearnings.blogspot.com
CPP Learnings: See Vtable compiler option
http://cpluspluslearnings.blogspot.com/2013/03/see-vtable-compiler-option.html
This blog is created to improve CPP and OOPS concept . It include OOPS concept , CPP FAQ , CPP Interview questions and many helpful material to improve CPP. Wednesday, March 13, 2013. See Vtable compiler option. Subscribe to: Post Comments (Atom). V table compiler option to see calss heirarchy. See Vtable compiler option. Http:/ www.programmersheaven.com/2/C-Plus-Plus-FAQ. Http:/ www.parashift.com/c -faq-lite/. Http:/ www.faqs.org/faqs/C -faq/. Http:/ oneparticularharbor.net/sam/interview.html.
cpluspluslearnings.blogspot.com
CPP Learnings: February 2010
http://cpluspluslearnings.blogspot.com/2010_02_01_archive.html
This blog is created to improve CPP and OOPS concept . It include OOPS concept , CPP FAQ , CPP Interview questions and many helpful material to improve CPP. Friday, February 19, 2010. In any inheritance Private members are not inherited . Public Inheritance : things will come as it is , Protect base- Protected deirved , Public base- Public derived . Private Inheritance : Things will come as Private Protected base- Private deirved , Public base- Private derived . Monday, February 1, 2010. How to do that?
cpluspluslearnings.blogspot.com
CPP Learnings: August 2010
http://cpluspluslearnings.blogspot.com/2010_08_01_archive.html
This blog is created to improve CPP and OOPS concept . It include OOPS concept , CPP FAQ , CPP Interview questions and many helpful material to improve CPP. Tuesday, August 24, 2010. C in C Code and C code in C. Extern "C" is understandable by only C compiler thats why we generaly wrap it in # if defs . When same code can be compiled by c compiler also. Only cpp compiler has defined cpluscplus. In cpp code if we want a function that will be callable from C program.We need declaration like this. F(7, 'a');.
C Learnings: May 2010
http://bitreader.blogspot.com/2010_05_01_archive.html
This blog is for those who love C programing. Friday, May 7, 2010. If we have same name static variable in two functions what will happen . Remember static variable goes in Data area . Val in f1 = 9. Val in f2 = 0. Posted by Amit K Sharma (xamitx). Subscribe to: Posts (Atom). Good c stuff form Gowri my friend. Enter your search terms. Only search Amit's Blog. Welcome to c coders world. Amit K Sharma (xamitx). View my complete profile. Provided by website-hit-counters.com.
C Learnings: Solution of C puzzeles
http://bitreader.blogspot.com/2010/04/soltion-of-c-puzzeles.html
This blog is for those who love C programing. Tuesday, April 13, 2010. Solution of C puzzeles. 1Solution : Problem is in comparison of d = -1 as unsigned int to Macro which is 5. 4294967295 (%u of -1 ) 5(%u of TOTAL ELEMENTS-2). OS HP-UX print is Erroneous '-'is not allowed in names . Reason is stdout is buffered to print we need fflush(stdout) or wait till buffer fills . Stderr is not buffered so hello-err cones to screen instantaneously. OUTPUT : In foobar1. I : 10 sizeof(i ) is: 4 i : 10.
TOTAL LINKS TO THIS WEBSITE
53
My Linux info
My rants to keep some documentation on my Linux box. Might help others as well. Subscribe to: Posts (Atom). Who and where am I. Erwin van Londen is a storage engineer and has been for the last 17 years. From large scale storage management operations to architecture and design via pre-sales and support engineering to sharing the knowledge with the interested. Interested in all things Tech. Specialised in storage from an architectural and technical perspective. View my complete profile.
My Linux Journal
Keeping track of all the fun things I make my linux box do. Friday, February 01, 2013. Convert a flash video into a animated gif. Mplayer "filename.flv" -nosound -vo gif89a:fps=15:output=output.gif -vf scale=240:180 -ss 1:19 -endpos 7 Convert a flash video into a animated gif. Posted by j at 7:27 PM. Saturday, April 16, 2011. Some handy SLAX tidbits. To run konqueror in full screen use this:. Kstart - fullscreen konqueror http:/ www.website.com. To hide the various tool bars edit konquerorrc:. Mkisofs -r...
Getting rid of Windows! | welcoming GNU+Linux on my laptop
Getting rid of Windows! Welcoming GNU Linux on my laptop. Laptop is dead / she’s a frog! February 10, 2007. This is what happened:. The wonders of evolution! Anyway, up to this point I still thought “No Problemo! 8221;, just reboot in Windy and ask my forum friends for advice before starting to freak out… But pffffffff… Now GRUB can’t load itself (error 15). And if GRUB can’t load a newbie like me hasn’t got a clue how to proceed from there…. It inspired him to found the Free Software Foundation. I read ...
My Linux Learning | Because if I write it here I'll remember it
Because if I write it here I'll remember it. Spoofing a MAC address on OS X. February 21, 2014. Great github project here – simple to install, simple to use. January 3, 2014. Wget http:/ dl.getdropbox.com/u/332246/AppleUSBVideoSupport sudo apt-get install isight-firmware-tools sudo cp AppleUSBVideoSupport /lib/firmware sudo ift-extract -a /lib/firmware/AppleUSBVideoSupport. And then it needs a full shutdown and restart, and then. Bus 001 Device 008: ID 05ac:8501 Apple, Inc. Built-in iSight [Micron].
LINUX LEARNINGS
This Blog is for LInux C Developers. Thursday, April 11, 2013. Q: How to use pthread cond wait();. Int pthread cond wait(pthread cond t *cond, pthread mutex t *mutex);. Or pthread cond timedwait(). Functions may occur.Since the return from pthread cond wait(). Or pthread cond timedwait(). Pthread mutex t mutex = PTHREAD MUTEX INITIALIZER; pthread cond t cond = PTHREAD COND INITIALIZER; int avail = 0;. If(avail = THRESHOLD) pthread cond signal(&cond); /* Wake sleeping consumer */. Pthread cond wait(&cond,...
My own linux | Just another linux weblog
Just another linux weblog. The joys of wifi working! July 23, 2014. This is a short post – but it feels especially awesome since wi-fi works straight out of the box – well, almost! I have just bought a new Lenovo B590 and installed 14.04 on it. Much to my dismay, it would refuse to connect to the internet. It seemed to be due to a non-free Broadcomm chipset driver. Well, all it takes is –. Sudo apt-get install –reinstall bcmwl-kernel-source. I’m connected (and blogging! March 13, 2011. May 2, 2010. After...
Bienvenue chez OVH
Bienvenue sur notre offre Start. Mettre votre site en ligne. Astuces PHP chez OVH. Discutez avec nos autres utilisateurs sur notre forum. Toujours pas de solution? Les outils à votre disposition :. Installés sur votre hébergement. Merci d'avoir choisi OVH. Http:/ uptime.netcraft.com/up/graph? Http:/ toolbar.netcraft.com/site report? Url=http:/ www.mylinuxmobile.com.
My Linux Notebook
Linux Tutorials, Howtos, Tips and Troubleshooting. Enter your email address:. How to Play mp3 files with amarok in Ubuntu Linux 9.04. Are you ready to amarok. Sure but why can't I play mp3 files with amarok? How to Play mp3 files with amarok in Ubuntu Linux 9.04. Amarok 2 in Ubuntu 9.04 doesn't come with mp3 support. In order to play mp3 files with Amarok in Ubuntu 9.04 we need to install the libxine1-ffmpeg package. Installing amarok mp3 support using Synaptic package manager. Monday, May 11, 2009.
My Linux Notebook
Off – Topic. ফ র শ স স ট ম ইন সটল শন র পর আম য কর …. Asymp; Leave a comment. শ র কর র আগ য র ল ন ক স র জগত একদমই নত ন, ত দ র জন য শ র কর র সবচ য় ভ ল উপ য় হচ ছ আদন ন ক ইয় ম র “সহজ উব ন ট শ ক ষ ”. বইট অন সরণ কর এর চ য় সহজ ভ ব ‘উব ন ট শ ক ষ ’ আপন ক ক উ দ ত প রব ন আম ব য ক ত গতভ ব এই ল খ র জন য ক তজ ঞ ল ন ক স র জগত সব ইক স ব গতম! থ ক অন কট ই অন প র ণ ত য র একট ব স ত র ত জ নত চ ন, ত র ম ল প স টট দ খ আসত প র ন. ০১ – স স ট ম আপড ট কর. Sudo apt-get update & sudo apt-get upgrade. ০৫ – Gimp ইন সটল কর. Gimp ইন সটল ...
mylinuxnotes | ubuntu linux things worth noting cuz i may need to look up again
Sorry, no posts matched your criteria. The Shocking Blue Green Theme. Blog at WordPress.com. Follow “mylinuxnotes”. Get every new post delivered to your Inbox. Build a website with WordPress.com.