Re: [PLUG] Fedora doesnt boot

2009-11-13 Thread abhi
Alright. After, reinstalling the graphics drivers (nvidia), it seems fedora is back on track. However, Windows still doesnt boot up. Selecting Windows starts Fedora. I dont think theres a problem in the grub.conf file. Also, i have this hidden partition, which contains recovery flles for Win Xp, an

[PLUG] Fedora doesnt boot

2009-11-12 Thread abhi
hi all. My fedora (and Win Xp) refuses to boot.I have a dual boot system(5 fedora 11 kernels + Win Xp) The previous night, my system was updating kernel and hung. So, i stopped it. Next morning when i tried to boot, i cud see the progress bar, but after that a small cursor wud blink and just sit th

Re: [PLUG] [SOLVED] stack smashing issue

2009-08-02 Thread abhi
talked about the Stack Guard). * *If u are interested, i'll let u know the details about it.. I always wanted to ask this: Is PLUG on IRC? Thanks again null null. Cheers, Abhi *-- * “In fact, by only taking a few observations, and selecting our numbers, we can by the effect of accidental causes

Re: [PLUG] stack smash

2009-07-31 Thread abhi
>ret = buffer1 + 13; // ebp + 4 >works fine for me, try n let me know what u get Hi null null(heh) I tried but* aint working*. What OS, kernel, gcc do u have? Heres the asm of function(): (gdb) disas function Dump of assembler code for function function: 0x08048414 :push %ebp 0x0804841

Re: [PLUG] stack smash issue

2009-07-31 Thread abhi
Oh and heres the asm code: gdb code: (gdb) disas main Dump of assembler code for function main: 0x0804844e :lea0x4(%esp),%ecx 0x08048452 :and$0xfff0,%esp 0x08048455 :pushl -0x4(%ecx) 0x08048458 :push %ebp 0x08048459 :mov%esp,%ebp 0x0804845b :push %ecx 0x

[PLUG] stack smash issue

2009-07-31 Thread abhi
Hello all. I m trying to smash(change the return address) the stack. I think i m missing the correct numbers(sue to differences in krnl and gcc versions). Heres the code : #include void function(int a, int b, int c) { char buffer1[5]; char buffer2[10]; int *ret; ret = buffer1 + 9;//I think that

Re: [PLUG] Joomla install(solved)

2009-07-11 Thread abhi
Hello all. Well, i sucessfully installed Joomla!. And it was very easy tweak that was supposed to be done so that the installer recognized MySQL support. Thank u once again, appreciate it. Cheers Abhi. -- "I'm the one that has to die when it's time for me to die, so let me li

Re: [PLUG] joomla install

2009-07-07 Thread abhi
> > I am wondering why/how you have managed to break the original thread > (??) and started off a new one ??? > > Regards > Dexter > Well, i just explained what the problem is so that u all dont tell me to go to Add/Remove, and then install that package. So i've just made clear what the problem i

Re: [PLUG] Joomla install

2009-07-06 Thread abhi
> >You probably dont have php-mysql package installed. Some questions: 1.will this installation screw my databases? 2.will this screw my existing php and apache installation? 3.how do i install that package becoz it seems when i try to install that package(php-mysql-5.2.9-2.fc10(i386)), Add/Remov

[PLUG] Joomla installation

2009-07-05 Thread abhi
Hello. I m trying to install Joomla on my fc10 box. It says Mysql no support in step2. But i have mysql installed and dont know why it is saying that. I also have databases, tables created in mysql v. 5.0. What is the matter? Thank you. Cheers. -- "The best security against revolution is in cons

Re: [PLUG] kernel module

2009-07-02 Thread abhi
on Wed, 1 Jul 2009 13:13:53 +0530 Shakthi Kannan replied to : | Now how do i pass args to my module /call it externally? \-- by: |What do you mean by 'call it externally'? Hi shakti, by calling externally, i mean once i've insmoded a module(say the simple hello world), how do i make 'someone'

Re: [PLUG] Kernel module

2009-07-01 Thread abhi
hi shakti kannan, I got ur code and the tut to passing args to a module. And now after making modifications, my code works. Now how do i pass args to my module /call it externally? Thanks, Cheers -- "The best security against revolution is in constant correction of abuses and the introduction o

[PLUG] installing dbg (php)

2009-06-29 Thread abhi
Hello guys, IRC has disappointed me. OK i am trying to install dbg for debugging php. I have downloaded the tar file and it contains dbg.so files for various versions. I do not know how to install it(installing php extensions). Is anyone aware? Thank you. -- "The best security against revolutio

[PLUG] kernel module

2009-06-29 Thread abhi
Hi. I have begun writing kernel modules and facing an issue regarding passing args to the module: Here's my code: #include #include #include static char *agent_name = "UNKNOWN"; static int agent_code = 47; MODULE_PARM (agent_name, "s"); MODULE_PARM (agent_code, "i"); static int __init my_init_fu

Re: [PLUG] Installing Fedora

2009-06-29 Thread abhi
>I recently got a new hard drive. It's not formatted. I was installing > fedora > >9 on my machine. Its an interactive OS. > >There is an option which says install on hard drive. I clicked on it. > >On following the custom directions, it leads me to a point which says: > >*Installation requires par

Re: [PLUG] php issue : SOLVED

2009-06-22 Thread abhi
hello guys. First of all thank you to all who replied. Ummmthere was a simple solution actually - I having the knowledge of the existence of an Apache HTTP(httpd) server on my box ; p All this while i was trying to get the code run on the Apache Tomcat server that was installed with Netbeans. I

Re: [PLUG] php issue

2009-06-21 Thread abhi
hi. I've added these lines in my /etc/httpd/conf/httpd.conf file: *LoadModule php5_module etc/httpd/modules/libphp5.so AddHandler application/x-httpd-php .php* And I also added this in my /home/Demon/apache-tomcat-6.0.18/conf/web.xml file: * php application/x-httpd-php .php *

Re: [PLUG] php issue

2009-06-19 Thread abhi
Hello all. I am able to run the apache server. Actually when i had installed Netbeans, apache was also installed. PHP is also installed becoz when do this: *>[de...@localhost ~]$ php -v* It gives this : *>PHP 5.2.6 (cli) (built: Sep 13 2008 11:13:29) >Copyright (c) 1997-2008 The PHP Group >Zend

[PLUG] php problem

2009-06-16 Thread abhi
Hello guys, I m trying to run a simple php code. I have Apache Tomcat/6.0.18 running. I dont know if it is php enabld or not. i've created a hello.php file: This is going to be ignored. This will also be

[PLUG] Apache installation

2009-06-16 Thread abhi
hi folks. I want to run the apache server. I have a fedora 9 installation. I dont know if apache is preinstalled or not. How do i find it out? And if it is installed, how do i start it? Thanks. -- To laugh often and much; to win the respect of intelligent people and the affection of children; t

Re: [PLUG] gcc compilation issue

2009-06-09 Thread abhi
Thank you guys. It's working now. One more question. *How often can you 'call' modules? ie. once I insmod a module, how can i call the module's methods? (call them like functions/methods).* Thank you. -- To laugh often and much; to win the respect of intelligent people and the affection of childr

[PLUG] gcc compilation issue

2009-06-08 Thread abhi
Hi all. I am trying to learn writing linux modules. I am referring to a book for writing the modules in C. my code is : /*hello-1.c*/ #include /* Needed by all modules */ #include /* Needed for KERN_ALERT */ int init_module(void){ printk("<1>Hello world 1.\n"); return 0; } void cleanup_m

[PLUG] Changing login theme on fedora 10

2009-04-16 Thread abhi
I recently downloaded some Window borders, icons themes from a website. It also had Login themes. Window borders, icons work but *I dont know how to change the Login theme.* *All files are tars.* Sum1 knows how to do this? Thanks. -- ABHI ; ) PEACE!!! ___ Pune

Re: [PLUG] setting up icon to launch mysql

2009-04-13 Thread abhi
>When creating launcher, have you specified the type as "Application in Terminal"? ; p Yup. It's working now. I used "Application in Terminal" instead of "Application" and it works. Thanks Vaibhav. U rock. Cheers. -- ABHI ; ) PEACE!!!

Re: [PLUG] setting up icon to launch mysql

2009-04-11 Thread abhi
>How do you usually start mysql from the command prompt ? Yes. I start it from the command prompt and thats the reason I want a launcher for it. even if i go to /usr/bin and click on mysql, nothing happens. -- ABHI ; ) PEACE!!! ___ Pune GNU/Linux Users Gr

Re: [PLUG] setting up icon to launch mysql

2009-04-10 Thread abhi
> > >else right click on the desktop -> create new -> link to application > >-> and do the reqired. > > :) > I tried. I right clkd on desktop, selected "create launcher"->Command: /usr/bin/mysql A launcher is created. But when I clk o

[PLUG] setting up icon to launch mysql

2009-04-10 Thread abhi
I have fedora 10 with preinstalled mysql server. I want to make an icon on the desktop to launch the mysql prompt. How can I do that? Thanks. -- ABHI ; ) PEACE!!! ___ Pune GNU/Linux Users Group Mailing List

[PLUG] configuring DSL connection on Fedora 10

2009-04-01 Thread abhi
the computer after activating it. The cross still wont go. I used the correct net adaptor, still no go. On Windows, it works fine and configuration was so easy.. What to do. Please help. Thanks in advance. -- ABHI ; ) PEACE!!! ___ Pune GNU/Linux Users Group

[PLUG] OpenSuse linux wanted.

2009-02-25 Thread abhi
, database servers How can I get it from you guys? Thank you. -- ABHI ; ) PEACE!!! -- __ Pune GNU/Linux Users Group Mailing List: (plug-mail@plug.org.in) List Information: http://plug.org.in/cgi-bin/mailman/listinfo/plug-mail Send

[PLUG] Cannot connect to mysql server

2008-09-09 Thread abhi
Hello folks, I am new to Linux and have Fedora 9. I have installed mysql. When I run mysql, I get tthe following error: *ERROR 2002 (HY000) cannt connect to local mysql server through socket /var/lib/mysql.sock (2).* ** What should i do? -- ABHI ; ) PEACE

[PLUG] Cant connect to Mysql in Ubuntu 7.10

2008-09-03 Thread abhi
ecs on a pen drive but dont know how to install them. ->Cannot connect to mysql (or dont know where it is like Oracle) ->cant see c/c++ , java IDEs and counting (I dont have an internet connection...) Appreciate your help..... -- AB

[PLUG] boot erroe!

2007-02-17 Thread Abhi
Upon booting OS, erroring when attempting to load Shared libraries, I was able to log into server in single user mode, however before unmounting this directory that is erroring out - Expecting? Get great news right away with email Auto-Check. Try the Yahoo! Mail