Re: [Ilugc] HOW TO KEEP A LOG OF DELETED FILES ?

2010-02-11 Thread Roshan George
On Thu, 2010-02-11 at 06:51 +, swapan karmakar wrote:
 IS IT POSSIBLE TO MAINTAIN A LOG OF FILES DELETED , IN LINUX ?

Dude, I think your Caps Lock key is stuck. Anyway, you can write
something using inotify to do what you want. If you're feeling lazy and
have some idea of what files you want to watch then use inotifywait from
inotifytools. Put it in a shell script and enjoy.

Here's an example of how inotify works

$ touch cow
$ inotifywait -m cow
Setting up watches.  
Watches established.
cow MOVE_SELF 
cow ATTRIB 
cow DELETE_SELF 
cow IGNORED 

That happens when I ran the following in another pty:

$ mv cow pig
$ rm pig

You can make it do all sorts of more complicated things if you want to.
Have fun.

-- 
Roshan George ros...@arjie.com

___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


[Ilugc] Interfacing microcontroller with a Linux PC

2010-02-11 Thread Salvadesswaran P.S.
Hi.

Some of my friends are doing their project in microcontrollers, and
use Fedora on the development system.
Data transmission on parallel ports is working, and they need to
interface the microcontroller with the PC now.
A detailed description is at [1].

I don't have any prior experience interfacing microcontrollers to PCs,
so kindly provide pointers to accomplish this task.

[1]: http://pastebin.com/f2bf606a

-- 


Salvadesswaran Srinivasan

http://www.twitter.com/salva_eswar
http://queasyquagmire.wordpress.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Interfacing microcontroller with a Linux PC

2010-02-11 Thread Thyagarajan தியாகராஜன்
Hi Salvaesswaran Srinivasan,

Some of my friends are doing their project in microcontrollers, and

 use Fedora on the development system.
 Data transmission on parallel ports is working, and they need to
 interface the microcontroller with the PC now.

[1]: http://pastebin.com/f2bf606a


I hope you are talking about how to communicate between pc an
microcontroller, if you could explain us  the project (big picture), we
might be in a position to help. Getting the input from computer What do you
want the microcontroller to do ?  Is there any specific reason that you
opted for parallel port over serial.

I don't have any prior experience interfacing microcontrollers to PCs,so
kindly provide pointers to accomplish this task.

Arduino is a open source board ( www.arduino.cc ) is a elegant inexpensive
device(Rs 700/-)  with which we can do wonders.It is a good start for
beginners  to hang on with this board.

The following is a link where the arduino is connect to several piezo
transducers and computer . When you hit on a piezo transducer the signal is
taken to the computer and a sound is generated. Something drums sivamani
will love it ;). This is just a example, have a look at it at
http://www.tinker.it/en/Tutorials/Ardrumo .

regards,
Thyagarajan Shanmugham
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] HOW TO KEEP A LOG OF DELETED FILES ?

2010-02-11 Thread steve

On 02/11/2010 12:21 PM, swapan karmakar wrote:


IS IT POSSIBLE TO MAINTAIN A LOG OF FILES DELETED , IN LINUX ?

Please use lowercase characters while typing. All uppercase characters in 
mailing list posts is considered as rude as screaming in normal conversations.


About your question, look up audit. A quick google shows this:

http://www.cyberciti.biz/tips/linux-audit-files-to-see-who-made-changes-to-a-file.html
http://osdir.com/ml/linux.redhat.security.audit/2007-02/msg00017.html

cheers,
- steve
--
random non tech spiel: http://lonetwin.blogspot.com/
tech randomness: http://lonehacks.blogspot.com/
what i'm stumbling into: http://lonetwin.stumbleupon.com/
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Interfacing microcontroller with a Linux PC

2010-02-11 Thread Arun Venkataswamy
On Thu, Feb 11, 2010 at 2:35 PM, Salvadesswaran P.S. 
salvadesswa...@gmail.com wrote:

 Hi.

 Data transmission on parallel ports is working, and they need to
 interface the microcontroller with the PC now.


If you are sure that the data transmission is working from the Linux desktop
using that C code, it means that the Linux based computer is OK to be used
as a host or a slave to the micro controller's application. Beyond this, you
need to tell us what exactly you want for us to help you?!  Is the micro
controller also running Linux?

