Author Topic: I finally found a Linux distro!  (Read 6175 times)

0 Members and 1 Guest are viewing this topic.

Offline MyndFyre

  • Boticulator Extraordinaire
  • x86
  • Hero Member
  • *****
  • Posts: 4540
  • The wait is over.
    • View Profile
    • JinxBot :: the evolution in boticulation
I finally found a Linux distro!
« on: September 12, 2005, 06:56:48 pm »
Fedora Core 4.  :)  Works nearly out of the box on my laptop; just need to make one small modification to some configuration file so that sounds don't crash it, install NDISWrapper, and then update the yum configuration.

So then....  Right now, I'm making an image of my laptop hard drive.  I plan on reinstalling everything fresh, but I wanted to have a backup.  I'm using dd.

The question is -- well, maybe not the question, but the problem is -- I need to build a Linux live CD with dd,  NDISWrapper, and my laptop's NDIS driver.  I know my way around the command line fairly well, but I don't think I know how to make Windows and Linux talk (so that Linux can read my Windows file share).  I also don't know how to customize a live CD.  :P

Thoughts?
I have a programming folder, and I have nothing of value there

Running with Code has a new home!

Our species really annoys me.

Offline Newby

  • Moderator
  • Hero Member
  • *****
  • Posts: 10877
  • Thrash!
    • View Profile
Re: I finally found a Linux distro!
« Reply #1 on: September 12, 2005, 07:02:18 pm »
Why are you making a Linux Live CD? Why not just use something like Knoppix? :p

FC4 is evil. Slackware / FreeBSD for the win.
- Newby
http://www.x86labs.org

Quote
[17:32:45] * xar sets mode: -oooooooooo algorithm ban chris cipher newby stdio TehUser tnarongi|away vursed warz
[17:32:54] * xar sets mode: +o newby
[17:32:58] <xar> new rule
[17:33:02] <xar> me and newby rule all

I'd bet that you're currently bloated like a water ballon on a hot summer's day.

That analogy doesn't even make sense.  Why would a water balloon be especially bloated on a hot summer's day? For your sake, I hope there wasn't too much logic testing on your LSAT. 

Offline MyndFyre

  • Boticulator Extraordinaire
  • x86
  • Hero Member
  • *****
  • Posts: 4540
  • The wait is over.
    • View Profile
    • JinxBot :: the evolution in boticulation
Re: I finally found a Linux distro!
« Reply #2 on: September 12, 2005, 07:05:36 pm »
Why are you making a Linux Live CD? Why not just use something like Knoppix? :p

FC4 is evil. Slackware / FreeBSD for the win.

I need a Live CD so that in case of one of a hundred problems comes up (like I can't activate Windows or something again) I can dd -restore my current hard drive image.  I don't care what distro the live CD is....  It just needs to run dd, NDISwrapper, iwconfig, dhcpcd, and whatever the command is to map a network drive.

I mean, I guess if worst comes to worst, I can just physically copy dd to the CD and plug it into my network.  That would be a suboptimal solution, though.
I have a programming folder, and I have nothing of value there

Running with Code has a new home!

Our species really annoys me.

Offline iago

  • Leader
  • Administrator
  • Hero Member
  • *****
  • Posts: 17914
  • Fnord.
    • View Profile
    • SkullSecurity
Re: I finally found a Linux distro!
« Reply #3 on: September 12, 2005, 07:09:31 pm »
To map Windows drives, use "Samba".  You can find everything you need with g00gle. 

There are also graphical interfaces for it, if you're into that.  I couldn't name them, but I'm sure you can find it. 

Offline MyndFyre

  • Boticulator Extraordinaire
  • x86
  • Hero Member
  • *****
  • Posts: 4540
  • The wait is over.
    • View Profile
    • JinxBot :: the evolution in boticulation
Re: I finally found a Linux distro!
« Reply #4 on: September 12, 2005, 07:13:38 pm »
To map Windows drives, use "Samba".  You can find everything you need with g00gle. 

There are also graphical interfaces for it, if you're into that.  I couldn't name them, but I'm sure you can find it. 

To dd I don't need a GUI.  Command line will do (dd is a command line tool after all.  It's sad but I have its syntax memorized....
Code: [Select]
dd if=\\?\Device\Harddisk0\DR0 of=z:\notebookbackup.img bs=1M --progress).

The one thing I haven't figured out in FC4 is how to make my screen resolution 1440x900.  I can make it 1280x800, but boo to that.
I have a programming folder, and I have nothing of value there

Running with Code has a new home!

Our species really annoys me.

Offline Newby

  • Moderator
  • Hero Member
  • *****
  • Posts: 10877
  • Thrash!
    • View Profile
Re: I finally found a Linux distro!
« Reply #5 on: September 12, 2005, 07:14:40 pm »
Edit /etc/X11/xorg.conf (?) to allow that crazy resolution.
- Newby
http://www.x86labs.org

Quote
[17:32:45] * xar sets mode: -oooooooooo algorithm ban chris cipher newby stdio TehUser tnarongi|away vursed warz
[17:32:54] * xar sets mode: +o newby
[17:32:58] <xar> new rule
[17:33:02] <xar> me and newby rule all

I'd bet that you're currently bloated like a water ballon on a hot summer's day.

That analogy doesn't even make sense.  Why would a water balloon be especially bloated on a hot summer's day? For your sake, I hope there wasn't too much logic testing on your LSAT. 

Offline iago

  • Leader
  • Administrator
  • Hero Member
  • *****
  • Posts: 17914
  • Fnord.
    • View Profile
    • SkullSecurity
Re: I finally found a Linux distro!
« Reply #6 on: September 12, 2005, 07:15:19 pm »
Are you trying to copy off a local windows drive, or a remote one?

Quote
whatever the command is to map a network drive
That's what I was answering - Samba. 

Offline MyndFyre

  • Boticulator Extraordinaire
  • x86
  • Hero Member
  • *****
  • Posts: 4540
  • The wait is over.
    • View Profile
    • JinxBot :: the evolution in boticulation
Re: I finally found a Linux distro!
« Reply #7 on: September 12, 2005, 07:17:03 pm »
Are you trying to copy off a local windows drive, or a remote one?

Quote
whatever the command is to map a network drive
That's what I was answering - Samba. 

If I need to restore my hard drive, I'll be copying from one:
Code: [Select]
dd if=/mnt/windows-remote-g/notebookbackup.img of=/dev/hda bs=1M --progress

Newby: I've tried that.  It just hates me.  *Shrug*
I have a programming folder, and I have nothing of value there

Running with Code has a new home!

Our species really annoys me.

Offline MyndFyre

  • Boticulator Extraordinaire
  • x86
  • Hero Member
  • *****
  • Posts: 4540
  • The wait is over.
    • View Profile
    • JinxBot :: the evolution in boticulation
Re: I finally found a Linux distro!
« Reply #8 on: September 13, 2005, 02:13:12 pm »
Hello from Fedora Core 4.  ;-)
I have a programming folder, and I have nothing of value there

Running with Code has a new home!

Our species really annoys me.

Offline Newby

  • Moderator
  • Hero Member
  • *****
  • Posts: 10877
  • Thrash!
    • View Profile
Re: I finally found a Linux distro!
« Reply #9 on: September 13, 2005, 05:09:02 pm »
If you didn't use lynx, you're so outta teh co0l club.
- Newby
http://www.x86labs.org

Quote
[17:32:45] * xar sets mode: -oooooooooo algorithm ban chris cipher newby stdio TehUser tnarongi|away vursed warz
[17:32:54] * xar sets mode: +o newby
[17:32:58] <xar> new rule
[17:33:02] <xar> me and newby rule all

I'd bet that you're currently bloated like a water ballon on a hot summer's day.

That analogy doesn't even make sense.  Why would a water balloon be especially bloated on a hot summer's day? For your sake, I hope there wasn't too much logic testing on your LSAT. 

dx

  • Guest
Re: I finally found a Linux distro!
« Reply #10 on: September 13, 2005, 06:14:37 pm »
FreeBSD

Offline Newby

  • Moderator
  • Hero Member
  • *****
  • Posts: 10877
  • Thrash!
    • View Profile
Re: I finally found a Linux distro!
« Reply #11 on: September 13, 2005, 06:17:12 pm »
You're such a BSD zealot, dx. :P

Quote
(22:56:07) darkxir: HC Ladder?
(22:56:12) James: Linux :(
(22:56:12) darkxir: Or are you too scared
(22:56:17) darkxir: OMFG.
(22:56:30) darkxir: When you're on linux, you might as well not have the internet.
(22:56:34) darkxir: You can't do anything fun
- Newby
http://www.x86labs.org

Quote
[17:32:45] * xar sets mode: -oooooooooo algorithm ban chris cipher newby stdio TehUser tnarongi|away vursed warz
[17:32:54] * xar sets mode: +o newby
[17:32:58] <xar> new rule
[17:33:02] <xar> me and newby rule all

I'd bet that you're currently bloated like a water ballon on a hot summer's day.

That analogy doesn't even make sense.  Why would a water balloon be especially bloated on a hot summer's day? For your sake, I hope there wasn't too much logic testing on your LSAT. 

dx

  • Guest
Re: I finally found a Linux distro!
« Reply #12 on: September 13, 2005, 06:41:32 pm »
Hah, I would *never boot a nix distro from my machine, for said reason.
Meet my friend, PuTTy.

Offline GameSnake

  • News hound
  • Hero Member
  • *****
  • Posts: 2937
    • View Profile
Re: I finally found a Linux distro!
« Reply #13 on: September 13, 2005, 06:43:09 pm »
I also use Linux.

trust

  • Guest
Re: I finally found a Linux distro!
« Reply #14 on: September 13, 2005, 06:53:44 pm »
Hah, I would *never boot a nix distro from my machine, for said reason.
Meet my friend, PuTTy.

You used Redhat, Linux[e1].