Re: [Ilugc] Help required for date manipulation in linux

2014-07-08 Thread Mehul Ved
On Tue, Jul 8, 2014 at 4:11 PM, Raja Mahalingam  wrote:
> Hi ,
>
> I am working on script creation for user audit report and last command
> doesn't o/p the year.
> I need to find year of the given date of month and day on linux box.
> Need to check only for past 10 years.
> example :
>
>   input  = Thu Apr 15
>  Required o/p 20140415
>
> Any unix/linux commands or perl function would be good.

Just a word of caution, the day+date pattern repeats every 6+11+11
years. The calendar for 2009 was same as what we'll see in 2015. This
can cause bugs.
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] Better operating system

2014-05-30 Thread Mehul Ved
On Fri, May 30, 2014 at 6:11 PM, Kumar  wrote:
> Hi,
>
> Please suggest a best operation system for usage Web design and development
> and Mobile apps.

Since this is a Linux User Group, the answer, obviously, has to be GNU/Linux.
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] Setting Environmental variable in centos

2014-05-06 Thread Mehul Ved
On Tue, May 6, 2014 at 11:37 AM, hari prasadh  wrote:
> source .bash_profile.the environmental variable is set as long as logout
> from the system.when i login again the environmental variable is not
> set.Again i need to do source .bash_profile.
> how to do this permanently.

This might help you
http://shreevatsa.wordpress.com/2008/03/30/zshbash-startup-files-loading-order-bashrc-zshrc-etc/
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] Setting Environmental variable in centos

2014-05-06 Thread Mehul Ved
On Tue, May 6, 2014 at 11:37 AM, hari prasadh  wrote:
> Hi All,
>
> When i set environmental variable in /home/jboss/.etc_profile
>
>  HOST="hari"
> URL="http://localhost";
> export HOST
> export URL
>
> source .bash_profile.the environmental variable is set as long as logout
> from the system.when i login again the environmental variable is not
> set.Again i need to do source .bash_profile.
> how to do this permanently.

Have you set this in ~/.bash_profile or ~/.etc_profile and sourced it
from ~/.bash profile? How are you logging in as jboss user? What are
the permissions of the ~/.etc_profile file?
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] SF: Help Wanted

2014-04-21 Thread Mehul Ved
On Mon, Apr 21, 2014 at 2:37 PM, L. Guruprasad  wrote:
> On Mon, Apr 21, 2014 at 2:34 PM, Arun Khan  wrote:
>> On Mon, Apr 21, 2014 at 11:53 AM, Mehul Ved  wrote:
>>> On Sun, Apr 20, 2014 at 12:00 AM, A. Mani  wrote:
>>>> https://sourceforge.net/p/forge/helpwanted/
>>>
>>> So we get well tested, artistic, multilingual malware?
>>> http://www.reddit.com/r/sysadmin/comments/1kxuul/beware_of_sourceforge_downloads_new_owner_is/
>>
>> I downloaded the latest SystemRescueCD iso yesterday (sourceforge
>> hosts the iso files).Although, there are ads on the download page,
>> I got the ISO file without any ad fan fare and/or being redirected to
>> something other product.
>
> Based on what I understood about this, only the project owners who
> opted into the program will have their software downloaded as adware
> installers. So I am not surprised this worked fine. :)


Correct. One such project is
Filezilla(http://trac.filezilla-project.org/ticket/). Also, it is
only for Windows users so we might not see it from other platforms.
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] SF: Help Wanted

2014-04-20 Thread Mehul Ved
On Sun, Apr 20, 2014 at 12:00 AM, A. Mani  wrote:
> https://sourceforge.net/p/forge/helpwanted/

So we get well tested, artistic, multilingual malware?
http://www.reddit.com/r/sysadmin/comments/1kxuul/beware_of_sourceforge_downloads_new_owner_is/
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] [Ilug-C] Doubt in Code-Igniter [php]

2014-03-09 Thread Mehul Ved
You need to provide some basic info on your setup and apache logs
before anybody can help. Right now it can just be wild guess work.

On Sun, Mar 9, 2014 at 2:27 AM, Magendra Varman
 wrote:
> i cant call css files and images. views pages only working. it cant show
> stylesheets and images. what can i do?
>
>
> On Sun, Mar 9, 2014 at 12:57 AM, Mehul Ved  wrote:
>
>> On Sat, Mar 8, 2014 at 1:45 PM, Magendra Varman
>>  wrote:
>> > How to change Base_URL in Code-Igniter?
>> > I did search through internet, but i can't get proper solution, what to
>> do?
>>
>> Base URL is defined in application/config/config.php. Why do you want
>> to change it? From version 2.1 onwards it's auto detected and that
>> should work well.
>> That said, here's the base_url I use in my applications and it is
>> portable to any hostname without fiddling with config files.
>> $config['base_url'] = ((isset($_SERVER['HTTPS']) &&
>> $_SERVER['HTTPS'] == "on") ? "https" : "http");
>> $config['base_url'] .= "://".$_SERVER['HTTP_HOST'];
>> $config['base_url'] .=
>> str_replace(basename($_SERVER['SCRIPT_NAME']),"",$_SERVER['SCRIPT_NAME']);
>>
>>
>> --
>> With Regards,
>> Mehul Ved
>> ___
>> ILUGC Mailing List:
>> http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
>> ILUGC Mailing List Guidelines:
>> http://ilugc.in/mailinglist-guidelines
>>
> ___
> ILUGC Mailing List:
> http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
> ILUGC Mailing List Guidelines:
> http://ilugc.in/mailinglist-guidelines



-- 
With Regards,
Mehul Ved
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] [Ilug-C] Doubt in Code-Igniter [php]

2014-03-08 Thread Mehul Ved
On Sat, Mar 8, 2014 at 1:45 PM, Magendra Varman
 wrote:
> How to change Base_URL in Code-Igniter?
> I did search through internet, but i can't get proper solution, what to do?

Base URL is defined in application/config/config.php. Why do you want
to change it? From version 2.1 onwards it's auto detected and that
should work well.
That said, here's the base_url I use in my applications and it is
portable to any hostname without fiddling with config files.
$config['base_url'] = ((isset($_SERVER['HTTPS']) &&
$_SERVER['HTTPS'] == "on") ? "https" : "http");
$config['base_url'] .= "://".$_SERVER['HTTP_HOST'];
$config['base_url'] .=
str_replace(basename($_SERVER['SCRIPT_NAME']),"",$_SERVER['SCRIPT_NAME']);


-- 
With Regards,
Mehul Ved
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] Apache access forbiden problem

2014-01-01 Thread Mehul Ved
On Wed, Jan 1, 2014 at 8:27 PM, JAGANADH G  wrote:

> Any clue how to resolve this issue.

Do provide apache logs also so one can identify what's actually
happening, especially the error logs would be useful.
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] Diff between 32bit and 64bit HW & OS

2013-12-29 Thread Mehul Ved
On Sat, Dec 28, 2013 at 1:23 PM, S Suresh  wrote:
> All,
> I have installed 64 bit ubunt 13.10 OS. But i realized ubuntu 64 bit is
> only for server. no GUI & not for day to day usage.

No, you downloaded the server version then. I have a Ubuntu 64-bit USB
install and it has a full desktop GUI install.
You can download the desktop version from http://www.ubuntu.com/download/desktop

> 3) Can i use 64bit virtual machine (using virtualbox/xen ) on 32bit OS

No. If your host OS is 32-bit, your guest OS cannot be 64-bit.
Host OS  Guest OS  Status
32 bit  32 bit Possible
32 bit  64 bit Not Possible
64 bit  32 bit Possible
64 bit  64 bit Possible

-- 
With Regards,
Mehul Ved
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] wvdial on bootup.

2013-12-29 Thread Mehul Ved
On Fri, Dec 27, 2013 at 2:18 PM, Rajesh kumar  wrote:
> Hi,
>
> How to add wvdail in bootup.
>
> I have a datacard connected to a machine, once the machine boots it should
> automatically connect to the internet via datacard.
>
> I tried configuring defaults in wvdial.conf and added
>
> auto ppp0
> iface ppp0 inet wvdial
>
> in /etc/network/interfaces not while restarting network i am not getting
> the connections.

Have you tried
http://www.linuxquestions.org/questions/linux-networking-3/starting-wvdial-at-boot-time-747887/
http://ubuntuforums.org/showthread.php?t=1098533
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] [[ OT ]] Need Info

2013-10-27 Thread Mehul Ved
On Sun, Oct 27, 2013 at 9:52 PM, Sahil ModGill
 wrote:
