PDA

View Full Version : New to Linux


zoomy942
08-21-08, 11:26 AM
My older brother, whom i might add is about the smartest Linux person I know (and the most passionate Windows hater) has convinced me try it out.

He said i should start out with Ubuntu and geenome. Well, i am willing to start but honestly, being a sorrid windows guy for so many years, i dont even know where to start. I have an HP 2710P tablet running Vista Ultimate, but i would LIKE to dual boot with Linux.

He is going to help me along as well, but if you guys have information about how to even start, i'd love to hear it.

here are the links he gave me so far.

https://wiki.ubuntu.com/LaptopTestingTeam/HP2710p_Hardy

http://gentoo-wiki.com/HARDWARE_HP_Compaq_2710p

six_storm
08-21-08, 06:43 PM
www.ubuntuforum.org

The best thing to do is just to goof around with it. And trust me, if you mess around with stuff as much as I do, you will be reinstalling a few times. ;) Actually, I take that back. You might have to reinstall once or twice at most. Things have really shaped up for Linux the past year.

zoomy942
08-21-08, 07:26 PM
i got it installed finally.

i am working to get Evolution mail to connect to my exchange server (its already synced to gmail) and i am working on getting amsn installed too.

this rocks man. i am really realy liking this. i didnt set a drive as a swap drive since i have 3GB of ram. think that'll be okay?

Bearclaw
11-10-08, 12:46 PM
Nice job installing! About damn time... :bleh:

crainger
11-10-08, 04:36 PM
Check post dates before you post and bump BearBuddy.

zoomy942
11-10-08, 04:52 PM
haha. wow - in 10 weeks its amazing how much i have learned. geez

fhj52
01-02-09, 11:15 PM
... i didnt set a drive as a swap drive since i have 3GB of ram. think that'll be okay?The kernel needs a little swap space.
Try 100MB(it actually uses less but that is a good number). The only other time swap is used depends on how much you have running at once or if some errant program has a memory leak. A memory leak w/o a large swap will quickly stall the system but in almost ten years, I only experienced that once. Even then, not a memory leak precisely.

You can use a "swapfile" and not set a drive(partition) for swap so there is no need to (re)partition space to accommodate a swap.

This will create swapfile of ~ 100 MB on the root (/) partition
dd if=/dev/zero of=/swapfile bs=1024 count=100000(dd (http://linux.die.net/man/1/dd))

Then this formats it as swap
mkswap /swapfile(mkswap (http://linux.die.net/man/8/mkswap))

Then you need to turn it on
swapon /swapfile(swapon (http://linux.die.net/man/2/swapon))

Other locations(other than /) are okay. Best location is on a separate physical drive, if you have a second physical drive.
You will want to set it to activate at every boot. I'll leave that for you to determine how to do it(you did say "its amazing how much i have learned"). It's not hard ... ;).

Please be careful with dd command. It is very powerful.

asloman
02-08-09, 12:34 PM
The kernel needs a little swap space.
Try 100MB(it actually uses less but that is a good number). The only other time swap is used depends on how much you have running at once or if some errant program has a memory leak.
.......


If, like me, you never wish to reboot, but prefer to suspend to disk before switching off and later resume, with all applications left running, you'll need a swap area to be used by the suspend system. The version I use is what used to be called SWSUSP2 (software-suspend2) now called 'tuxonice'. I simply install the kernel and kernel-devel packages prepared by Matthias Hensler, here for Fedora users.
http://mhensler.de/swsusp/download_en.php
If you are using Ubuntu you may be able to find another site. Try running synaptic and tell it to search for tuxonice.

It is probably a good idea, as a precaution, to have a swap area twice the size of your physical memory, if you have lots of spare disk space. (In the past that was often said to be an absolute requirement). If all your running processes are much smaller than the total amount of physical memory, then the need to swap stuff out in order to claim a large contiguous chunk of physical memory is unlikely to arise. Maybe modern memory-management designs make that unnecessary anyway.

Aaron
http://www.cs.bham.ac.uk

jcrox
02-19-09, 01:31 AM
A Practical Guide to Ubuntu Linux 2nd Edition

1000+ pages of pure geek... I'm on my way :D

ShiningArcanine
01-29-10, 06:42 PM
The kernel needs a little swap space.
Try 100MB(it actually uses less but that is a good number). The only other time swap is used depends on how much you have running at once or if some errant program has a memory leak. A memory leak w/o a large swap will quickly stall the system but in almost ten years, I only experienced that once. Even then, not a memory leak precisely.

The kernel can run without any swap space. Also, if the system runs out of memory, the kernel will begin killing stuff randomly to be able to allocate more.

Drolfrawd
01-29-10, 07:12 PM
i got it installed finally.

i am working to get Evolution mail to connect to my exchange server (its already synced to gmail) and i am working on getting amsn installed too.

this rocks man. i am really realy liking this. i didnt set a drive as a swap drive since i have 3GB of ram. think that'll be okay?

Hey well done, I was wondering if you got evolution mail to connect to exchange server and if so what version of exchange

grey_1
01-29-10, 09:09 PM
Hey well done, I was wondering if you got evolution mail to connect to exchange server and if so what version of exchange

You would be better off PMing him Drol. Old thread that someone else bumped.

Drolfrawd
01-29-10, 09:14 PM
Thanks grey , i will do that , i didn't think any linux mail clients worked with exchange, hence interest

zoomy942
01-30-10, 01:43 AM
You would be better off PMing him Drol. Old thread that someone else bumped.

But zoomy doesn't neglect his old threads


Hahahahahahah

grey_1
01-30-10, 08:25 AM
But zoomy doesn't neglect his old threads


Hahahahahahah

:lol:

six_storm
01-30-10, 07:26 PM
What is Linux? I've never used it before . . . :wonder:

LydianKnight
01-30-10, 09:30 PM
i got it installed finally.

i am working to get Evolution mail to connect to my exchange server (its already synced to gmail) and i am working on getting amsn installed too.

this rocks man. i am really realy liking this. i didnt set a drive as a swap drive since i have 3GB of ram. think that'll be okay?

creating the /swap partition is ALWAYS recommended as it makes the kernel able to move unused memory pages, so if you're running tons of applications and leave the computer on for a long time, trust me, you'll want it, otherwise the system response becomes quite sluggish (but this varies from person to person, but it's more or less the general consensus among distro builders).

LydianKnight
01-30-10, 09:34 PM
The kernel can run without any swap space. Also, if the system runs out of memory, the kernel will begin killing stuff randomly to be able to allocate more.

The kernel itself can run without a swap, but it's recommended. Do you want the kernel to begin killing stuff 'randomly' when you have some of your important apps running on the background?

Because... I would not be very happy if the kernel suddenly decides to kill a memory page actually owned by... let's say (as an example) Blender in the middle of a render or Avidemux in the middle of a conversion process, things like that :P

Redeemed
01-30-10, 09:35 PM
I still cannot believe that zoomy is...
























not rocking linux n-e-moar? :o


:p Sorry zooms- ya'll don't post much so I just gotta' rib ya'. :)