/srv/irclogs.ubuntu.com/2007/11/01/#ubuntu-classroom.txt

_hopexjrib: are the updates necesary or recommended?00:51
jribhi00:51
jribdepends on the update00:51
jribit would be updates directly from innotek00:52
jribbasically, whenever they put a new .deb on their website, you don't have to go check for it and download it yourself00:52
_hopexand if I donwload the .deb file would it onstall another copy or update the existing one?00:54
jribupdate00:54
jribit would be like windows00:55
_hopexI'll try it by now... And check if it works usefully fast.00:55
jribyou check the website for a new version, download it and install it.   Instead of letting the package manager do all the work and then ask you if you want to update00:55
_hopexI need 10240 Mb is that 1Gb or 10Gb ?00:56
jribcloser to 10...00:57
_hopexoh...00:57
_hopexI'm running out of space...00:57
_hopexhow can I check the available space in the system?00:58
jribdf -h00:58
jribor applications -> accessories -> disk usage analyzer00:58
_hopexok, but how can I know wich is the dev Im using?00:58
jribyou can check the output of 'mount'00:59
_hopexsorry, I seeI have 5,9 G free00:59
_hopexWould virtual box run with, let's say 2Gb or 3 max?01:00
jribram?01:01
_hopexI have 11 Gb free in a NTFS partition. Wich it isnt good for this purpose, is it usefull?01:01
_hopexI wish it was RAM :D01:01
jribyou can *probably* use the ntfs space01:01
_hopexwhat if it is not good? Would my data be broken? How can I make sure?01:02
_hopexor can I use the 3Gb ??01:03
jrib_hopex: if windows fits on 3gb, sure01:06
_hopexjrib: not sure what to do. Using the NTFS would be more suitable for my because i guess I'll need the space for linux. But if the data of that partition brakes, I have no backup? What would you choose?01:07
jrib_hopex:  I do not use ntfs and do would not write to it on linux without backups01:08
jribdarren: first we need a mount point for the drive, so: sudo mkdir /media/sdb101:09
jribdarren: or name it whatever you want but be consistent01:09
_hopexI have backup for linux so, lets push new and use a couple of GB for windows. One question, does virtual box make a big file or a directory tree?01:10
darrenjrib: ok01:10
jrib_hopex: one big file01:10
_hopexwait a second... I have another machine with 76Gb free! That's the one!01:11
_hopexI'll install virtual box in that one, older machine. So I can try before risking the laptop hd.01:11
jrib_hopex: good idea01:12
jribdarren: done with that?01:12
darrenjrib: yup01:12
jribdarren: pastebin output of 'mount' for me real quick01:12
darrenjrib: http://pastebin.com/d36ba3cb001:13
_hopexi cannot copy to the shared folder, ho w do I do that from a console?01:13
jrib_hopex: what shared folder?01:14
jribdarren: k, now edit your fstab: gksudo gedit /etc/fstab01:14
_hopexi wanted to copy the deb file to the samba shared dir in the old machine, but not working01:15
jribdarren: add the line: UUID=6CEC2EDEEC2EA276 /media/sdb1 ntfs-3g defaults,locale=en_US.utf8 0 001:15
_hopexanyway, I will add the repository and install by apt-get01:15
jrib_hopex: oh, I know nothing about samba, maybe ask #ubuntu again01:15
darrenjrib: so if I called the drive windows my line would read? UUID=6CEC2EDEEC2EA276 /media/windows ntfs-3g defaults,locale=en_US.utf8 0 001:16
_hopexanyway wich is the repositiry file /etc/apt??01:17
jrib_hopex: /etc/apt/sources.list01:17
jribdarren: exactly01:17
_hopexthanx01:17
darrenjrib: ok done01:18
jribdarren: now 'sudo mount -a'01:19
jriboh, we forgot one thing01:19
jribto give you permission...01:19
jribdarren: how do you want the permissions setup?01:19
darrenjrib: I don't know what my options are.. I guess I want my user to have full access, I don't want to have to be fooling around with root stuff on that drive at all01:21
jribdarren: k, you don't have other users on the computer so no reason to setup a group with access?01:22
darrenjrib: nope, just myself.01:22
jribk, what is the output of 'id'?01:23
darrenuid=1000(darren) gid=1000(darren) groups=4(adm),20(dialout),24(cdrom),25(floppy),29(audio),30(dip),44(video),46(plugdev),104(scanner),108(lpadmin),110(admin),115(netdev),117(powerdev),1000(darren)01:23
jribok, so to the options column for this ntfs drive, add "uid=1000,gid=1000".  Paste the line here afterwards01:24
darrenjrib: so my line would look like UUID=6CEC2EDEEC2EA276 /media/Windows ntfs-3g uid=1000,gid=1000,locale=en_US.utf8 0 001:26
_hopexjrib: i have added the repository and the key. Also updated apt. How do I install virtual box now?01:26
jribdarren: yes, but make sure you capitalized the 'W' when you used mkdir too as linux is case-sensitive01:27
_hopexjrib: is the package name vbox?01:27
darrenjrib: yes, made sure of that.01:27
jrib_hopex: sudo aptitude install virtualbox, or add/remove or synaptic for a gui.  But, since you already installed the deb it probably will not do anything01:27
jrib_hopex: virtualbox01:28
jribdarren: did you run 'sudo umount -a' last time?01:28
darrenjrib: yes01:28
darrenjrib: err no I didn't unmount sorry01:28
jribdarren: k, good, run in now then01:29
jribs/in/it01:29
_hopexjrib: I am installing in the old machine, running ubuntu too01:29
_hopexIt`s donwloading... 10%01:29
darrenjrib: I saw you say earlier its unreliable to write to an NTFS drive in linux without a backup... is that right?01:29
_hopexbtw, what is the difference between aptitude and apt-get?01:30
jribdarren: that's my personal belief but many people have been doing so for a while.  I do know that MS has not released any specs for ntfs so even though the people behind it have done a great job, they still have to fight with MS01:30
jrib_hopex: not much now, but aptitude remembers dependencies installed.  So if you install A and it pulls in B, then if you remove A, it will remove B if nothing else needs it.  apt-get does this with auto-remove now01:32
darrenjrib: what a surprise... ms not co-operating.   Ok, thank you very much for your help and patience with a VERY newbie :)01:32
_hopexjrib: it's good to know the difference01:35
_hopexjrib: Creating group vboxusers. Users of vbox must be member of that group in order to have write permission to /dev&vboxdrv. Otherwise starting VMs not be possible. How do I add actual user to that group? addgrp username groupname??01:41
jribadduser or addgroup01:43
_hopexIm in the user and groups windows inside System Preferences. I choose the my no.root user and then? Or is it better to use the console?01:43
jrib"better" is subjective but I usually prefer it and it is easier to communicate on irc using console commands01:44
_hopexI added my.user to the vboxdrv group, with the window01:44
jribyou mean vboxusers?01:44
_hopexthats it. sorry,01:45
jribyou'll need to log out and back in for that to take effect I believe01:45
_hopexthe VirtualBox Icon is missing, there was a menu icon when I installed the .deb package01:46
jribnot in system tools at all?01:46
_hopexnop01:46
jribrun 'killall gnome-panel'01:46
_hopexnow it is. cool01:47
_hopexlogin logout?01:47
jribyep01:47
_hopexdone01:49
_hopexbase memory 192Mb, is that allright?01:51
jribyep01:51
_hopexnew..01:51
_hopexdynamic...01:52
_hopex10 Gb...01:52
_hopexFinish. is that allright?01:53
jribyep01:58
_hopexdone01:59
_hopexnow i have to installl01:59
_hopexit's working... cool :)02:06
_hopexNTFS or FAT?02:07
_hopexjrib: NTS (fast) or just NTFS? Will it affect the performance?02:10
jrib_hopex: I don't know what NTS (fast) is02:11
_hopexjrib, Windows installation asks for formatting options, and it asks FAT or NTFS and if you want Fast formatting or normal. As It`s a clear "partition" I have selected fast format. Now it is copying 27%02:13
_hopexjrib: I see the Video Memory for the XP virtual box is just 8Mb, wont this limit the screen view? Can I change that?02:16
_hopexjrib: I want to use some graphical tools, that aren't still for linux, that`s why I'm installing the vbox and asking this question.02:17
_hopexjrib: it's really cool to see this win install in a small windows :D xD XD02:20
_hopexthe innotek team has done a great job02:23
_hopexjrib: do I need to install the drivers and stuff after install, or they won't work or something?02:25
jrib_hopex: you should install guest additions02:32
jribthen you can use fullscreen etc02:32
_hopexWinXP is starting now...02:35
_hopexall is black.... Wellcome02:36
_hopexthere it is the Messenger... oh my god!02:38
_hopexok it is working, more or less. So if I install GPU drivers will there by any video issue?02:39
_hopexjrib: I will try02:41
_hopexjrib does the WinXP allways appear in all desktops at the same time?02:43
_hopexjrib: One important question. How can I copy stuff from "c:" or to "c:" ?02:51
_hopexjrib: vbox got a really goof help file.03:11
_hopexsee you03:12
=== pleia2_ is now known as pleia2

Generated by irclog2html.py 2.7 by Marius Gedminas - find it at mg.pov.lt!