> Now my question is, if someone is using Open Source softwares in his office
> / business then is there any need of Auditing?

Yes, someone can still installed pirated apps or download pirated
audio/video. But, auditing isn't the only solution. Sensible policies
and user training goes a long way in ensuring that such cases don't
occur.
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] Throwing error as read only file system on creation of file/folder

2013-10-24 Thread Mehul Ved
On Thu, Oct 24, 2013 at 11:27 AM, hari prasadh  wrote:
> Hi All,
>
> Again iam facing the same issues as turned back to read mode.
> please find below dmesg log and these are the lines which is above and
> below the line *"Journal has aborted"*

Run a SMART test on your HDD to ensure it isn't failing
http://www.linuxjournal.com/magazine/monitoring-hard-disks-smart
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] CentOS Existing host to new host with all data/files

2013-10-22 Thread Mehul Ved
On Tue, Oct 22, 2013 at 5:57 PM, கணேஷ் குமார்  wrote:
> Our management decided to move our production server from existing provider
> to azure.

My experience with Azure was horrid. Hope you have better luck.

> We have centOS on both. It is for classified's related site, considerable
> amount of data and ~thousands users with their disc space quota.

Do keep your old machine in place till you're sure everything is
working on the new machine, even if it means paying for an idle
machine for a month or two. It might end up being invaluable in case
something isn't moved correctly or left out.
I'll also suggest you have a complete description of what you have on
your server and document it somewhere, if you don't already, and keep
updating it so you don't miss out on anything.

> This is our first time moving our servers. I need your Guidance and
> suggestions on these.
> 1) How to migrate the mysql db.

mysqldump works pretty neatly for DBs, but you'd also want to keep
usernames and passwords also intact. To start with, have a look at
http://www.cyberciti.biz/tips/move-mysql-users-privileges-grants-from-one-host-to-new-host.html

> 2) How to manage the emails during the downtime.

You don't need to have a downtime. Look at imap proxy for the same.
There was a really good thread on one of the ILUG lists. I'll pass it
across if I can dig it out. It covered this topic really well.

> 3) Manage the files

Manage? You can just use rsync to sync the files between both the machines.

> 5) Anything that I missed out!.

Your configurations. Write scripts to handle installation and
configuration or use readymade tools for the same wherever possible.

> My intention is not to pass on my work to someone.But I'm looking for
> earlier experiences who have done this before.All I wanted is some *need
> advice on best approach,working reference and Suggestions*,Since I can't
> try all the resources available on live.This is the reason am here.

Also, consider hiring a consultant who'll plan it out and you be the
one who executes it. That way you'll gain experience and at the same
time not lose important data. It can be more costly to lose data or
time as opposed to hiring an experienced hand.
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines

Re: [Ilugc] [[OT]] Few Questions

2013-10-16 Thread Mehul Ved
On Sat, Oct 12, 2013 at 4:07 PM, Sahil ModGill
 wrote:
> Greetings All,
>
> I have few questions. Please share your experiences.
>
> * Is it mandatory for a job seeker to be proficient or aware from both
> flavors "Debian and Redhat" (apt-get and yum) or one flavor is sufficient
> to land up a job?

I can't speak from market or hiring perspective but as a system
administrator myself, I find it handy that I have worked with various
types of Linux distributions.
But, what's more important is you understand what's going on under the
hood. In the end these all run Linux kernel with GNU userland
utilities and many more applications, as per your needs.

> * If one is sufficient then which one gets the preference (debian or
> Redhat)?

I believe a lot more companies would be using Redhat due to commercial
support from the vendor and popularity of it's certification. But, I
don't have any concrete data to support it. I have worked at places
where I have used both on the server end.

> * Does any linux certification play an important role in your job hunting
> journey?
> * If any candidate doesn't have any certification but (s)he is good in *nix
> and its concepts (good means "almost" familiar with *nix internals) then
> what are the chances?

I don't have any certification or formal qualification but that hasn't
stopped me from getting any of the jobs or projects. YMMV.
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] [Commercial] Need a Kernel Expert for Building a Custom Distro

2013-09-06 Thread Mehul Ved
On Fri, Sep 6, 2013 at 1:10 PM, Rajesh kumar  wrote:
> We are aiming at customization of Debian weezhy.
>
> Like installing debain net install, install the recommended packages and
> using something like remastersys to create a new one.

You need to really define what you want to do and ask for people who
can execute the task. Your subject gives a completely different idea
than what this email says.
Kernel experts would be people who understand intricacies of Linux
kernel and how to create modules, modify and tweak the kernel. That
has little to do with distro customisation, which includes a very good
understanding and upto date knowledge of the particular distribution.
Though kernel developers will likely be very good at this too but it
may not be exactly their area of interest or the problem they want to
solve.
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] help in calculator application in c (gtk)

2013-08-12 Thread Mehul Ved
On Mon, Aug 12, 2013 at 7:06 PM, Aravindhan.K  wrote:
> When I compiled why didn't any warning or error message appears regards it.
> Since i gave char * but actual argument is char. So error msg should appear.

Use -Wall switch while compiling. Did you use that?
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] CSS: making a div to always stay at bottom

2013-07-29 Thread Mehul Ved
On Mon, Jul 29, 2013 at 6:42 PM, Mohan R  wrote:
> Hi,
>
> A beginner question, I need to place a div to always stay at bottom of
> the viewport even if there is no other element in the html page.
>
> 
> 
> 
> 
> Test
> 
> #footer {
>  position: relative;
>  bottom: 0px;
> }
> 
> 
> 
>  Test Footer 
> 
> 

Check http://ryanfait.com/sticky-footer/
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] How to call a PHP Variable in Jquery?

2013-07-11 Thread Mehul Ved
On Thu, Jul 11, 2013 at 6:25 PM, Madan U Sreenivasan  wrote:
> What you need is not 'calling', but 'embedding'  - you should be doing this:
> $('#box4').css('background-image', 'url(images/ $filename; ?>)');

This isn't usually the recommended way to do it. It gets unmanageable
once you start working on bigger applications.

One way would be to use CSS classes, it is a good idea when you don't
have too many variables to handle. e.g. you have to alternate between
white and red backgrounds you can do try this
http://jsfiddle.net/3T2rJ/

This works when the choices are known beforehand and very limited. If
you need something dynamically generated using the server side script
you can try http://jsfiddle.net/eJX2W/
What this does it that it keeps the javascript part clean. You can
serve JS code from external file, which is good for performance
reasons.

PS: My JS skills are not too great so my code may not be optimum, if
so you're welcome to improve upon it.
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] how to use AWS?

2013-06-19 Thread Mehul Ved
On Wed, Jun 19, 2013 at 5:57 PM, vijay siva  wrote:

> Warning: require(aws/aws-autoloader.php) [function.require]: failed to open
>
stream: No such file or directory in
> /opt/lampp/htdocs/amazon/aws/servicefactor.php on line 5
>
> Fatal error: require() [function.require]: Failed opening required
> 'aws/aws-autoloader.php' (include_path='.:/opt/lampp/lib/php') in
> /opt/lampp/htdocs/amazon/aws/servicefactor.php on line 5
>

This isn't a AWS problem. PHP is throwing an error, telling you that it
can't find the file aws-autoloader.php in the include_path. Probably it
should have been require(aws-autoloader.php)? Check your directory layout
to figure out what's the correct path.
-- 
With Regards,
Mehul Ved
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] Which Db i need to choose ?

2013-06-14 Thread Mehul Ved
On Fri, Jun 14, 2013 at 8:04 AM, Karthikeyan A.K wrote:

> Either postgresql or mongo. Mongo will be cool!
>

If someone just chooses adhocly like this, it's a recipe for disaster.
PostgreSQL as well as MongoDB are not just popular but very good DBs to
use. But, they may not always fit for each situations.
What I would suggest is to understand DBMS concepts and then start learning
particular DBs and see how they fit and where they lack.
NoSQL are the big thing today but to understand them better, you need to
understand SQL itself first, NoSQL stands for Not Only SQL, it is built
over and above the SQL concepts instead of being an alternative to them.
Learn the basic SQL concepts, look at your favourite FOSS project and which
DB it uses, learn that DB and look at how the FOSS project uses that DB.
Try to find out why they chose that DB, how do they use it. Find out what
are the cons, pitfalls, workarounds of the DB that they use. Start
contributing to that project. That way you'll not just learn the DB but
acquire many more important skillsets.
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] Installing grub in the root partition