Like what Thyagarajan said, normally micro controller apps are designed to
use the serial port unless of course you have a specific reason such as high
speed communication etc.

A word of caution through - Setup the parallel port in the BIOS setup as
standard SPP. Otherwise you will have to implement the corresponding
protocol in the micro controller hardware and software.

Arun




-- 
Arun Venkataswamy
http://arun289.wordpress.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Interfacing microcontroller with a Linux PC

2010-02-11 Thread Salvadesswaran P.S.
On Thu, Feb 11, 2010 at 4:33 PM, Arun Venkataswamy arun...@gmail.com wrote:
 On Thu, Feb 11, 2010 at 2:35 PM, Salvadesswaran P.S. 
 salvadesswa...@gmail.com wrote:

 Hi.

 Data transmission on parallel ports is working, and they need to
 interface the microcontroller with the PC now.


 If you are sure that the data transmission is working from the Linux desktop
 using that C code, it means that the Linux based computer is OK to be used
 as a host or a slave to the micro controller's application. Beyond this, you
 need to tell us what exactly you want for us to help you?!  Is the micro
 controller also running Linux?

 Like what Thyagarajan said, normally micro controller apps are designed to
 use the serial port unless of course you have a specific reason such as high
 speed communication etc.

 A word of caution through - Setup the parallel port in the BIOS setup as
 standard SPP. Otherwise you will have to implement the corresponding
 protocol in the micro controller hardware and software.


Thanks for your guidance. I'll check out how it works. I think the
Arduino board is the best option.

-- 


Salvadesswaran Srinivasan

http://www.twitter.com/salva_eswar
http://queasyquagmire.wordpress.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


[Ilugc] Help Regarding RedHat OS

2010-02-11 Thread Gowriishankar Raju
Dear friends,

I need the Redhat OS for my research purpose, Because some softwares need
that to run without errors.
If anybody u have means, Please provide the OS
Waiting for ur reply .

Thanks in advance.

WIth Regards,
Gowriishankar Raju
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Help Regarding RedHat OS

2010-02-11 Thread Abishek Goda
Hi,

 I need the Redhat OS for my research purpose, Because some softwares need
 that to run without errors.
Get CentOS. From what I know they are very similar and most softwares
that need RHEL works fine on CentOS.

Of course, i am not sure about obtaining RHEL from sources outside
RedHat. I'll leave it for others to update.

Abishek
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Help Regarding RedHat OS

2010-02-11 Thread Mehul Ved
On Thu, Feb 11, 2010 at 4:50 PM, Gowriishankar Raju
rgsanbioi...@gmail.com wrote:
 Dear friends,

 I need the Redhat OS for my research purpose, Because some softwares need
 that to run without errors.
 If anybody u have means, Please provide the OS
 Waiting for ur reply .

Download it from http://www.centos.org/modules/tinycontent/index.php?id=15
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Help Regarding RedHat OS

2010-02-11 Thread Ravi Jaya
On Thu, Feb 11, 2010 at 4:50 PM, Gowriishankar Raju
rgsanbioi...@gmail.comwrote:

 Dear friends,

 I need the Redhat OS for my research purpose, Because some softwares need

Red Hat Enterprise Linux is proprietary distribution of Linux from the Red
Hat Inc. If your only constraint is to use  the RHEL, then you could give a
try on the Cent OS  [1] an community edition  which is  equivalent to RHEL


[1] http://centos.org/

-- 
Ravi Jaya

Mobile: +91 97909 16181
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


[Ilugc] Help to choose a better laptop

2010-02-11 Thread Gowriishankar Raju
Guys,

I forget to seek one help at my previous mail.
I planned to buy a new laptop with a budget of 30,000/-
But i have a confusion to choose a better one among the various company
models.
Hope you will make a clear view to get a new one.

With Regards,
GS
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Help to choose a better laptop

2010-02-11 Thread Ravi Jaya
On Thu, Feb 11, 2010 at 5:06 PM, Gowriishankar Raju
rgsanbioi...@gmail.comwrote:

 Guys,

 I forget to seek one help at my previous mail.
 I planned to buy a new laptop with a budget of 30,000/-
 But i have a confusion to choose a better one among the various company
 models.

