After installing the VirtualBox software from Oracle start it up. Depending on your distribution and window manager it will be in the “System’ start menu or it may be somewhere else. Create a new Virtual Machine (e.g. another Linux box with Fedora – select these from the ‘OS Type’ drop-down boxes). You may select an […]
Day: 25 March 2011
Help I can’t write to my windows disk/partition from linux!
There may be several possible causes why one would not be able to access their Windows hard disk or windows partition. If we assume that obvious human errors are out of the question (e.g. permissions errors due user not having write permissions to the directory of the mount or user not specifying the ‘-o w’ […]
How can I make gcc do this…

This post will be dedicated to gcc’s command line options and various other questions related to compiling/building your code with gcc. For example… ——————– How can I get gcc to generate assembly code for my C file: gcc -O2 -S -c foo.c ——————– How can I tell gcc to generate an assembly listing? (that is […]