Page:
1 2 3 4
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 Comments:
<Rizzyk> and its not a symlink, its the actual file
<aaaaaaaaaaaaaa> Yeah, re-download it
<aaaaaaaaaaaaaa> Aargh, he said the "s" word
<gufymike> :P
<aaaaaaaaaaaaaa> Wizz_kidd; basically, check out the hardware sites and compare prices. It changes daily, man.
<Rizzyk> how do I redownload it
<Rizzyk> what exactly should I redownload, is what I'm saying
<Wizz_kidd> http://cgi.ebay.com/EVGA-7800-GT-CO-7800GT-PCI-E-256-nvidia-n517-AX_W0QQitemZ8785852351QQcategoryZ3762QQssPageNameZWDVWQQrdZ1QQcmdZViewItem
<gufymike> ok this keeps escaping me, in bash scripting {} does what exactly to variables?
<Wizz_kidd> i think imma go with that one
<Rizzyk> rpm? e2fsprog?
<aaaaaaaaaaaaaa> ftp?
<redduck676> gufymike: $var is the same as ${var}
<gufymike> rpm, eefsprog are ext2/3 utils
<gufymike> why is it better redduck676 ?
<redduck676> gufymike: see parameter expansion section of man bash to see some neat things you can do inside ${}
<gufymike> ok
<aaaaaaaaaaaaaa> Wizz_kidd; what, are you building another system or something?
<Wizz_kidd> nada .........gonna take back this GTX maybe
<Wizz_kidd> that 559.99 price tag killed me
<Wizz_kidd> and i dont need it
<Wizz_kidd> even bette r maybe this http://cgi.ebay.com/Gigabyte-Nvidia-Geforce-7800GT-GT-graphics-card-PCI-e_W0QQitemZ8784744963QQcategoryZ40161QQssPageNameZWDVWQQrdZ1QQcmdZViewItem
<psych0> got a little problem.. i installed win98 on vmware, using my real HD.. I installed it on /dev/hda4 (used dos fdisk). As expected, windows overwrited my lilo. The problem is, i thought that if I run lilo from my slack it would reinstall lilo on the MBR, but it says that /dev/hda4 does not exist... if I reboot i'll only have windows... what can I do?
<Rizzyk> thanks guys
<Rizzyk> fixed it by rpm2cpio, then copying over the right lib64
<lo_tek> Wizz_kidd: watch your money, don't just throw it away on hyped up hardware
<idioterna> put the hda4 away and rerun lilo
<aaaaaaaaaaaaaa> Wizz_kidd; also see http://cgi.ebay.com/XFX-PV-T70G-UDF7-Geforce-7800-GT-OC-PCI-Ex-7800GT-OC_W0QQitemZ8784705013QQcategoryZ80192QQrdZ1QQcmdZViewItem
<Wizz_kidd> yes i know the GTX was waay to muxh
<redduck676> gufymike: i just remembered there is another neat thing about it, foo="xxx", echo $foobar doesn`t work, while echo ${foo}bar works just fine.
<aaaaaaaaaaaaaa> Wizz_kidd; but yeah, what they said. Hardware is only a small part of the equation
<gufymike> :) ty redduck676 yeah just read a lil about the prefixing aslo :)
<Wizz_kidd> yea
<Wizz_kidd> i want to bid and win today hmmm
<aaaaaaaaaaaaaa> psych0; got a boot disk of some kind? Like, a windoze one? Or a partition magic recovery disk? Or some boot table thingy?
<Wizz_kidd> maybe i can keep it inder 200 or 240
<psych0> aaaaaaaaaaaaaa: nope :)
<redduck676> gufymike: :)
<Jabberwock> http://pastebin.com/625925
<Jabberwock> tell me what that does
<Jabberwock> it won't hurt you. I promise
<aaaaaaaaaaaaaa> psych0; np. Reboot into Windoze, install Boot magic, manually tell it where the linux is.
<psych0> aaaaaaaaaaaaaa: but i'm in slack now.. with windoze runing on vmware.. my only problem is if i need to reboot
<aaaaaaaaaaaaaa> psych0; ok, so can't you install grub and manually set the parts with that?
<redduck676> Jabberwock: is that supposed to converrt shellcode[] to an int?
<Jabberwock> redduck676: ? No
<Jabberwock> It's a hack to execute shellcode as a function
<aaaaaaaaaaaaaa> psych0 or install boot magic on the VM and let it do it's funky stuff
<psych0> aaaaaaaaaaaaaa: man.. how stupid i am..... i only have to remove the windoze thing from lilo and run lilo again... then i'll have slack on boot
<Jabberwock> http://pastebin.com/625931
<Jabberwock> maybe that makes a little more sense
<aaaaaaaaaaaaaa> psych0; ah, ok...the lilo is on it's own boot record thing...cool
<aaaaaaaaaaaaaa> Jabberwock; I hope so...what is this trying to do?
<Jabberwock> Just print a string
<Jabberwock> it's just a write() and exit(0)
<Jabberwock> It works on 1 box for me but segfaults on another
<psych0> aaaaaaaaaaaaaa: thanks man ;-)
<redduck676> Jabberwock: isn`t there supposed to be printf() somewhere?
<Jabberwock> no. printf() is a wrapper around write()
<Jabberwock> I'm not using libc
<aaaaaaaaaaaaaa> psych0: np. And...write a recovery CD or boot floppy while it's all good!
<Jabberwock> redduck676: You mean in the C code?
<Jabberwock> Na.. that's the purpose of the shellcode
<Jabberwock> That shellcode is intel x86 instructions
<aaaaaaaaaaaaaa> Jabberwock; I see what you're doing, but sorry, don't have a testbed to play with so can't help much. Looks fine as far as I can see without.
<redduck676> Jabberwock: ummm.. in what language is what you posted?
<Jabberwock> redduck676: C
<aaaaaaaaaaaaaa> Jabberwock; who are you trying to hack into, anyway?
<Jabberwock> Not tryiing to hack into anything
<Jabberwock> just screwing around
<ninjaz2> Jabberwock: what does the output of ldd look like?
<aaaaaaaaaaaaaa> segfault is a bit wierd, tho
<Jabberwock> $ ldd ./code
<Jabberwock> not a dynamic executable
<Jabberwock> oh the C one?
<aaaaaaaaaaaaaa> Jabberwock; different hardware? Intel?
<redduck676> Jabberwock: http://pastebin.com/625939
<ninjaz2> Jabberwock: yeah.
<Jabberwock> $ ldd ./test
<Jabberwock> libc.so.6 => /lib/tls/libc.so.6 (0xa6552000)
<Jabberwock> /lib/ld-linux.so.2 (0xa6687000)
<ninjaz2> ok, so it's probably incompatble libc versions
<Jabberwock> ninjaz2: You in bsd?
<ninjaz2> Jabberwock: I've got a window on a bsd box open
<Jabberwock> No it shouldn't matter. That shellcode doesn't use libc at all
<ninjaz2> the box this client is on is linux though
<Jabberwock> The only reason libc is linked is because gcc does that automatically
<ninjaz2> it still has to be dynamically loaded though
<Jabberwock> hmm.. weird
<aaaaaaaaaaaaaa> no calls to libc...irrelevent
<aaaaaaaaaaaaaa> It's probably a problem with the symbolic links... ;-)
<aaaaaaaaaaaaaa> Why does Nick always collide?
<ninjaz2> you would have to run it under strace to check for that libc stuff ;)
<ninjaz2> or ktruss on freebsd, etc
<aaaaaaaaaaaaaa> ninjaz2; there's no use of the libc in the prog!
<GiGaHeRtZ> anyone ever try this? http://www.gentoo.org/doc/en/gentoo-freebsd.xml
<ninjaz2> it fools around with a bunch of libc functions when I run it here, anyway.
<diemos> haha... so thers this huge march going across california, and probably other places too, against this new immigration law that they're passing
<ninjaz2> well, anyway strace will show where it is segfaulting
<aaaaaaaaaaaaaa> true
<gufymike> diemos whats so funny about it?
<diemos> so me and a friend are just sitting at safeway just smoking and see a bunch of people just walking
<aaaaaaaaaaaaaa> GiGaHeRtZ; no, but it looks fun, in a pretty useless kinda way
<GiGaHeRtZ> aaaaaaaaaaaaaa, i prefer the FBSD kernel :/
<lo_tek> freebsd's a trip!
<diemos> so were walking and stuff... me not being mexican at all... and my friend being half.. we stand out more than anyone in the crows
<lo_tek> rock solid stable, too
<diemos> crowd*
<lo_tek> but i'll stick with linux
<GiGaHeRtZ> I don't care for ports though
<Jabberwock> http://pastebin.com/625951
<Jabberwock> there's the breakdown :P
<lo_tek> ports was pretty cool, i've never had a problem with it
<GiGaHeRtZ> its bassackwards
<Jabberwock> Dude ports is the bomb
<diemos> long story short we end up making fun of them and it rains and now were stuck a few miles from where we started with no ride in the rain
<GiGaHeRtZ> it's good, just "different"
<aaaaaaaaaaaaaa> Jabberwock; what's the first push pushing?
<Jabberwock> pusha?
<Jabberwock> esp, ebp
<Jabberwock> It's a shorthand way of saving the stack frame
<Jabberwock> actually, I'll label that better
<diemos> that just shows how much of a life we lack
<Jabberwock> lol
<aaaaaaaaaaaaaa> "rain"? err...that's in the Big Blue Room, isn't it? Wow, you have a life!
<diemos> psh.. I'm on irc from my phone... how much of a life do I have?
<Jabberwock> http://pastebin.com/625959
<Jabberwock> that makes a little more sense
<aaaaaaaaaaaaaa> OK, right.
<Jabberwock> </geek>
<diemos> indeed
<diemos> wait..
<diemos> you can't </geek> in ##linux
<Jabberwock> Hey I'm at work. I have an excuse to be here :P
<tokyo12> I tell you this, everytime I try to start a discussion regarding a social matter, girls, or fun for that matter I get kicked out of every channel in this network
<tokyo12> regarding the </geek> thingy
<diemos> lol
<tokyo12> they don't want you to live
<tokyo12> its a ****ing matrix I tell you this
<diemos> freenode == <geek>
<tokyo12> I go like 'guys check it out I met this girl'
<tokyo12> and they go like 'It's not C# related'
<tokyo12> ITS LIFE RELATED
<diemos> life /= girls
<tokyo12> girls not life but its a part of it
<diemos> girls are our pleasure tools, and at times our rulers... then we come to our senses and get back on irc
<tokyo12> that has to bed bash.org'ed
<aaaaaaaaaaaaaa> $>cd /pub & more beer
<diemos> lol
<aaaaaaaaaaaaaa> what's a "gril"?
<diemos> baloogan_!!!!!
Return to #
linuxor
Go to some related
logs:
linuxcsssysenter sysleave inteljavascriptubuntu SIOCSIFADDR: Permission deniedhow to unzip bz2 file on Ubuntujavascriptdebianopenvpn push reply status=1msn display picture gaim