2013-05-18 Thread Mehul Ved
On Sat, Apr 27, 2013 at 10:46 PM, Shrinivasan T wrote:

> > root@ubuntu:/# sudo grub-install /dev/sda8
> > sudo: unable to resolve host ubuntu
> > /usr/sbin/grub-setup: warn: Attempting to install GRUB to a partitionless
> > disk or to a partition.  This is a BAD idea..
> > /usr/sbin/grub-setup: warn: Embedding is not possible.  GRUB can only be
> > installed in this setup by using blocklists.  However, blocklists are
> > UNRELIABLE and their use is discouraged..
>
> try installing in the hard disk itself.
>
> sudo grub-install /dev/sda
>
> This will detect the existing OS in all the partitions and setup the boot
> menu.
>
> Try this and share the results.
>

He is trying to install BCD boot manager on the boot sector. In such cases,
bootloaders like grub and ntldr go to the root partition of their
respective installs. That's the correct way since the selection of which OS
to boot is now handled by the boot manager.
You'd use this strategy for multiple Linux installs too, only one install's
grub goes on MBR, all the other go on the root partition.

I am too late to answer this, though. Would like to know from OP if he
fixed it? I haven't seen this error before. Is he using GRUB2?
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Fwd: [fosscomm] Canara Bank ignores GNU/Linux users

2013-05-18 Thread Mehul Ved
On Apr 30, 2013 8:40 PM, "ARUN PALANIAPPAN" 
wrote:
>
> Well
>
>
> All these issues arise due to the lack of awareness that prevail even
among
> the so called geeks.
>
> Most Professionals who design a software always think along a single
> direction and that causes all the mishap!!

I used to be their customer. I stopped after this change was introduced
about a year or so back. One of their managers did get in touch with me and
promised to resolve it but I never heard back from them.
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] [OT] PC Configuration for Web Development

2013-05-15 Thread Mehul Ved
On Wed, May 15, 2013 at 3:16 PM, Shaahul Hameed wrote:

> Dear Members
>
> What PC configuration would you recommend for Web Development (PHP, MySQL,
> etc.)? Mainly what processor and RAM.
>
> Do you really need an i7 processor with 2+ GHz machine? Or would a basic
> Ubuntu system with Dual Core processor & 2 GB RAM do?
>

I like to use my netbook running AMD E350 APU and 6 GB of RAM. You don't
need a powerful CPU as you're not compiling anything. I prefer more RAM as
these days browsers end up using most of the RAM and I prefer my system not
to be sluggish and that RAM is pretty cheap, if you have DDR3.
This setup gives me advantage of not having to lug around a heavy machine
and it gives a better battery life than usual laptops. And it's portable
than having having a desktop so I can carry it around.

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


Re: [Ilugc] [OT] How to start and Explore in Maria DB

2013-05-10 Thread Mehul Ved
On Fri, May 10, 2013 at 6:16 PM, Arun Khan  wrote:

> +1 but there is a learning curve.
>
> It is hearsay - it is possible to plug out MySQL and plug in MariaDB
> and your PHP/Python apps don't know the difference.   I am not a web
> app developer so cannot vouch for the statement.
>

I am running MariaDB on my local machine and the same app works properly
with the MySQL on server, without any changes.
Not sure if all the MySQL engines are available in MariaDB and vice versa.


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


Re: [Ilugc] How to give root access for wordpress

2013-04-26 Thread Mehul Ved
On Mon, Apr 22, 2013 at 1:04 AM, Abdur Rahman  wrote:

> Hi

when i do it through the
> terminal i m able to do it since i get the access to root before i do the
> operation. what is the the solution for this how can i get rid of this
> issue?
>

The way you're thinking is a dangerous approach. Please go and understand
the Unix permission model else you'll frequently run into trouble.
What you need to do is give read and write access to the wordpress files
and directory. Apache on your server must be running as a some user,
usually apache, www-data, nobody. Give read and write access for that user
to the wordpress files.
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] No trace to host error

2013-04-10 Thread Mehul Ved
On Wed, Apr 10, 2013 at 3:45 PM, hari prasadh wrote:

> Hi,
>
> If iam doing telnet from 10.242.142.72 to 10.242.142.71 ,it is not
> connecting to that port.But i was able to ping to 10.242.142.71.
>
> telnet 10.242.142.71 9160
> Trying 10.242.142.71...
> telnet: connect to address 10.242.142.71: No route to host?
>
> Both are in same network,no firewall block.
>
> What may be the other problems?
>

Since the network is within your control, use nmap to find out if the port
is really open. What if you run the same command on the 10.242.142.71
machine? Does that work?
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] [0T] Suggestion

2013-04-02 Thread Mehul Ved
On Apr 3, 2013 7:19 AM, "jaya kumar"  wrote:
>
> If we are using Google Search Engine In Same room with different laptops.
> The same keywords . Why it showing Different Results to Different people ?
>
> Why it not showing  the same results to everyone ?
>
> The world wide consortium need to Look around this ?
>
> If its means is it Standardize one ?
>
> is it good for a common man can getting the exact results as what he
> expects ?

Google Search is a product that is provided to you by a company ie Google.
If you don't like it, you can switch to another product by a different
company.
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] How to fetch the geotag's for my tweets in map...

2013-02-13 Thread Mehul Ved
On Wed, Feb 13, 2013 at 4:59 PM, Mehul Ved  wrote:
> On Wed, Feb 13, 2013 at 12:54 PM, Siva prabu  wrote:
>> Dear friends,
>>
>> How to fetch the geotag for my tweets in map...
>>
>> Any One Know please help me..
>
> Using the twitter API, you will get the co-ordinates for each tweet
> that was geo-tagged. You can then pass those co-ordinates to your
> favourite mapping service's API.

See this https://dev.twitter.com/discussions/1648

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


Re: [Ilugc] How to fetch the geotag's for my tweets in map...

2013-02-13 Thread Mehul Ved
On Wed, Feb 13, 2013 at 12:54 PM, Siva prabu  wrote:
> Dear friends,
>
> How to fetch the geotag for my tweets in map...
>
> Any One Know please help me..

Using the twitter API, you will get the co-ordinates for each tweet
that was geo-tagged. You can then pass those co-ordinates to your
favourite mapping service's API.
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] please suggest me free webhosting site for java,jsp

2013-02-13 Thread Mehul Ved
On Mon, Feb 11, 2013 at 2:49 PM, Arulkumar C  wrote:
> Respected Sir,
> Is there any free webhosting for java,jsp ,please
> suggest me.
>Thanking you,

See if heroku meets your requirements
https://devcenter.heroku.com/categories/java
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Suggestion for Dedicated Server for a Social networking website

2013-02-09 Thread Mehul Ved
On Sat, Feb 9, 2013 at 4:24 PM, Arun Khan  wrote:
> As someone else has suggested AWS, I agree.  IIRC, AWS offers a one
> year free micro instance.

Be careful before going with EC2 micro instance. It's not meant to use
with sustained processing. It's not a good idea to run website on it.
It's rather meant for running applications that need processing power
in bursts. Micro instance is not allocated dedicated processing, it
only gets whatever extra is available. So you get spikes in processing
only when available, read
http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/concepts_micro_instances.html#available-cpu-resources-during-spikes
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] [OT] Recommendation for Wi-Fi AP.

2013-01-30 Thread Mehul Ved
On Wed, Jan 30, 2013 at 1:01 PM, Gourav Shah  wrote:
>> >
>
>> > > 1. Is stable (does not require frequent reboot or power OFF/ON)
>> > > 2. Supports 802.11 b/g/n
>> > > 3. Supports up to WPA2-Enterprise (RADIUS auth)  - a *must*
>> > > 4. Has external Antenna
>> > >
>> > > Desirable - Accepts DD-WRT / OpenWRT images.
>>
>
> Is DD-WRT supported on any of the routers available in the India market? I
> am looking for integrating DD-WRT with Coovachilly + Radius server. I have
> a old Linksys WRT54G, however not sure which one amongst current routers
> support DD-WRT.

There are quite a few easily available ones. I use Asus RT N13U. It
works with DD-WRT perfectly. Only reason I am not able to use DD-WRT
on it is due to DD-WRT not supporting my data card, which is my sole
internet connectivity.
I doubt it meets Arun's requirements though as it's range isn't all
that great, but it works for me as the area in which I require Wi-Fi
is pretty limited.
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Mailing List tool

2013-01-28 Thread Mehul Ved
On Mon, Jan 28, 2013 at 3:03 PM, Marikkannan Rajagopal
 wrote:
> Hi All.,
>
>
> I have mail server in centos with postfix+Dovecot+Roundcube
> combination..,Now i need "Mailing List Tool" to design the customise "News
> Letter".,Which one is the best for my requirement.,please suggest me and
> how to integrate the mailing list tool with already running mail
> server..,and how to test the "Mailing List Tool".,


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


Re: [Ilugc] [OT] help need in PHP AJAX

2013-01-15 Thread Mehul Ved
On Tue, Jan 15, 2013 at 9:08 PM, பத்மநாதன்  wrote:
> ILUGCs,
>I need an help to construct form for inserting multiple rows in
> single table in Mysql using PHP.

I am working on a script that has something along the similar lines.
I have used jQuery to handle ajax post request, which calls another
file that has mysql insert code.
One way to do is, create a two dimensional array
values = [
{
 'column1' : 'value',
 'column2' : 'value',
 'column3' : 'value
},
{
 'column1' : 'value',
 'column2' : 'value',
 'column3' : 'value'
 }
]
Now to call the mysql script via ajax
$.ajax({
type: "POST",
url : 'mysql_script.php',
data : values,
success : function() {
//send success message to the user
}
 error: functional() {
 //send error message to the user
 }
});

Now, in the mysql_script.php file store the parameter i.e. values in a
variable, loop over it and store it in the db

//Connect to MySQL
$values = $_POST['values']
foreach ($values as $value) {
$column1 = $value['column1'];
$column2 = $value['column2'];
$column3 = $value['column3'];
//MySQL insert query
}
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Python GUI library:Python Library for developing GUI based Tool

2013-01-05 Thread Mehul Ved
On Sat, Jan 5, 2013 at 3:50 PM, AJIT KUMAR  wrote:
> Hi Dear All Ilugies,

Hi Ajit,

> I want to develop a GUI Tool and want to use Python only as the language.
> Now i wanted to know the best python GUI API/Library for the same.
>
> i will develop that tool for windows and Linuxs.
> Any suggestion and help will be welcome.

A good option would be Qt as it works on a lot of platforms -
including a few mobile ones as well.
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] TechFest @IIT Mumbai

2013-01-02 Thread Mehul Ved
As far as I am aware, only students can enter. One can't get entry without
a student ID.


On Thu, Jan 3, 2013 at 10:43 AM, Siji Sunny  wrote:

> Venu : IIT Bombay, Powai,Mumbai
> Date : 3-5 Jan, 2013
>
> http://www.techfest.org/
>
>
> --
> Siji Sunny
>
>


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


Re: [Ilugc] Virtual_host_Configuration

2013-01-02 Thread Mehul Ved
On Tue, Dec 11, 2012 at 5:14 PM, Marikkannan Rajagopal <
mail2marikkan...@gmail.com> wrote:

> Now i got the error while restart the "Apache server"..,
>
> Stopping httpd:[FAILED]
> Starting httpd: httpd: Could not reliably determine the server's fully
> qualified domain name, using 198.101.225.59 for ServerName
>[FAILED]
>

Check logs files for why the server is failing to start. As for the warning
you see there, answer is here
http://wiki.apache.org/httpd/CouldNotDetermineServerName
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] DNS issues

2012-12-07 Thread Mehul Ved
On Wed, Dec 5, 2012 at 11:38 PM, ashwin kesavan  wrote:
> Hi,
>
> I see a strange dns problem. When i do a dig  it resolves
> to a ip that i own. This ip is in USA and i am doing dig from chennai. My
> ISP and this USA hosting providers have no known relation. Then how is
> the dns name is able to resolve to my hosted ip ? Strange thing is online
> dns lookup tools don't resolve to this IP. Why does my dig is able to
> resolve while online tools aren't ? I dont have any hosts entry.

Have you modified your /etc/resolv.conf file to include nameserver of that host?
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] easy way to quote selected text in gmail

2012-11-30 Thread Mehul Ved
On Fri, Nov 30, 2012 at 4:30 PM, Girish Venkatachalam
 wrote:
> We require plaintext
> quoting which we can
> get if we turn on plain text just above compose textarea.

Isn't this plaintext quoting?

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


Re: [Ilugc] freedom toaster

2012-11-27 Thread Mehul Ved
On Wed, Nov 28, 2012 at 12:42 AM, Shrinivasan T  wrote:
> has anyone seen that in India?
> how much it Will cost to setup?
> how can we build such system with low cost?

There was a discussion on this on ubuntu-in, a few years ago, when it
was first launched. Not sure if it was setup anywhere in India though.

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


Re: [Ilugc] OT - Intel P4 machine

2012-11-20 Thread Mehul Ved
On Tue, Nov 20, 2012 at 5:17 PM, Balasubramaniam Natarajan <
bala150...@gmail.com> wrote:

> I doubt if the other widely used distros don't work how could this work ? I
> guess it has even more limited hardware support owing to its small size?  I
> will give it a shot any way and post my comment tomorrow.   I will be
> really happy if puppy linux or DSL could run on it
>

You're really mistaken here. Do give it a try. And since these distros are
optimised for low power PC's, they're likely to run much better.
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] how to create ebook app for android?

2012-11-18 Thread Mehul Ved
On Mon, Nov 19, 2012 at 12:22 PM, Shrinivasan T wrote:

> > What I did was to convert PDFs to epub format on my Linux desktop using
> > Calibre and import it into Aldiko. It then stores it into it's bookshelf.
> > More convenient than having one app per book.
>
> Is this applicable for tamil fonts and unicode fonts ?
>
> Does the unicode fonts show well in epub format?
>

I haven't tried with anything but English. You'll have to try it on your
own and find out.


>
> --
> Regards,
> T.Shrinivasan
>


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


Re: [Ilugc] how to create ebook app for android?

2012-11-16 Thread Mehul Ved
On Fri, Nov 16, 2012 at 11:46 PM, Shrinivasan T wrote:

> how to make them as android apps for easy reading?
>
> pdf reading is not good as native app.
>

What I did was to convert PDFs to epub format on my Linux desktop using
Calibre and import it into Aldiko. It then stores it into it's bookshelf.
More convenient than having one app per book.

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


Re: [Ilugc] Create customized ubuntu

2012-10-29 Thread Mehul Ved
On Mon, Oct 29, 2012 at 2:58 PM, Yuva raj  wrote:
> Hi All,

Hi,

> Creating customized ubuntu iso which contains all our development tools.

You can follow this https://help.ubuntu.com/community/LiveCDCustomization

> Creating an intranet repo server so that all the updates are served from
> intranet.

You can use apt-cacher-ng
http://www.ubuntugeek.com/apt-cacher-ng-http-download-proxy-for-software-packages.html

> --
> *Thanks*
>
> *Yuvaraj L*
> ___
> ILUGC Mailing List:
> http://www.ae.iitm.ac.in/mailman/listinfo/ilugc



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


Re: [Ilugc] [OT] Suggestion for SMS service provider

2012-10-28 Thread Mehul Ved
On Mon, Oct 29, 2012 at 9:42 AM, Shrinivasan T  wrote:
>>
>> Talcos may have HTTP, FTP, SMPP based service for the bulk SMS. Plz
>> talk to them.
>
> Any link for Talcos?
>
> Google search gives different links than sms.

He meant telcos aka telecom companies.

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


Re: [Ilugc] Cannot connect to remote SSH server

2012-10-16 Thread Mehul Ved
On Tue, Oct 16, 2012 at 3:02 PM, Balasubramaniam Natarajan
 wrote:
> Hi

Hi,

> I have a remote ssh server at the IP xx.yyy.zz.44 running on port 2500,  I
> am not sure why I don't get a password prompt.  Has some one faced the same
> problem ?  I know the problem is not with the server because other are able
> to login to that server.  I tried from a different PC as well the result is
> the same.

Try ssh -o PreferredAuthentications=keyboard-interactive -o
PubkeyAuthentication=no -p 2500 xx.yy.zz.44
It will not try the publickey authentication at all and prefer password.
But, this is a workaround, you should find the actual problem. Maybe
it's to do with the fact that you have DSA key and your server isn't
configured to handle it and is expecting only RSA key.

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


Re: [Ilugc] Change of process Time

2012-09-05 Thread Mehul Ved
On Thu, Sep 6, 2012 at 6:53 AM, karthik kgm  wrote:
> Hi Arun,
>
> Due to some official reason, I can't share it here.

This makes it difficult to answer on an open mailing list. You need to
look for paid support who will be ready to accept NDAs.
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Problem in ftp access through filezilla (not connected)

2012-09-02 Thread Mehul Ved
On Mon, Sep 3, 2012 at 10:52 AM, Marikkannan Rajagopal
 wrote:
> Rackspace, i installed the vsftpd server through yum and configured the
> vsftpd.conf file as per my requirement. And i created the user as blooma
> and i make it as ftp user, and also i configured the ftp user listening
> directory as per my requirement.


Have you opened the port in the firewall? See
http://www.rackspace.com/knowledge_center/article/rackspace-cloud-essentials-5-centos-installing-vsftpd
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Problem in ftp access through filezilla (not connected)

2012-09-02 Thread Mehul Ved
On Mon, Sep 3, 2012 at 9:43 AM, Marikkannan Rajagopal
 wrote:
> I have server in centos 6.3(cloud server) and i installed "Vsftpd"
> server for ftp access.While i connecting with the server itself it was
> being communicated properly by "ftp  localhost"

Which cloud server? What steps did you take to enable FTP on the cloud
infrastructure? It usually isn't as straightforward to get FTP working
on cloud hosting.
Alternatively, if you just need access to transfer files, consider sftp.


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


[Ilugc] Acceptable behaviour? was (Re: Foss based solutions providing Organizations in TamilNadu)

2012-08-30 Thread Mehul Ved
On Thu, Aug 30, 2012 at 12:45 PM, Karthikeyan A.K  wrote:
> Yup, you may not read it if you wish. It could put you into hell. :-))

I went around and looked at his emails to the list. Each of them seem
to be bordering either trolling or immature behaviour. It is just
adding noise to the list without adding any meaningful content.
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Suresh Jec

2012-08-23 Thread Mehul Ved
On Mon, Aug 20, 2012 at 2:50 PM, suresh G  wrote:
>  Hai Guys this is suresh from Jec,i selected this technology and
> domain(Drupal+PHP) for my final year project, so can you please suggect
> some wishlist modules for drupal :)

You should look around in the drupal bug tracker. And drupal mailing
list are more suitable for these kind of questions as the people there
are more likely to use drupal day to day. There would be drupal people
of this list but very few so you'll have less chances of getting
information here.


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


Re: [Ilugc] vlc player is not working fedora 17

2012-08-17 Thread Mehul Ved
On Thu, Aug 16, 2012 at 8:13 PM, snegan  wrote:
> hi
> c o
> iam trying open vlc player in terminal but it showing following error
>
> [anwar@localhost ~]$ vlc
> VLC media player 2.0.3 Twoflower (revision 2.0.2-93-g77aa89e)
> [0x9288478] main interface error: no suitable interface module
> [0x91f28f0] main libvlc error: interface "globalhotkeys,none"
> initialization failed
> [0x91f28f0] main libvlc: Running vlc with the default interface. Use
> 'cvlc' to use vlc without interface.
> [0x9288478] main interface error: option qt-volume-complete does not exist
> [0x9288478] skins2 interface error: no suitable dialogs provider found
> (hint: compile the qt4 plugin, and make sure it is loaded properly)
> [0x9288478] skins2 interface error: cannot instantiate qt4 dialogs provider
> [0x9288478] [cli] lua interface: Listening on host "*console".
> VLC media player 2.0.3 Twoflower
> Command Line Interface initialized. Type `help' for help.

Did you change anything in the qt libraries?


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


Re: [Ilugc] Can ping website hosts but cannot access the webpages via Wifi

2012-08-09 Thread Mehul Ved
On Aug 9, 2012 5:42 PM, "Manokaran K"  wrote:
>
> On Thu, Aug 9, 2012 at 5:13 PM, Manokaran K  wrote:
>
> > Hi,
> >
> > Am having a strange problem on Ubuntu 12.04 (also on 11.04 earlier). I
> > have setup the network properly and am able to ping any website (
> > google.com, yahoo.com...) but not able to access the web pages via the
> > browser nor wget. Wget says: 'HTTP request sent, awaiting response'.
> > This happens only in Wifi. If I try through a wired connection it all
works
> > without problems. Even while Ubuntu cannot connect via Wifi my mac
works on
> > wifi without problems!
> >
> >
> >
> Actually another Ubuntu laptop works just fine. The problem is only with
an
> Acer Aspire 4736Z!
>
> Puzzled!

You sure haven't set any http  proxy on the first system? Check output of
$ echo $http_proxy
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] What is the easy way to collect data using wordpress?

2012-08-09 Thread Mehul Ved
On Thu, Aug 9, 2012 at 12:53 PM, logesh kumar  wrote:
> Hi Shrini,
> 4. *Contact form 7*- A simple but powerful contact form solution. Its free.
> http://wordpress.org/extend/plugins/contact-form-7/

I'll vote for this one. It has lot of features and also has a few
other plugins built around it.

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


Re: [Ilugc] How to log IRC sessions?

2012-08-08 Thread Mehul Ved
On Wed, Aug 8, 2012 at 4:15 PM, Shrinivasan T  wrote:
> Thanks mehul,
>
> Is it possible to have irclogs.ilugc.in like subdomain where the logs
> are displayed year/month/date wise?

You can point that subdomain to my server. I will do the rest. In case
you prefer to keep it on the existing ilugc.in server, I can setup a
mechanism to transfer the files periodically to that server.

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


Re: [Ilugc] How to log IRC sessions?

2012-08-08 Thread Mehul Ved
On Wed, Aug 8, 2012 at 4:04 PM, Shrinivasan T  wrote:
> Is there any free solution to archive all the IRC discussions
> automatically like http://irclogs.ubuntu.com/ ?

It is done by IRC bots. I have one running on my server. I can set it
up to log discussions on the ILUC channel and then those logs can be
displayed wherever you like.

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


Re: [Ilugc] [OT] A short bio of Kenneth Gonsalves

2012-08-06 Thread Mehul Ved
On Mon, Aug 6, 2012 at 5:11 PM, JAGANADH G  wrote:
> Fixed the typos and the page is now available at
> http://ilugcbe.org.in/index.php?title=Kenneth_Gonsalves

There is no mention on the page about him being a lawyer.
Another point which I'd like to add is his role in attempting to start
a NRCFOSS node in Mumbai. Though it failed for various other reasons
but he took the initiative to get it started.

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


Re: [Ilugc] how to protect zimbra web UI access?

2012-07-31 Thread Mehul Ved
On Tue, Jul 31, 2012 at 6:51 PM, Shrinivasan T  wrote:
>>
>> I haven't worked directly with Zimbra but the usual methods would be
>> 1. Make it listen only on the internal IP addresses
>> 2. Block external access via firewall
>
> Sometimes, users want to access the webUI from browsing centers.
> How to do this, if we block external access via firewall?

Doesn't Zimbra Web UI offer authentication support? Also, if it runs
under apache, you could use htaccess.

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


Re: [Ilugc] how to protect zimbra web UI access?

2012-07-31 Thread Mehul Ved
On Tue, Jul 31, 2012 at 6:24 PM, Shrinivasan T  wrote:
> I have a zimbra server installed in a server, which has a public IP
> and a domain name configured.
>
> Now the web UI is accessible by public.
>
> How to protect the web UI accessible only for the internal users?

I haven't worked directly with Zimbra but the usual methods would be
1. Make it listen only on the internal IP addresses
2. Block external access via firewall
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Web based IRC client for freenode

2012-07-31 Thread Mehul Ved
On Tue, Jul 31, 2012 at 2:52 PM, satyaakam goswami  wrote:
>> Will add in http://ilugc.in so that we can start irc chat in the site itself.
>>
>> Any suggestions?
>
> how about picking one plugin  from
> http://wordpress.org/extend/plugins/search.php?q=IRC&sort=

Or look at adding webchat widget
Here's the code from webchat.freenode.net for #ilugc, some options can
be customised.
http://webchat.freenode.net?channels=ilugc&uio=d4";
width="647" height="400">
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] [ilguc] Ubuntu is not Linux- Is it true?

2012-07-29 Thread Mehul Ved
On Sun, Jul 29, 2012 at 8:57 PM, Mehul Ved  wrote:
> On Sun, Jul 29, 2012 at 9:42 AM, ARUN PALANIAPPAN
>  wrote:
>>
>> In that book, it is mentioned that
>> "*Contrary to common belief*:
>> Linux is not a corporation
>> • Nobody owns Linux
>> •  *   Ubuntu is not Linux*
>>
>> Till Date, I am of the opinion that Ubuntu is one among the Linux
>> distributions.
>> Is it wrong?
>
>
> I haven't read the book but i am assuming, the author meant there to
> highlight that Linux is just the kernel, and the distribution is far
> more than just the kernel. Ubuntu does run on Linux kernel as can be
> verified using the uname
> $ uname -s
> Linux

Just read that article. It is a very badly worded line. And you can
very well see that they've mentioned in the very next part as to what
I said. You should have read it.

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


Re: [Ilugc] [ilguc] Ubuntu is not Linux- Is it true?

2012-07-29 Thread Mehul Ved
On Sun, Jul 29, 2012 at 9:42 AM, ARUN PALANIAPPAN
 wrote:
>
> In that book, it is mentioned that
> "*Contrary to common belief*:
> Linux is not a corporation
> • Nobody owns Linux
> •  *   Ubuntu is not Linux*
>
> Till Date, I am of the opinion that Ubuntu is one among the Linux
> distributions.
> Is it wrong?


I haven't read the book but i am assuming, the author meant there to
highlight that Linux is just the kernel, and the distribution is far
more than just the kernel. Ubuntu does run on Linux kernel as can be
verified using the uname
$ uname -s
Linux
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Ubuntu - alfresco query

2012-07-28 Thread Mehul Ved
On Sat, Jul 28, 2012 at 8:36 PM, Rajagopal Swaminathan <
raju.rajs...@gmail.com> wrote:

> I am not uncomfortable twisting a centos box's ear using chkconfig and all
> that.
>
> But I am all thumbs when it comes to deb.
>
> Any pointers? (of course a silly question from a noob)
>

Good old sudo /etc/init.d/tomcat start will definitely work, for one time.
to start the service at boot time\,
sudo  update-rc.d tomcat defaults
more info here
http://www.debuntu.org/how-to-manage-services-with-update-rc.d

and if you prefer the upstart way then see
http://upstart.ubuntu.com/getting-started.html

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


Re: [Ilugc] URL you requested has been blocked as per DOT guidelines

2012-07-23 Thread Mehul Ved
On Jul 23, 2012 10:04 PM, "Manokaran K"  wrote:
> Am able to access it using my BSNL broadband connection! Maybe Aircel is
> overreacting by blocking all of pastebin instead of a specific url!!

Many other ISPs including MTNL are still blocking many of these sites.
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] [ilugc] Best compatible USB DataCard for latest Ubuntu

2012-07-19 Thread Mehul Ved
On Thu, Jul 19, 2012 at 4:02 PM, Arunraja  wrote:
> Am looking to buy an DataCard for Ubuntu Machine , Can someone suggest best
> option considerable

I have Lava 720G and Huawei E1750. Both work perfectly with Ubuntu and
Arch. The latter even works with USB port on my router, which supports
data cards.


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


Re: [Ilugc] sudo file on multiple machines

2012-07-18 Thread Mehul Ved
On Wed, Jul 18, 2012 at 3:55 PM, Roshan George  wrote:
> On Wed, 2012-07-18 at 14:30 +0530, Mehul Ved wrote:
>> You can can replace rsync with version control tools like git so you
>> can even version the various revisions of the file.
>
> Git will, by default, happily turn /etc/sudoers 0644. Then there will be
> some trouble. etckeeper is supposed to work around this and someone
> seems to have asked a similar question on ServerFault regarding that:
> <http://serverfault.com/questions/28973/is-it-possible-to-use-etckeeper-with-a-single-shared-git-repository>

Thanks for informing that. I hadn't tried the solution myself so was
unaware of the same.
Just wondering how would tools like puppet and chef work for such
requirements. It would definitely be an overkill for just the sudoers
file. But, considering if it were to manage all the 4 servers, how
useful would it be? Someone here with hands-on experience of that.
PS: Sorry for taking the thread at a tangent but I feel it would be a
useful extension of this question so I'm not starting off a new
thread.
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] sudo file on multiple machines

2012-07-18 Thread Mehul Ved
On Wed, Jul 18, 2012 at 8:23 AM, Ashish Verma  wrote:
> I have 4 machines..
>
> server1
> server2
> server3
> server4
> I have configured sudo file on server1. I want all other servers to use the
> same file. Everytime I update the file I shouldnt have to copy it to all
> other servers, instead they should use the same file.

One way I can think of is using inotify + rsync. Use inotify to
monitor changes to the file. Whenever the sudoers file is changed, use
the rsync script to copy it over to the other machines.
You can can replace rsync with version control tools like git so you
can even version the various revisions of the file.
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] unable to access through proxy

2012-07-04 Thread Mehul Ved
On Jul 4, 2012 12:18 PM,  wrote:
> sorry to say that Still it persists, the error message on the browseer as
usual of the following
>
> ---
> Network Error (dns_unresolved_hostname)
>
> Your requested host "eprints.ccmb.res.in" could not be resolved by DNS.
>
> For assistance, contact your network support team.
> --

Add eprints.ccmb.res.in under the exceptions list.
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] unable to access through proxy

2012-07-03 Thread Mehul Ved
On Wed, Jul 4, 2012 at 11:49 AM,   wrote:
> Hi all
>
> Recently deployed a local library repository server using CENTOS 5.2 on our 
> intranet and also configured local DNS on the same machine. I am able to do 
> ping, resolve through nslookup, IP, hostname etc.. But the issue is that I am 
> unable to access through proxy server via browser settings. If I remove proxy 
> and choose "No proxy", then I am able to access through browser on intranet. 
> What is the technical hitch invlovled in it.? could anybody help me in 
> resolving this issue.?

You need to put the IP of the repository server under exceptions in
the proxy server.
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Eclipse and bug databases - How to download ?

2012-06-27 Thread Mehul Ved
On Wed, Jun 27, 2012 at 11:42 PM, Karishma Balan
 wrote:
> OK.. but it displays only new bug reports. As my project uses machine
> learning approach, I need a big dataset of FIXED bug reports.

If there isn't something existing, you might have to either get it
from the people who maintain the bug tracker, or scrap it from the
website by yourself.
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Eclipse and bug databases - How to download ?

2012-06-27 Thread Mehul Ved
On Wed, Jun 27, 2012 at 11:34 PM, Karishma Balan
 wrote:
> A website http://www.st.cs.uni-saarland.de/softevo/bug-data/eclipse/ says
> the eclipse bug data is publicly available. Also I found that
> Bugzilla provides bug reports for Mozilla and Eclipse.But the problem is
> that, it shows only new format, which we can download in .csv format. I
> need bug reports of longer period and dont know how to make use of the .csv
> files.

That project only provides for eclipse. You can use it for your
project though. One can easily import csv file into mysql.
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Eclipse and bug databases - How to download ?

2012-06-27 Thread Mehul Ved
On Wed, Jun 27, 2012 at 11:06 PM, Karishma Balan
 wrote:
> Thanks a lot..I am a beginner in ilugc, and dont know much about this. How
> can I get into Mozilla or eclipse mailing list?

Mozilla Mailing Lists - https://lists.mozilla.org/listinfo
Eclipse Mailing Lists - http://www.eclipse.org/mail/

You might also want to try asking on their IRC channels
Mozilla - https://wiki.mozilla.org/IRC
Eclipse - http://wiki.eclipse.org/IRC
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Eclipse and bug databases - How to download ?

2012-06-27 Thread Mehul Ved
On Wed, Jun 27, 2012 at 6:22 PM, Karishma Balan
 wrote:

Hi Karishma,

> I am working on the project “Bug Assignment” where bugs are assigned to a
> potential developer. Bug assignment uses machine learning approach where
> the classifiers are trained using the bug reports – fixed bug data.

I do believe that this will be a useful feature to have.

> I browsed websites to get the bug database. The web sites say that the
> databases are publicly available and can be downloaded. But I couldn’t get
> a link to download. According to the paper that I follow, they have used
> the bug reports of Mozilla from May 1998 to March 2010, and that of Eclipse
> from October 2001 to March 2010. Please help me to get the Mozilla and
> Eclipse bug databases.

When they say "bug database is publicly available" it means you can go
to the bugs website and publicly browse through each bug report. Can
you point me to the place where they say it's downloadable?


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


Re: [Ilugc] Modem updates or Hardening Guidelines

2012-06-15 Thread Mehul Ved
On Thu, Jun 14, 2012 at 8:43 AM, Balasubramaniam Natarajan
 wrote:
> Yes, I agree.  My concern was I was expecting some thing at least one
> firmware for a quarter.  This is because I use to get a paper along with my
> ISP bill to have my router switched off while I am not using it as the
> Modem is just like a mini PC which attacker can take over and start up
> something which might end up on unsuspecting owners of the modem.

That would depend on how many services you are exposing to the outside
world. Ideally nothing to very little.

> I have to accept I did not understand the point above.  Are you trying to
> tell that the embedded system are much more secure than the Distros which
> we are using ?

Not more secure, they are tightly integrated as hardware and software
and thus the development effort required to provide upgrades is
considerably more. The software is required to be much more optimised
due to hardware constraints and as thus a lot of pieces are tightly
tied together. It's unusual to see small updates to individual
software as in desktop distros.
Most of those distros won't even have a proper package manager or one
that is less functional. That would make the process even harder.
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Modem updates or Hardening Guidelines

2012-06-13 Thread Mehul Ved
On Wed, Jun 13, 2012 at 10:46 AM, Balasubramaniam Natarajan
 wrote:
> Hi
>
> I have always wondered that the ubuntu machine which I work with receives
> lots of security updates, if so why not the modems which we use as it is
> direcly on the line of fire.  Are there any tips to harden the Modem which
> we get from the local ISP ?

Some reasons which I believe deserve a mention

1. Distros like Ubuntu run off testing branch, if you'd use something
like Debian stable you'd have lesser updates.

2. A lot of updates you see are related to desktop software, which are
mostly feature updates or small fixes rather than security fixes. The
security fixes you receive are relatively lesser.

3. My little experience with embedded systems, which your routers
would fall under, are much more tightly bound together than desktop
distros so releasing updates for it is a relatively difficult task.

4. The companies producing these products are more of a hardware
company than software. They have little to no incentive to keep
providing regular software upgrades. They'd rather focus on quickly
releasing new hardware in the market.

If you combine all the 4 above reasons you'd see why it's uncommon to
see regular software updates to your modems/routers.
Think about how often do even smartphones receive security updates?
Mostly what you'd see are feature upgrades.

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


Re: [Ilugc] Novice GUI development

2012-06-09 Thread Mehul Ved
On Sat, Jun 9, 2012 at 9:29 PM, Balasubramaniam Natarajan
 wrote:
> Hi

Hi,

> I need to know what is the best Novice GUI development tool on Ubuntu.
>
> For example if I am writing a small python script where in it just adds up
> two number, I need to create a small stand alone application which will
> show two text box for entering numbers and Add button.  The answer should
> get displayed in the total box.

If you requirements are as simple as you've mentioned here, you can
look at Zenity http://library.gnome.org/users/zenity/stable/

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


Re: [Ilugc] Hello every one

2012-06-08 Thread Mehul Ved
On Jun 8, 2012 7:27 PM, "R.I.P-7"  wrote:
>
> I am having doubts regading on linux admin..
> 1.Is it possible,could i change my admin career to php,perl,python,ruby
> programmer?

One could become a rocket scientist too if one desires.

> 2.Could anyone point out the importance of linux admin?

System Administrators are there to setup, manage and fix systems because we
haven't yet invented machines intelligent enough to perform these tasks on
their own very reliably.

> 3.How would be the packages for linux admin when compared to the
> perl,python,php,ruby programmer?

I haven't seen system admins being packaged into deb, rpm, exe or even
tar.gz format till date.

> 4.if i had got 1 year experience as linux admin,what was  skills i should
> know?

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


Re: [Ilugc] [OT] Indian Court Order

2012-06-03 Thread Mehul Ved
On Sun, Jun 3, 2012 at 7:14 PM, 0 <0...@0throot.com> wrote:
>
>> Does it mean that C0urt_order does not apply to BeeYesNL ?
>>
>
> AFAIK, They just don't implement it. The person who obtained the order,
> in a way, implements it for their customers and customers of some of
> their competitors. I doubt, they would dare to question BSNL. Of course,
> this is just my opinion.

>From the varying degree of blocking I saw of the sites 2 weeks back, I
am pretty sure it's the ISP who does.
And it makes no sense why ISP will allow third party to touch their
infrastructure to block the sites.
And usually it isn't ISPs who get these court orders sanctioned.
-- 
With Regards,
Mehul Ved
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Govt of India proposes to ban SSH (Or wants you to use 40 bit keys)

2012-05-26 Thread Mehul Ved
On Sat, May 26, 2012 at 8:01 PM, Manokaran K  wrote:
> Stumbled on this via Hacker news:
>
> http://www.dot.gov.in/isp/guide_international_gateway.htm
>

It seems like a pretty old guidelines.
1. As per pluggd.in it was put up in 2001 -
http://www.pluggd.in/indian-govt-to-ban-https-and-ssh-297/. Little
more fiddling around with the dates, it seems that page was put up on
31st January 2001.
2. As per wayback machine it was first captured on 22nd February 2006
- 
http://wayback.archive.org/web/2002041500*/http://www.dot.gov.in/isp/guide_international_gateway.htm
3. As per the headers, it was last modified on 26th June 2008.

Do we really need to worry about something that old?
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Mail_Server_Issue

2012-05-14 Thread Mehul Ved
On Mon, May 14, 2012 at 6:05 PM, Marikkannan Rajagopal
 wrote:
> hi all.,
>
>       I configured "Mail Server with POSTFIX+DOVECOT+SQUIRRELMAIL" in
> CENTOS 5.3 .
> It is working fine in local and also i able to send mail to "Outside mail
> server like "Gmail" etc".
> But I can't receive mail from gmail to my localmailbox.I register my domain
> in "admin1and1" and
> there i set my localbox ISP (Static IPaddress) as "A Record" and the
> redirection are working fine.
> But i can't get the mail from outside server.The mails are bouncing and
> generate 550 error.

Have you set the correct MX records?
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] How to install Linux headers after compiling kernel from source

2012-05-09 Thread Mehul Ved
On Thu, May 10, 2012 at 12:15 AM, prasannatsmkumar
 wrote:
> Hi,
>
> I compiled linux 3.4-rc5 kernel from source code and installed it. Now I
> need to install the linux headers so that I can install my AMD catalyst
> graphics driver. I am not able to find way to install linux headers.

You don't need to install anything more, the header files are already
present inside the source code you downloaded. You just need to point
the drivers to the location of the source code.


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


Re: [Ilugc] Running apache on different port

2012-05-04 Thread Mehul Ved
On Fri, May 4, 2012 at 6:01 PM, Suresh Kumar  wrote:
>  but in that case the webpages will be served only when i explicitly
> mention the port no as 81
>  for eg:
>    http://localhost:81
> but what i want to do is that . i want to run apache server at port 81 and
> want to access the pages without mentioning the port 81
>  some thing similar to
>   http://localhost
>
> Is this possible..?

I am not familiar with Kerio but why do you need to run a mail server
at port 80?
There are a couple of ways around to solve your problem.

Situation 1: If you have 2 separate domains or ip addresses then you
can set a firewall rule that if the request comes in on kerio.domain
then it goes to port 80 and if it comes in on http.domain(s) then go
to port 81. But, this can be a messy solution and should be avoided as
far as possible.

Situation 2: Run apache on port 80, run kerio on a port other than 80
and setup a virtual domain which points to that port. Examples of this
setup can be found here
http://httpd.apache.org/docs/2.2/vhosts/examples.html#port. IMO, this
is a cleaner and easier to maintain/debug solution.

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


Re: [Ilugc] Problem in Displaying Logo of website

2012-04-25 Thread Mehul Ved
On Apr 25, 2012 12:17 PM, "kenneth gonsalves" 
wrote:
>
> On Wed, 2012-04-25 at 12:12 +0530, sumanth ks wrote:
> > I din't knew HTML is case sensitive
>
> it is not.

Yes, HTML isn't but Linux is. I believe OP designed it locally on a Windows
machine which is case insensitive so that's where the problem started.
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Unix for Windows 7

2012-04-19 Thread Mehul Ved
On Thu, Apr 19, 2012 at 8:28 AM,   wrote:
> Hi,
>   If any one know about unix installation possible in widows 7 can post
> their views..I need to install unix in my machine..

Have a look at www.cygwin.com/ and www.colinux.org/


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


Re: [Ilugc] Gammu - How to hide sender number?

2012-04-13 Thread Mehul Ved
On Fri, Apr 13, 2012 at 5:58 PM, Dhastha  wrote:
> Hi friends,
>
> I am sending sms through a gsm modem using gammu. I have one problem
> that sms receiving person can able to see mobile number.
> So I am looking for the solution to hide sim number and display a name.
>
> For example, If we book train ticket we get sms alert from IRCTC ,
> instead of displaying number, it shows some name.

It is called as sender ID and here's what it means
http://www.smsgatewaycenter.com/blog/bulk-sms-sender-id-codes/

Bulk sms API providers offer sender IDs.
-- 
With Regards,
Mehul Ved
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Basic Cricket Score Fetching App - Python + Tkinter

2012-04-10 Thread Mehul Ved
On Tue, Apr 10, 2012 at 11:32 PM, AJIT KUMAR  wrote:
> Hi Prasanna
> i try with Ubuntu 10.4 according to readme file instruction.
> but got a error like"couldn't find python-feedparser.
> How to fix this.

Open a terminal and type
sudo apt-get install python-feedparser
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Help needed with Dokuwiki migration

2012-04-05 Thread Mehul Ved
On Thu, Apr 5, 2012 at 7:59 PM, Balachandran Sivakumar
 wrote:
> Hi,
>
>         We have been using Dokuwiki for our internal documentation.
> Now, we are moving to a new server and would want to migrate the data
> in the wiki. I am aware of a backup plug-in. But that doesn't let me
> restore the contents :). There is a round about way to untar-ing the
> backup in proper paths. But, what is the suggested way to take a dump
> and restore it on the new server? Thanks

Doesn't dokuwiki just consist of flat files? It should just involve
copying the data folder, whatever the correct name is, to the new
wiki. And then whatever else you want to copy over, everything should
be in the respective files.
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] install linux without internet access

2012-04-04 Thread Mehul Ved
On Wed, Apr 4, 2012 at 5:49 PM, kenneth gonsalves
 wrote:
> So my question is: can one install Fedora without internet - and if not is 
> there a distro
>  that can be installed without internet

Are you sure of this? I installed Fedora 16 on one of machine
yesterday and I pretty well remember that it didn't have the LAN cable
connected till I wanted to download the latest updates.

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


Re: [Ilugc] Pen input device for Linux

2012-04-04 Thread Mehul Ved
On Wed, Apr 4, 2012 at 12:14 PM, prasannatsmkumar
 wrote:
> Is there any way to use a Android mobile (with touch screen) as a graphics
> tablet? Technically it is possible but my concern is whether such
> application already exists? I am not going to use this for designing (like
> working with GIMP etc). I want to take notes while reading books so even
> capacitive touch will be enough (no need for stylus or very pixel perfect
> drawing).
>
> Install an app in Android mobile or tablet that will capture touch events
> and send the co-ordinates to Linux system using USB or some other
> interface. The co-ordinates are then captured by Linux and used to draw or
> write.

If you're connected over wifi network, you can try this http://remotedroid.net/

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


Re: [Ilugc] shell script to search for a file

2012-03-25 Thread Mehul Ved
On Sun, Mar 25, 2012 at 10:02 PM, Bharath Kumar
 wrote:

> #!/bin/bash
> echo -e "Input the file that you want to search: c"
> read input
> find ~ -name ${input}

Use $"input" instead of ${input}

> echo -e "Input the file that you want: c" // Comments : I will copy the file 
> with the full name that I want
>                                           //to find out what type of file it 
> is

Also, the inline commenting method is wrong. In bash, you use # for commenting.

> read input1
> file ${input1}| cut -d: -f 2
>
>
> Thanks,
> Bharathkumar A.V.
> ___
> ILUGC Mailing List:
> http://www.ae.iitm.ac.in/mailman/listinfo/ilugc



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


Re: [Ilugc] Integrating XMONAD with GNOME

2012-03-16 Thread Mehul Ved
On Thu, Mar 15, 2012 at 6:33 PM, Princeyesuraj Edward
 wrote:
> I want to try XMONAD and so i installed it in my Debian Squeeze .
>
> With the command apt-get install xmonad.
>
> But when restarted my System and tried to login with xmonad instead of
> gnome.
>
> But nothing happened and it halts on default wallpapper.
>
> Can anyone please describe me configuring XMONAD.

You can start from here http://xmonad.org/tour.html
Then read this http://www.haskell.org/haskellwiki/Image:Xmbindings.png

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


Re: [Ilugc] css lost in kaniyam

2012-03-12 Thread Mehul Ved
On Mar 12, 2012 1:20 PM, "Shrinivasan T"  wrote:
>
> the kaniyam.com site lost its css styles for the administration pages.
>
> it has the latest wordpress.
> I tried changing the admin theme too.
> no luck.
>
> how to restore the css for admin pages?

Reinstall wordpress via the upgrade page. If that doesn't work you can
upload files via FTP too.
Mostly I have seen this happen when some file isn't unpacked properly while
upgrading.
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] [ilugc]- Need a open source web tool similar to mediawiki

2012-03-08 Thread Mehul Ved
On Thu, Mar 8, 2012 at 10:00 PM, vijayaraghavan seshan
 wrote:
> Can anyone suggest a good tool which works as similar to mediawiki. It
> would be really helpful.

You can start here http://en.wikipedia.org/wiki/List_of_wiki_software

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


Re: [Ilugc] Get latest edited line/lines from a file

2012-02-27 Thread Mehul Ved
On Mon, Feb 27, 2012 at 7:33 PM, Zico  wrote:
> Yes, I do use version control system. But, there it is showing me that,
> "this" file is new, but "which section" of "this" file is new? That is my
> question. :)

Then diff should show you the changes.


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


Re: [Ilugc] Get latest edited line/lines from a file

2012-02-27 Thread Mehul Ved
On Mon, Feb 27, 2012 at 7:28 PM, Zico  wrote:
> Hi,
>
> Just one issue came into my mind. Is it possible to get the "latest" added
> lines in any file? I mean, say in some configuration file, I need to know,
> which lines has been added recently. So, is there any way with
> vim/emacs/nano or with core linux command to accomplish that?

AFAIK, you can't. That is why version control systems were invented.
You could version those files to get such information.


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


Re: [Ilugc] libpanel-applet error

2012-02-22 Thread Mehul Ved
On Wed, Feb 22, 2012 at 2:48 PM, Karthikeyan Venkatraman
 wrote:
> Pl find the error message, when I ran apt-get -f install fslint (I run this
> command in the root user)

--snip--

> E: Unmet dependencies. Try 'apt-get -f install' with no packages (or
> specify a solution).".

Do what it says here, run
apt-get -f install
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] [tech help] calling out for help from ubuntu system administrators

2012-02-10 Thread Mehul Ved
On Fri, Feb 10, 2012 at 1:57 PM, Karan Ahuja  wrote:
> Apache2 process increasing rapidly and eating out complete memory and ends
> up with timeout.

You might want to check apache for performance tuning.
For an easy guide you could check
http://kb.mediatemple.net/questions/246/%28dv%29+HOWTO%3A+Basic+Apache+performance+tuning+%28httpd%29#dv_35
For complete information, see
http://httpd.apache.org/docs/2.0/misc/perf-tuning.html
-- 
With Regards,
Mehul Ved
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] [tech help] calling out for help from ubuntu system administrators

2012-02-10 Thread Mehul Ved
On Fri, Feb 10, 2012 at 1:26 PM, Karan Ahuja  wrote:
> Hello group

Hi Karan,

> we have launched a big application and are suddenly on the edges of our
> Linux system administration knowledge .
>
> apache is taking up all memory before going down .

This much information isn't enough for anyone to start debugging the
problem. Have you looked at the apache and system logs to see what's
happening, to start with?

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


Re: [Ilugc] [ILUG-BOM] Did Microsoft Just Kill Ubuntu Tablets?

2012-01-17 Thread Mehul Ved
On Mon, Jan 16, 2012 at 8:34 PM, Swapnil Bhartiya
 wrote:
> http://www.muktware.com/news/3217/did-microsoft-just-kill-ubuntu-tablets
>
> There is no doubt that Canonical is looking at the ARM based hardware for
> its tablets. But Microsoft seemed to have nipped Ubuntu's Tablet in the bud.
> The company tweaked its Windows Hardware Certification Requirements to
> effectively ban most alternative operating systems on ARM-based devices that
> ship with Windows 8.

>From the above statement, as I read it, only hardware that comes
pre-installed with Windows will have this problem. If so, why would
one want to buy a tablet pre-installed with Windows if one intends to
run Ubuntu on it, in the first place.

And since Android, iOS and Linux still form majority of ARM based
devices, I wonder if any manufacturer would be brave(stupid?) enough
to lock these OS's out.

If that is so, let manufacturers sell devices with pre-installed
Windows, which have this feature. You would anyway not want to pay
MS-tax or do you like to?

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


  1   2   3   4   5   >