Gordon52

Differences between revisions 14 and 15
Revision 14 as of 2008-07-09 12:35:37
Size: 2263
Editor: client-86-24-144-11
Comment:
Revision 15 as of 2008-08-06 16:38:25
Size: 2269
Editor: localhost
Comment: converted to 1.6 markup
Deletions are marked like this. Additions are marked like this.
Line 5: Line 5:
   A: Download [http://www.microsoft.com/downloads/details.aspx?FamilyID=9d467a69-57ff-4ae7-96ee-b18c4790cffd&DisplayLang=en Windows Server 2003 Resource Kit Tools]. Install, pull up command from Windows Resource Kit in the Program menu and type: cdburn.exe yourfilename.iso.    A: Download [[http://www.microsoft.com/downloads/details.aspx?FamilyID=9d467a69-57ff-4ae7-96ee-b18c4790cffd&DisplayLang=en|Windows Server 2003 Resource Kit Tools]]. Install, pull up command from Windows Resource Kit in the Program menu and type: cdburn.exe yourfilename.iso.
Line 9: Line 9:
   Q: How do you access windows files after installing Ubuntu to hard drive? The [https://help.ubuntu.com/6.10/ubuntu/desktopguide/C/ch10s02.html Manual] says: Open System->Administration->Disks..., but "Disks" wasn't in the menu!    Q: How do you access windows files after installing Ubuntu to hard drive? The [[https://help.ubuntu.com/6.10/ubuntu/desktopguide/C/ch10s02.html|Manual]] says: Open System->Administration->Disks..., but "Disks" wasn't in the menu!
Line 11: Line 11:
   A: Try [https://help.ubuntu.com/6.10/ubuntu/desktopguide/C/ch10s03.html this].    A: Try [[https://help.ubuntu.com/6.10/ubuntu/desktopguide/C/ch10s03.html|this]].

Problems I encountered as a Linux newbe:

  • Q: How do you burn the Ubuntu iso on windows xp???

    A: Download Windows Server 2003 Resource Kit Tools. Install, pull up command from Windows Resource Kit in the Program menu and type: cdburn.exe yourfilename.iso.


  • Q: How do you access windows files after installing Ubuntu to hard drive? The Manual says: Open System->Administration->Disks..., but "Disks" wasn't in the menu!

    A: Try this.


  • Q: How do I compile HelloWorld.cpp (file is on my desktop)? A:

#include <iostream>

int main()

{

  • std::cout << "Hello, world!" << std::endl; return 0;

}

/Desktop$ g++ hello.cpp -o hello

/Desktop$ ./hello

Hello, world!


  • Q: How do I make a link on my desktop to open a shell?

    A: Applications>Accessories> click and drag "Terminal" onto desktop

.

  • Q: How do I change the shell's working directory on opening (so I don't have to type cd ....)

    A: Right mouse click on terminal icon > Properties > Launcher > edit Command to read "gnome-terminal --working-directory=Desktop"


  • Q: How come when I open FileBrowser and search for g++ it doesn't find it? (I've tinkered with every search option I could find.) P.S. g++ is at user/bin. A: ?



  • Q: What is the keyboard shortcut for copy and Paste? ctrl+v doesn't work. A: ?


  • Q: Why don't my python programs run, they worked fine in Windows.

    A: Add "#! /usr/bin/python" to the beginning of the file and make sure it's executable - Right click > Proprties > Permissions. Also, IDLE is available from the Add/Remove menu.


CategoryHomepage

Gordon52 (last edited 2008-08-06 16:38:25 by localhost)