http://www.linux.org/hardware/laptop.html
http://www.linux-laptop.net/
http://www.linuxcertified.com/linux_laptops.html
check the above links, if it could help you in any sort. It would be great.


Disclaimer:  I am sure the about any of those  information mentioned in
those sites are cent percent correct.


-- 
Ravi Jaya

Mobile: +91 97909 16181

Blog:
http://aryabhataa.blogspot.com/
http://ravi-jaya.blogspot.com/
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Help Regarding RedHat OS

2010-02-11 Thread Arun SAG
On Thu, Feb 11, 2010 at 4:59 PM, Ravi Jaya ravi.goglob...@gmail.com wrote:

 Red Hat Enterprise Linux is proprietary distribution of Linux from the Red
 Hat Inc.


Small correction RHEL is not proprietary :-)

-- 
Arun S.A.G
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


[Ilugc] Laptop hotkeys not working

2010-02-11 Thread Varrun Ramani
Hi

I am running Ubuntu 9.04 on my Thinkpad R61. I am having a problem
making the Laptop hotkeys namely the volume up/down/mute to work. The
issue is that the shortkeys are detected by GNOME i.e i see the volume
bar changing in  the notification system, but the volume in the actual
volume control remains unchanged.

The keys were working fine before this. I cant seem to figure what
caused the transition as well. It could be when i tried making
additions to alsa.conf to connect to a bluetooth audio device. I did
revert the changes though.

Is there any way i can reinstall/restore some configurations to revert
to earlier config?

-- 
Thanks  Regards
Varrun Ramani
Amrita University '10
Web: varrunr.wordpress.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


[Ilugc] Android workshop @ Carte Blanche

2010-02-11 Thread Akilan R
Greetings,

 As a part of Carte Blanche an one day Android Workshop has been
planned. Limited number of participants only. Open to both students and
professionals. Registration fee is 200 INR.

For further details see:
http://cb.csmit.org/index.php?option=com_contentview=articleid=74Itemid=73

-- 
அகிலன்(Akilan R)
Secretary,
Computer Society of MIT,
Anna University.
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Laptop hotkeys not working

2010-02-11 Thread Bharathi Subramanian
Varrun Ramani said:
 Is there any way i can reinstall/restore some configurations to
 revert to earlier config?

Try alsaconf command.

-- 
Bharathi S
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Help Regarding RedHat OS

2010-02-11 Thread Kenneth Gonsalves
On Thursday 11 Feb 2010 4:59:39 pm Ravi Jaya wrote:
  I need the Redhat OS for my research purpose, Because some softwares need
 
 Red Hat Enterprise Linux is proprietary distribution of Linux from the Red
 Hat Inc. If your only constraint is to use  the RHEL, then you could give a
 try on the Cent OS  [1] an community edition  which is  equivalent to RHEL
 

are you sure it is proprietary?
-- 
regards
kg
http://lawgon.livejournal.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


[Ilugc] how to disable ctrl-space in gnome?

2010-02-11 Thread Kenneth Gonsalves
hi,

I am using gnome in Fedora 11. Most of the editors I use need ctrl-space for 
word completion. But when I do ctrl-space in gnome, my font changes to 
Bengali. How do I solve this?

-- 
regards
kg
http://lawgon.livejournal.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] how to disable ctrl-space in gnome?

2010-02-11 Thread steve

On 02/12/2010 11:52 AM, Kenneth Gonsalves wrote:

hi,

I am using gnome in Fedora 11. Most of the editors I use need ctrl-space for
word completion. But when I do ctrl-space in gnome, my font changes to
Bengali. How do I solve this?

Hmm, you might have inadvertently enabled the Input Method keyboard shortcuts 
(or done it intentionally -- in which case, I'm impressed you know Bengali too ! 
:) )


Anyways, go to System-Preferences-Input Method and either disable the feature 
completely or click the Input Method Preferences button and under Keyboard 
Shortcuts change the shortcut combination.


cheers,
- steve

--
random non tech spiel: http://lonetwin.blogspot.com/
tech randomness: http://lonehacks.blogspot.com/
what i'm stumbling into: http://lonetwin.stumbleupon.com/
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc