Vista owners beware
#31
Posted 30 November 2007 - 12:33 PM
It's raining (again), annnd It's kinda f**king cold and I would very much like to know when exactly does the whole warming part of global warming kick in!:rainumbrella:
sospesa
#32
Posted 30 November 2007 - 04:50 PM
alexander said:
literally 23 seconds and: http://ftp.osuosl.or...esktop-i386.iso
or you can literaly ask them to mail you the CD for free! Get Ubuntu - Download, request a CD, or buy on CD/DVD | Ubuntu
all you need is a program to burn it, i hope you have a cd burning program or would you like a link to that as well?
Literally 2hrs 45 min...695MB
WTF kind of modem and ISP you got?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!?!
And where can I get them.
It's raining (again), annnd It's kinda f**king cold and I would very much like to know when exactly does the whole warming part of global warming kick in!:rainumbrella:
sospesa
#33
Posted 03 December 2007 - 07:23 AM
PS nightshift is a little too light for me... i use my custom theme in stylish to further darken it
if you want a link to a really great piece of burning software.... Check out Infra Recorder found here: InfraRecorder » Downloads
A Mirror by the way is a server that continuously updates it's content, copying it from the original server(s) and hosts it. So to lessen the load on Ubuntu servers, many supporters of the ubuntu project host their own mirrors (for free) so that more people can more easily download the product. Unfortunately Ubuntu folks did not build in integration for finding mirrors based on your location, but hey, they have a Distro to update and run and stuff
yes, once you download the image to your computer, all you need is a blank cd and a burning program, burn the Iso onto the cd (not as iso, so don't just drag and drop, go through menus and find the burn image or burn from image or burn iso something to that extent in the menu selection and point it to the iso...
And as i said, i didn't mean to snap at you, it was just one of those days, and i had a wicked migrane...
Friends?
Caution: some thinking required when using this product, keep your axons and dendrites inside your head at all times.
#34
Posted 03 December 2007 - 12:58 PM
I've got it and it works. Sadly however the hard drive on my beater is k-put...FUBAR....no read no write....Dmit!!!! Figures finally have a use for the 'ol POS and it decides not to work!
I would install on this computer but I don't wish to risk screwing it up. (Sweetie would kill me!).
It's raining (again), annnd It's kinda f**king cold and I would very much like to know when exactly does the whole warming part of global warming kick in!:rainumbrella:
sospesa
#35
Posted 03 December 2007 - 04:21 PM
No installation necessary.
---
"There are no passengers on Spaceship Earth. We are all crew." - Marshall McLuhan
"We must not forget that when radium was discovered no one knew that it would prove useful in hospitals. The work was one of pure science. And this is a proof that scientific work must not be considered from the point of view of the direct usefulness of it." - Marie Curie
#36
Posted 03 December 2007 - 05:17 PM
freeztar said:
No installation necessary.
Actually I downloaded a "live cd"
and an "installation cd"
The "live" to try it.
The install so I could tinker with it as an "actuall" O.S. on my beater.
It's one thing to boot up the live cd and go oooo ahhhhhh nifty!
It's quite another to actually install it add accessory programs* and actually use it as I presently use my XP o.s.
In other words a real world comparison of my present o.s. and a possibly better one without a learning curve system crash on my good computer! (OH SH**!!!!!!!!!! Tell me I didn't just delete that!!!!! F###! Where's my backups?!?!?!?!?!?!!)
*A media player, music editing software, imaging software etc.
(It's not an entirely fair test though as my beater is a 1.2Ghz wonly 128mb sys ram, 64mb vid while this one is a 3Ghz with 1.2G of sys ram, 512mb vid.)
It's raining (again), annnd It's kinda f**king cold and I would very much like to know when exactly does the whole warming part of global warming kick in!:rainumbrella:
sospesa
#37
Posted 04 December 2007 - 06:08 AM
Oh and yes you can read and most likely write to your windows partitions from linux.... It may not be automated in Ubuntu, but it's not hard to do
(# indicates a command for you to run)
Pop open a terminal
# su
now you are running as root (if asks for password, it should be empty, if it does not do anything, then you might be running as root, to check)
# whoami
should display root
Now to find your hard drive partitions
# ls /dev/hd*
if you see something like hda hda1 hda2 hda3 hdb hdb1 hdb2 hdc then you are running an ide drive, if you only see hda hdb hdc then you are not and should try
# ls /dev/sd*
should display a list of scsi/sata derives like sda sda1 sda2
ok at this point what do those mean, hda or sda indicates a drive or lack of thereof, if you have just hda then that means you have an unpartitioned drive, but further checking is needed, hda/sda1 or any other number indicate a partition of the drive so if you see hda hda1 hda2 you know that you have a hard drive hda with 2 partitions (ps linux will show hidden partitions with utils and stuff, except for the crazy ibm ones)
now that you see the list you need to figure out which partition you want, in this cfdisk is an invaluable tool
# cfdisk /dev/hda
this will bring you into a text-window interface that shows you partitions and allows you to allocate space. if you want to preserve data DO NOT use this tool to repartition your drive, but if you just need to find info or partition a new hd, this tool is as good as it gets. anyhow, not which partition you want to use (generally the bigger one) and quit out of the tool without writing or changing anything (space will set the boot flag on the partition, so don't use it too much, right/left moves between menu selections at the bottom enter chooses, also there are short keys)
ok so now that you know which partition you are going to use, and in my case i will use hda2 as an example, but it very easily can be sda1 or hda3 or or even sdb1.... etc (last hd device is generally the cd/dvd drive wich is also linked to by /dev/cdrom)
if you just want read access to the drive
# cd /media
# mkdir my_windows
# mount -t ntfs /dev/hda2 /media/my_windows
# cd /media/my_windows
# ls -lsah
you should now see all the files in your windows drive (folders, hidden files, hashes all!)
you will also be able to navigate there via the graphical file explorer
Write access IS EXPERIMENTAL (aka reverse engineered, but works very well, yet still BE WARNED) Ah, also i can't recall if ubuntu live cd had ntfs-3g set up in it, so this may or may not work.... will work if you have ntfs-3g
# cd /media
# mkdir my_windows
# mount -t ntfs-3g /dev/hda2 /media/my_windows
# cd !$ (or cd /media/my_windows)
# ls -lsah
Should now display all the files
to test write support
# touch test
# ls te*
if it shows test as one of the outputs then you are good... if not then you did something wrong
Pay attention if you have any errors, remember that reading is essential, so use the skill
Caution: some thinking required when using this product, keep your axons and dendrites inside your head at all times.
#38
Posted 12 February 2008 - 03:05 PM
Granted it's ancient (built 2002), it's a bit slow but it works!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
It's raining (again), annnd It's kinda f**king cold and I would very much like to know when exactly does the whole warming part of global warming kick in!:rainumbrella:
sospesa
#39
Posted 13 February 2008 - 06:25 AM
yes back to dual boot of linux/leopard, got compiz fusion running and kiba dock compiled
Caution: some thinking required when using this product, keep your axons and dendrites inside your head at all times.
#40
Posted 13 February 2008 - 03:18 PM
It's raining (again), annnd It's kinda f**king cold and I would very much like to know when exactly does the whole warming part of global warming kick in!:rainumbrella:
sospesa
#41
Posted 13 February 2008 - 04:06 PM
Quote
in a securityfocus article titled "Owning Vista from the Boot"
Good article, I'm still running XP and was thinking about upgrading to Vista hopping that it was better, but thinking hard about Linux now Questions on this at end.
Quote
Be afraid.
Be very afraid.
Buy a Mac.
I got scared when I want to Window 95.
Quote
due not to evil intentions or technical negligence, but because the modern OS/application paradigm is inherently insecure – but again, that’s a subject for another thread.
If this thread gets started Please give me an invite, I would like to know more on this.
Quote
Come on. Vista is about as clever as a toaster strapped to a wheelbarrow.
Quote
How did you guys get to the internet before they invented electricity?
(joking of course)
LOL
Quote
"The Top Ten Reasons Why Windows is Inferior"???
LOL
Quote
lol you are probably the only person here who actually read it, it really is spot on..!
I read it and all of the attached links, and yes it's "spot on"
Quote
Chevy Corvair
I had one of this when I was 17, that thing never did run right.
Quote
I have not gotten the blue screen of death for years.
I have gotten the black screen of annoyance though. :-P
and now I get the all programs shut down and go to the start up screen, and think about it thingy.
Quote
I read it too!!!
Didn't fully understand it...but I read it...forgot most of it
Trying to figure out how to "test drive" Linux on my PC w/out flipping-it- up
A rocket scientist I ain't
Man you are one funny dude, love to read your stuff.
I'd give you rep if I could for this.
Quote
Just burn a LiveCD like Knoppix or Ubuntu. Boot from the CD and test drive Linux. Reboot to get back to Windoze.
Good idea,
Quote
you dualboot, resize the windows partition (in case of ubuntu during the ubuntu install), install Linux and set up the box to ask you if you want to boot to windows or Linux (in case of ubuntu, once again, its a part of the installer, and is automagificated).
OK once I start the upload I wont be able to ask (only one PC at house) so is this a check the box or something else?
Quote
I just figured out today that I could change how this site displays on my pc....Nightshift
how did you do that, I know they were working on it but never heard any more about it.
Quote
Actually I downloaded a "live CD"
and an "installation CD"
The "live" to try it.
The install so I could tinker with it as an "actual" O.S. on my beater.
I'm glad you said "and installation CD" I thought all that was on the live CD.
Quote
It's one thing to boot up the live CD and go oooo ahhhhhh nifty!
It's quite another to actually install it add accessory programs* and actually use it as I presently use my XP o.s.
In other words a real world comparison of my present o.s. and a possibly better one without a learning curve system crash on my good computer! (OH SH**!!!!!!!!!! Tell me I didn't just delete that!!!!! F###! Where's my backups?!?!?!?!?!?!!)
I can hear that,
I hope I don't F**k up trying this!!!
Quote
freeztar, Ubuntu cds are live cds with the installation option (aka installer script and some packages)
Oh and yes you can read and most likely write to your windows partitions from linux.... It may not be automated in Ubuntu, but it's not hard to do
(# indicates a command for you to run)
Pop open a terminal
OK I printed all of this so once I start I have something to go on,
Now I'm curently running Windows XP Home Edition 2002, (on a Laptop)
with some Issues, IE: shuts down when I click on a link or when ever as in shut down twice just typing this response.
have 27.9 GB TTL with 8.9 GB free, running the FAT 32, NTFS
Question (1): will Linux run PC/online games, and if I like Linux and want to trash windows will I have any trouble.
Question (2): is there anything I should know before or after I install Linux
From what I've read Linux should run the rest of my programs as far as Word, E-Mail, IM, and Internet but do you know if it will run AutoCad and other Survey/Eng. programs?
Well I'm going to download the Linux and make a CD copy of it,
I'll wait for your input before I proceed.
"In all my years I have come to a conclusion that one useless man is a shame, two is a law firm and three or more is a congress. John Adams
Just an Old Dog, looking for some New MUD ;-)
.
#42
Posted 13 February 2008 - 04:57 PM
DougF said:
1.I got scared when I want to Windows 95.
2.Man you are one funny dude, love to read your stuff.
I'd give you rep if I could for this.
3.how did you do that, I know they were working on it but never heard any more about it.
4.Now I'm curently running Windows XP Home Edition 2002, (on a Laptop)
with some Issues, IE: shuts down when I click on a link or when ever as in shut down twice just typing this response.
5.have 27.9 GB TTL with 8.9 GB free, running the FAT 32, NTFS
1. I miss 3.1.
2. Just think...by the time a post makes it from my head to your screen it's been rethought, edited, thought about some more, re-edited, completely forgotten, scrapped rethought some more, re-edited and then either posted or run through the loop a few more times!
3.I really wish I knew:hihi: I haven't a clue....the first attempt at downloading a "livecd" yielded an OEM Installl disk the 10th or so try yielded a "Livecd" BEWARE the Mirrors!!!!! unless you speak geek.
4. check your cooling. My pc did that crap and all it needed (discovered after hours of *&*^*&%$#@ around) was a thorough cleaning of its cooling system.
5. Uuummmmmmmmmmmmmm..................yeah..........suuuuuuuuuuurrrrre.......
Ooooooooo.kaay...........yah.........what was the question?!?...............Uuuuuuuuuuuhhhhhhhhhhh......yeah.....what the *&@# is a TTL?!?!?!?!?!?!?!
It's raining (again), annnd It's kinda f**king cold and I would very much like to know when exactly does the whole warming part of global warming kick in!:rainumbrella:
sospesa
#43
Posted 13 February 2008 - 06:10 PM
Index of /mirrors/linux/linuxmint/releases
Quote
1. I miss 3.1.
Me also!
Quote
2. Just think...by the time a post makes it from my head to your screen it's been rethought, edited, thought about some more, re-edited, completely forgotten, scrapped rethought some more, re-edited and then either posted or run through the loop a few more times!
day-sa-vu
Quote
3.I really wish I knew I haven't a clue....the first attempt at downloading a "livecd" yielded an OEM Installl disk the 10th or so try yielded a "Livecd" BEWARE the Mirrors!!!!! unless you speak geek.
I'll have to do some digging, I didn't think it was running yet.
Quote
4. check your cooling. My pc did that crap and all it needed (discovered after hours of *&*^*&%$#@ around) was a thorough cleaning of its cooling system.
Been there done that. (first thought) All Clear,
and it shuts down to the start up screen and I can restart my Internet and such ASAP just like i just started for the first time till the next time.
Quote
5. Uuummmmmmmmmmmmmm..................yeah..........s uuuuuuuuuuurrrrre.......
Ooooooooo.kaay...........yah.........what was the question?!?...............Uuuuuuuuuuuhhhhhhhhhhh.. ....yeah.....what the *&@# is a TTL?!?!?!?!?!?!?!
This would be Geek stuff.
"In all my years I have come to a conclusion that one useless man is a shame, two is a law firm and three or more is a congress. John Adams
Just an Old Dog, looking for some New MUD ;-)
.
#44
Posted 13 February 2008 - 06:28 PM
alexander said:
Yep.
I merely said, "installation not necessary".
Quote
Yep, NTFS translations seem solid, but I haven't used it enough to see a flaw.
Quote
Pop open a terminal
# su
now you are running as root (if asks for password, it should be empty, if it does not do anything, then you might be running as root, to check)
...
Pay attention if you have any errors, remember that reading is essential, so use the skill
Thank you Alex!
---
"There are no passengers on Spaceship Earth. We are all crew." - Marshall McLuhan
"We must not forget that when radium was discovered no one knew that it would prove useful in hospitals. The work was one of pure science. And this is a proof that scientific work must not be considered from the point of view of the direct usefulness of it." - Marie Curie
#45
Posted 13 February 2008 - 06:30 PM
I haven't used Vista since I set up my linux/xp partitions and now it seems my password has slipped through the crevices of my long-term memory holding cells. A search party has turned up nothing.
I tried ophcrack with no luck.
Any other suggestions? Surely I can reset or change something while running in my xp or linux partition?
No loss to reinstall, except for time spent and an unsettling feeling of un-geekiness.
---
"There are no passengers on Spaceship Earth. We are all crew." - Marshall McLuhan
"We must not forget that when radium was discovered no one knew that it would prove useful in hospitals. The work was one of pure science. And this is a proof that scientific work must not be considered from the point of view of the direct usefulness of it." - Marie Curie

Help
Join now




Promote to Article












