Re: Error while sending data to kafka producer

2015-12-09 Thread Ritesh Sinha
signing-the-certificate < > http://docs.confluent.io/2.0.0/kafka/ssl.html#signing-the-certificate>) > entering the password test1234 whenever prompted then use this JKS files in > your client and broker config. If executed correctly this example should > definitely work. > > Be

Re: Error while sending data to kafka producer

2015-12-09 Thread Ritesh Sinha
This is my server config. On Thu, Dec 10, 2015 at 12:19 AM, Ritesh Sinha < kumarriteshranjansi...@gmail.com> wrote: > # Licensed to the Apache Software Foundation (ASF) under one or more > # contributor license agreements. See the NOTICE file distributed with > # this work

Re: Error while sending data to kafka producer

2015-12-09 Thread Ritesh Sinha
# Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "Licens

Error while sending data to kafka producer

2015-12-09 Thread Ritesh Sinha
Hi, I am trying to send message to kafka producer using encryption and authentication.After creating the key and everything successfully.While passing the value through console i am getting this error: ERROR Error when sending message to topic test with key: null, value: 2 bytes with error: Faile

Re: Doubt regarding Encryption and Authentication using SSL

2015-12-09 Thread Ritesh Sinha
Solved it . Thanks On Wed, Dec 9, 2015 at 10:39 PM, Ritesh Sinha < kumarriteshranjansi...@gmail.com> wrote: > Thanks Ben for your prompt reply. > > But when I am trying to start the producer it throws this error. > > org.apache.kafka.common.KafkaException: Failed to construc

Re: Doubt regarding Encryption and Authentication using SSL

2015-12-09 Thread Ritesh Sinha
ass these on the command line too with the > producer/consumer-property option too. > > There’s some documentation here < > http://docs.confluent.io/2.0.0/kafka/ssl.html#configuring-kafka-clients> > if you’d like more info. > > All the best > > Ben > > > >

Doubt regarding Encryption and Authentication using SSL

2015-12-09 Thread Ritesh Sinha
Hi, I am following the kafka documentation to create encryption and authentication while sending message to kafka by ssl I got stuck at these commands kafka-console-producer.sh --broker-list localhost:9093 --topic test --producer.config *client-ssl.properties* kafka-console-consumer.sh --boot

Re: conf Folder is not getting created while creating a collection on solr cloud

2015-09-08 Thread Ritesh Sinha
e conf file in > > solr-5.3.0/server/solr/test_collection_shard1_replica1/? > > This is where Solr stores the indexes (in data\index) and normally I > don't > > touch anything in this folder. > > > > Regards, > > Edwin > > > > > > On 8 Se

conf Folder is not getting created while creating a collection on solr cloud

2015-09-08 Thread Ritesh Sinha
I am trying to create a collection on Solr cloud. I have created a 3 node zookeeper cluster on the same machine. using this command to start solr on three ports : bin/solr start cloud -z localhost:2181,localhost:2182,localhost:2183 -p 8983 bin/solr start cloud -z localhost:2181,localhost:2182,l

Re: Stemming words Using Solr

2015-09-04 Thread Ritesh Sinha
> As to using JSON, I'm not sure of the structure of the JSON you are > getting back, but you might find adding json.nl=map, which changes the > way it returns named lists, which may be easier to parse. > > Upayavira > > On Fri, Sep 4, 2015, at 10:14 AM, Ritesh

Re: Stemming words Using Solr

2015-09-04 Thread Ritesh Sinha
lrJ: FieldAnalysisRequest > > That uses the same HTTP call in the backend, but formats the result in a > Java friendly manner. > > Upayavira > > On Fri, Sep 4, 2015, at 05:52 AM, Ritesh Sinha wrote: > > Yeah, I got. Thanks. > > > > It returns a json which have the stem

Re: Stemming words Using Solr

2015-09-03 Thread Ritesh Sinha
; course > > returns an HTML web page. Instead, send the analysis URL fragment > > directly > > to the analysis API (not UI) for the Solr core, without the #. > > > > -- Jack Krupansky > > > > On Thu, Sep 3, 2015 at 8:45 AM, Ritesh Sinha < > > kumarrites

Re: Tasks are not starting

2015-09-03 Thread Ritesh Sinha
If your workers are not starting try executing the command which supervisor executes to start the workers.You can get those commands from the supervisor logs. Execute the command to manually start the workers and see if you are getting any error. On Thu, Sep 3, 2015 at 6:30 PM, Abhishek Agarwal w

Re: Stemming words Using Solr

2015-09-03 Thread Ritesh Sinha
0' }; On Thu, Sep 3, 2015 at 4:12 PM, Upayavira wrote: > > > On Thu, Sep 3, 2015, at 11:19 AM, Ritesh Sinha wrote: > > I am learning solr and want to use solr for stemming words.I'll be > > passing > > the word to the solr and it should send the stemmed

Stemming words Using Solr

2015-09-03 Thread Ritesh Sinha
I am learning solr and want to use solr for stemming words.I'll be passing the word to the solr and it should send the stemmed word back.I know how to configure solr core for different stemming patterns and also i am able to view their stemmed words in the analyzer (solr admin ui) but i am not sure

Error while running storm cluster on multinode

2015-08-19 Thread Ritesh Sinha
I am trying to run storm topology on a multi-node cluster. I have to machines,I am configured nimbus and 1 supervisor one Ist machine and 1 supervisor on the second machine.I am running zookeeper on the second machine.I am able to set it up and in storm ui both the supervisor entries are present bu

Desining model for Storm Topology

2015-08-07 Thread Ritesh Sinha
I am using Apache Kafka & Apache Storm integration. I need to design a model.Here are the specification of my topology : I have configured topic in Kafka. Let say *customer1* . Now, the storm bolts will read the data from the *customer1* kafka-spout. It processes the data and writes into mongo and

Re: Adding Kafka Topics dynamically to storm as it is created while the topology is running

2015-08-07 Thread Ritesh Sinha
belongs to which user to appropriately store the record. > > Why wouldn't you have only one topic and identify the user as part of the > message? > > > On Thu, Aug 6, 2015 at 10:24 PM, Ritesh Sinha < > kumarriteshranjansi...@gmail.com> wrote: > >> I have a topolo

Re: Adding Kafka Topics dynamically to storm as it is created while the topology is running

2015-08-06 Thread Ritesh Sinha
nce kafka takes the topic in the configuration, it means you will > have to add a new spout with different config. Either you resubmit the > topology (along with jar) or you can just have different topology for > different consumer. > > On Fri, Aug 7, 2015 at 11:52 AM, Ritesh Sinha <

Re: Adding Kafka Topics dynamically to storm as it is created while the topology is running

2015-08-06 Thread Ritesh Sinha
Do you mean creating a new jar for different customers and deploying it on the cluster? On Fri, Aug 7, 2015 at 11:45 AM, Abhishek Agarwal wrote: > You will have to re-deploy your topology, with a new kafka spout for > another topic. > > On Fri, Aug 7, 2015 at 10:54 AM,

Adding Kafka Topics dynamically to storm as it is created while the topology is running

2015-08-06 Thread Ritesh Sinha
I have a topology which runs in the following way : It reads data from the Kafka topic and pass it to storm.Storm processes the data and stores it into two different DBs (mongo & cassandra). Here, the Kafka topic is the name of the customer also the database name in mongodb and Cassandra is same a

Adding Kafka Topics dynamically to storm as it is created while the topology is running

2015-08-06 Thread Ritesh Sinha
I have a topology which runs in the following way : It reads data from the Kafka topic and pass it to storm.Storm processes the data and stores it into two different DBs(mongo & cassandra). Here, the kafka topic is the name of the customer also the database name in mongodb and cassandra is same as

Re: Updating Changes after the cluster is submitted

2015-08-06 Thread Ritesh Sinha
the > volume of blacklist updates is significantly less than the volume of > messages that you’re processing. > > I hope that helps. Good luck! > > > Joe > — > Joseph Beard > jos...@josephbeard.net > > > On Aug 6, 2015, at 4:41 AM, Ritesh Sinha < > kumarr

Updating Changes after the cluster is submitted

2015-08-06 Thread Ritesh Sinha
I need to write a bolt which processes the messages on the basis of IP. Basically , i have a list of IP's stored in mongoDB.All the messages i get will contain IP's, So , i need to check if that particular IP is present in the list or not if it is present then i need to ignore the message else proc

Updating Changes after the cluster is submitted

2015-08-06 Thread Ritesh Sinha
I need to write a bolt which processes the messages on the basis of IP. Basically , i have a list of IP's stored in mongoDB.All the messages i get will contain IP's, So , i need to check if that particular IP is present in the list or not if it is present then i need to ignore the message else proc

[Kernel-packages] [Bug 1265191] Re: Dell Latitude E6430 Suspend/Resume failure

2014-01-05 Thread Ritesh Sinha
Will I need to install Precise over the current release? That is tricky, since I am using this computer for most tasks. If there is a way to backup and restore my system exactly like it was before, I can try it out over the next weekend. -- You received this bug notification because you are a mem

[Bug 1265191] Re: Dell Latitude E6430 Suspend/Resume failure

2014-01-05 Thread Ritesh Sinha
Will I need to install Precise over the current release? That is tricky, since I am using this computer for most tasks. If there is a way to backup and restore my system exactly like it was before, I can try it out over the next weekend. -- You received this bug notification because you are a mem

[Bug 1265191] Re: Dell Latitude E6430 Suspend/Resume failure

2014-01-05 Thread Ritesh Sinha
Dmesg output ** Attachment added: "dmesg.txt" https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1265191/+attachment/3941312/+files/dmesg.txt -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/126519

[Kernel-packages] [Bug 1265191] Re: Dell Latitude E6430 Suspend/Resume failure

2014-01-05 Thread Ritesh Sinha
Dmesg output ** Attachment added: "dmesg.txt" https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1265191/+attachment/3941312/+files/dmesg.txt -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.ne

[Kernel-packages] [Bug 1265191] Re: Dell Latitude E6430 Suspend/Resume failure

2014-01-05 Thread Ritesh Sinha
wakeup output ** Attachment added: "wakeup" https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1265191/+attachment/3941313/+files/wakeup -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bug

[Bug 1265191] Re: Dell Latitude E6430 Suspend/Resume failure

2014-01-05 Thread Ritesh Sinha
wakeup output ** Attachment added: "wakeup" https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1265191/+attachment/3941313/+files/wakeup -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1265191 Ti

[Bug 1265191] Re: Dell Latitude E6430 Suspend/Resume failure

2014-01-05 Thread Ritesh Sinha
Do you need this from the kernel I am booted in just now (3.11.0-15-generic) or from 3.11.0-12? -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1265191 Title: Dell Latitude E6430 Suspend/Resume failur

[Kernel-packages] [Bug 1265191] Re: Dell Latitude E6430 Suspend/Resume failure

2014-01-05 Thread Ritesh Sinha
Do you need this from the kernel I am booted in just now (3.11.0-15-generic) or from 3.11.0-12? -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1265191 Title: Dell Latitude E6430 Suspend/

[Bug 1265191] Re: Dell Latitude E6430 Suspend/Resume failure

2014-01-05 Thread Ritesh Sinha
Just tested with 3.11.0-12 as per the instructions, the issue is still there and the filesystem becomes readonly after a resume. As noted earlier, this version works fine when booting from a Live USB stick. -- You received this bug notification because you are a member of Ubuntu Bugs, which is s

[Kernel-packages] [Bug 1265191] Re: Dell Latitude E6430 Suspend/Resume failure

2014-01-05 Thread Ritesh Sinha
Just tested with 3.11.0-12 as per the instructions, the issue is still there and the filesystem becomes readonly after a resume. As noted earlier, this version works fine when booting from a Live USB stick. -- You received this bug notification because you are a member of Kernel Packages, which

[Kernel-packages] [Bug 1265191] Re: Dell Latitude E6430 Suspend/Resume failure

2014-01-02 Thread Ritesh Sinha
I have just tested suspend while booting through a live environment, and it works as expected. To test this, I created a file, selected suspend, waited for a few minutes and then hit the power button to resume. The desktop came up and I was able to continue editing the file. The kernel version in

[Bug 1265191] Re: Dell Latitude E6430 Suspend/Resume failure

2014-01-02 Thread Ritesh Sinha
I have just tested suspend while booting through a live environment, and it works as expected. To test this, I created a file, selected suspend, waited for a few minutes and then hit the power button to resume. The desktop came up and I was able to continue editing the file. The kernel version in

[Bug 1265191] Re: Dell Latitude E6430 Suspend/Resume failure

2014-01-01 Thread Ritesh Sinha
Unfortunately this is a corporate laptop and Ubuntu is not supported by our IT team who are based out of the US, and they've shipped me this laptop (I'm in the UK). They have let me install this on the condition that I maintain it myself, and that I do not turn off the encryption, although I'm fair

[Kernel-packages] [Bug 1265191] Re: Dell Latitude E6430 Suspend/Resume failure

2014-01-01 Thread Ritesh Sinha
Unfortunately this is a corporate laptop and Ubuntu is not supported by our IT team who are based out of the US, and they've shipped me this laptop (I'm in the UK). They have let me install this on the condition that I maintain it myself, and that I do not turn off the encryption, although I'm fair

[Kernel-packages] [Bug 1265191] Re: Dell Latitude E6430 Suspend/Resume failure

2014-01-01 Thread Ritesh Sinha
Sorry. Suspend failing on self encrypting drives, not hibernation. -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1265191 Title: Dell Latitude E6430 Suspend/Resume failure Status in “li

[Bug 1265191] Re: Dell Latitude E6430 Suspend/Resume failure

2014-01-01 Thread Ritesh Sinha
Sorry. Suspend failing on self encrypting drives, not hibernation. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1265191 Title: Dell Latitude E6430 Suspend/Resume failure To manage notifications ab

[Kernel-packages] [Bug 1265191] Re: Dell Latitude E6430 Suspend/Resume failure

2014-01-01 Thread Ritesh Sinha
Bug exists with v3.13-rc6. However, I'm beginning to suspect that this may not be a kernel bug but could be related to the self encrypting drive that is on my system. My laptop is configured to use Wave encryption that requires a password to unlock the hard disk drive on hard reboots. I found this

[Bug 1265191] Re: Dell Latitude E6430 Suspend/Resume failure

2014-01-01 Thread Ritesh Sinha
Bug exists with v3.13-rc6. However, I'm beginning to suspect that this may not be a kernel bug but could be related to the self encrypting drive that is on my system. My laptop is configured to use Wave encryption that requires a password to unlock the hard disk drive on hard reboots. I found this

[Kernel-packages] [Bug 1265191] Re: Dell Latitude E6430 Suspend/Resume failure

2014-01-01 Thread Ritesh Sinha
Hello Christopher, Happy new year! I have just tested with the latest ISO image from here: http://cdimage.ubuntu.com/daily-live/current/. I did so by booting the ISO via GRUB2 using the instructions provided here: https://help.ubuntu.com/community/Grub2/ISOBoot#Creating_the_GRUB_2_Menuentry. The

[Bug 1265191] Re: Dell Latitude E6430 Suspend/Resume failure

2014-01-01 Thread Ritesh Sinha
Hello Christopher, Happy new year! I have just tested with the latest ISO image from here: http://cdimage.ubuntu.com/daily-live/current/. I did so by booting the ISO via GRUB2 using the instructions provided here: https://help.ubuntu.com/community/Grub2/ISOBoot#Creating_the_GRUB_2_Menuentry. The

[Kernel-packages] [Bug 1265191] [NEW] Dell Latitude E6430 Suspend/Resume failure

2013-12-31 Thread Ritesh Sinha
Public bug reported: The system does not wake up successfully after a suspend, and it causes a hard crash recoverable only by holding the power switch for a few seconds. This is similar to the issue described in: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1201038 with one change. The p

[Bug 1265191] [NEW] Dell Latitude E6430 Suspend/Resume failure

2013-12-31 Thread Ritesh Sinha
Public bug reported: The system does not wake up successfully after a suspend, and it causes a hard crash recoverable only by holding the power switch for a few seconds. This is similar to the issue described in: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1201038 with one change. The p

[Kernel-packages] [Bug 1201038] Re: [Dell Inc. Latitude E6430] suspend/resume failure

2013-12-31 Thread Ritesh Sinha
Thank you Christopher, I'll go ahead and file a new report. I'm using the stock kernel, have not tried using the mainline (I assume ppa?) kernel yet. -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.n

[Bug 1201038] Re: [Dell Inc. Latitude E6430] suspend/resume failure

2013-12-31 Thread Ritesh Sinha
Thank you Christopher, I'll go ahead and file a new report. I'm using the stock kernel, have not tried using the mainline (I assume ppa?) kernel yet. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/12010

Re: [Desktop-packages] [Bug 1048818] [NEW] Audio is glitchy intermittently

2013-12-24 Thread Ritesh Sinha
opher M. Penalver wrote: > Ritesh Sinha, thank you for reporting this and helping make Ubuntu > better. Could you please provide the missing information following > https://wiki.ubuntu.com/DebuggingSoundProblems#Advanced_troubleshooting > ? > > ** Tags added: latest-bios-f13

Re: [Bug 1048818] [NEW] Audio is glitchy intermittently

2013-12-24 Thread Ritesh Sinha
opher M. Penalver wrote: > Ritesh Sinha, thank you for reporting this and helping make Ubuntu > better. Could you please provide the missing information following > https://wiki.ubuntu.com/DebuggingSoundProblems#Advanced_troubleshooting > ? > > ** Tags added: latest-bios-f13

[Bug 1201038] Re: [Dell Inc. Latitude E6430] suspend/resume failure

2013-12-24 Thread Ritesh Sinha
Hello! I'm still facing this issue, but don't know if I should re-open this bug. Apport has submitted a few bug reports for me, but I don't know how to tie these bug reports to my launchpad account if that makes sense. output of sudo dmidecode -s bios-version returns A13 which is "newer" than A11

[Kernel-packages] [Bug 1201038] Re: [Dell Inc. Latitude E6430] suspend/resume failure

2013-12-24 Thread Ritesh Sinha
Hello! I'm still facing this issue, but don't know if I should re-open this bug. Apport has submitted a few bug reports for me, but I don't know how to tie these bug reports to my launchpad account if that makes sense. output of sudo dmidecode -s bios-version returns A13 which is "newer" than A11

Re: [Bug 444449]

2013-03-14 Thread Ritesh Sinha
Not for me, thanks. --- RS On 14 Mar 2013, at 09:11, Bugzilla-tf <444...@bugs.launchpad.net> wrote: > Is this still an issue ? > > -- > You received this bug notification because you are subscribed to the bug > report. > https://bugs.launchpad.net/bugs/49 > > Title: > Firefox slow google r

[Bug 1048818] Re: Audio is glitchy intermittently

2012-09-10 Thread Ritesh Sinha
-- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1048818 Title: Audio is glitchy intermittently To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/

[Bug 1048818] [NEW] Audio is glitchy intermittently

2012-09-10 Thread Ritesh Sinha
Public bug reported: When playing music using either spotify or rhythmbox, the audio is intermittently glitchy. The music skips a beat or two and then resumes playing. It is difficult to replicate this bug but it appears to occur when I sometimes try to move terminal windows around or start a new

Re: [ubuntu-in] Problem with NFS Installation

2010-09-17 Thread Ritesh Sinha
On Fri, Sep 17, 2010 at 9:36 PM, Vaibhao Tatte wrote: > Hello, > > For my project need, I need to install NFS by compiling Kernel. > During configuration I have checked the corresponding NFS V3 options. > > After booting into the compiled Kernel, I am not able to run the NFS. > Basically  daemon r

Re: [ubuntu-in] MP3 Vs Ogg

2010-09-17 Thread Ritesh Sinha
On Sat, Sep 18, 2010 at 10:34 AM, Narendra Diwate wrote: > Just a thought. > I have about 35GB of Music, mostly in mp3 @128kbps or VBR. If I were to > covert this into ogg at the same rate/resolution, would it make it any > difference to the size/space. I doubt it would make a huge difference (pe

[ubuntu-in] Diaspora released

2010-09-17 Thread Ritesh Sinha
For those of you who haven't heard, the first developer preview of Diaspora has been released. It's social networking software that allows you to be in control of your own data (cf: Facebook/Orkut). The concept is of "seeds" or individual deployments of this software that can talk to each other, so

Re: [ubuntu-in] Adobe Finally Releases A New Adobe Flash Player 64bit - Yes, For Linux Too!

2010-09-16 Thread Ritesh Sinha
On Fri, Sep 17, 2010 at 8:27 AM, Narendra Diwate wrote: > > > On Thu, Sep 16, 2010 at 11:42 PM, Ramnarayan.K > wrote: >> >> http://www.webupd8.org/2010/09/adobe-finally-releases-new-adobe-flash.html >> >> >> Flashing a Grin : > > Me too. IS it open source? Nope. Like its 32 bit cousin, it's a bi

Re: [ubuntu-in] Rolling distributions and rolling away from Ubuntu

2010-09-10 Thread Ritesh Sinha
On Sat, Sep 11, 2010 at 11:58 AM, Narendra Diwate wrote: > On Sat, Sep 11, 2010 at 11:57 AM, Narendra Diwate > wrote: >> >> Hi >> >> AntiX installed and typing this from it. Good OS. Very similar to Ubuntu, >> but without a DE. Has IceWM and Fluxbox, so is quite light. About 1.7GB >> installed. D

Re: [ubuntu-in] Urgent - What is the Correct Ubuntu for an Atom Desktop

2010-09-10 Thread Ritesh Sinha
On Fri, Sep 10, 2010 at 2:30 PM, Ramnarayan.K wrote: > On Fri, Sep 10, 2010 at 1:57 PM, Pratul Kalia wrote: >> On 10/09/10 1:36 PM, Ramnarayan.K wrote: >>> Hi >>> >>> Can anyone advice on what is the correct Ubuntu version that should / >>> can be installed on an Atom Processor Desktop >>> >> >>

Re: [ubuntu-in] Scripts

2010-09-06 Thread Ritesh Sinha
On Mon, Sep 6, 2010 at 1:50 PM, Narendra Diwate wrote: > Hi > > I need to generate a text file containing the file names with or > without full path for a bunch of files in a folder or partition. > Something like a playlist but not necessarily for music files. I think > that this is easy from the

Re: [ubuntu-in] Stitching photos

2010-09-06 Thread Ritesh Sinha
On Mon, Sep 6, 2010 at 1:57 PM, Narendra Diwate wrote: > I have a bunch of photos that I had taken to mimic what a panorama > mode would do in a camera. These have a part that overlaps. Is there a > easy way to stitch these photos on the overlapping parts to create a > panorama like image. I am no

Re: [ubuntu-in] Strange problem with too many jpg files in one folder

2010-08-25 Thread Ritesh Sinha
On Wed, Aug 25, 2010 at 08:47:47PM +0530, Abhishek Amberkar [अभिषेक] wrote: > On Wed, Aug 25, 2010 at 7:53 PM, Ramnarayan.K wrote: > > further tweaking gets me here > > # find /home/himal/ size +1000 -name image3*.jpg -exec mv '{}' > > /home/himal/Pictures/recovered/bigger800kb/ \; > > find: paths

Re: [ubuntu-in] Strange problem with too many jpg files in one folder

2010-08-25 Thread Ritesh Sinha
On Wed, Aug 25, 2010 at 07:47:12PM +0530, Ramnarayan.K wrote: > Looking at help i modified the script - corrected my errors and used > this (and the result it below) > > # find /home/himal/ -name image3*.jpg -a size +2 -mtime -2 -exec > mv '{}' /home/himal/Pictures/recovered/bigger800kb/ \; >

Re: [ubuntu-in] Strange problem with too many jpg files in one folder

2010-08-25 Thread Ritesh Sinha
On Wed, Aug 25, 2010 at 1:10 PM, Ramnarayan.K wrote: > Hi > > I accidently deleted a folder of images( using shift+del = direct > delete not to trash) > > To recover them i used recoverjpg > > The problem is that that recoverjpg recovered many many images. The > drive it was reading from was 200 g

[Bug 573635] Re: Can not build qc-usb kernel module on Lucid

2010-08-23 Thread Ritesh Sinha
I'm unable to build the qc-usb module as well: Linux ritesh-laptop 2.6.32-24-generic #41-Ubuntu SMP Thu Aug 19 01:12:52 UTC 2010 i686 GNU/Linux # m-a a-i qc-usb If there is any other information required, I'd be happy to provide it. -- Can not build qc-usb kernel module on Lucid https://bu

Re: [fedora-india] Google Voice and Video Chat Isnt for Fedora

2010-08-23 Thread Ritesh Sinha
On Mon, Aug 23, 2010 at 11:24 AM, Arun Prakash wrote: > > Hello , > > I already tried installing deb to rpm , but i found some dependency errors , > > [r...@localhost Desktop]# rpm -ivh deb-1.10.27-3.i586.rpm > error: Failed dependencies: >     perl = 5.8.6 is needed by deb-1.10.27-3.i586 >     up

Re: [fedora-india] Google Voice and Video Chat Isnt for Fedora

2010-08-22 Thread Ritesh Sinha
On Mon, Aug 23, 2010 at 10:23 AM, Arun Prakash wrote: > > Hi all, > > I recently found that Google has released its voice and video  chat plugin > for Linux users . > > When i tried to install it for my System running Fedora 13 from the site > http://www.google.com/chat/video , > > I found the p

Re: [fedora-india] Using two interfaces simultaneously?

2010-08-21 Thread Ritesh Sinha
On Sat, Aug 21, 2010 at 2:01 PM, Ankur Sinha wrote: > hi, > > Is it possible for me to use two separate internet connections, one via > eth0 and the other via wlan0 at the same time? > > I have been allotted a wireless connection from University, however this > one presents some trouble in certain

Re: [ubuntu-in] SafeBoot and Ubuntu?

2010-08-06 Thread Ritesh Sinha
On Fri, Aug 6, 2010 at 5:09 PM, Venkatesh Nandakumar wrote: >  Hi, > > I have SafeBoot on my laptop, with C: fully encrypted. > Looking up shows me that it is impossible to dual-boot with Ubuntu in > this scenario. > Any ideas? > It looks like there might be a convoluted way to accomplish dual boo

Re: [ubuntu-in] mount issue

2010-07-27 Thread Ritesh Sinha
On Tue, Jul 27, 2010 at 9:17 PM, Sanjay Bhangar wrote: > On Tue, Jul 27, 2010 at 9:02 PM, Rtr.Atreya Roy Chowdhury > wrote: >> >> >> >> On Tue, Jul 27, 2010 at 3:10 AM, Rtr.Atreya Roy Chowdhury >> wrote: >>> >>> every time i try to mount one of my drives the follow crops up. >>> Error mounting:

Re: [ubuntu-in] Help on setting up home network

2010-07-08 Thread Ritesh Sinha
On Thu, Jul 8, 2010 at 12:19 PM, Mohamed Khaleel wrote: > Hi, > I have 2 laptops and 1 PC at home running Ubuntu. All these are connected to > a wireless router for the internet usage. > When I try to copy a file from a shared folder of other laptop, the whole of > data passes through the router.

Re: [ubuntu-in] ubuntu9.04 authentication failed -to go to root.

2010-06-30 Thread Ritesh Sinha
On Wed, Jun 30, 2010 at 3:58 PM, निशांत / Nishant wrote: > On Wed, Jun 30, 2010 at 3:52 PM, Sriranga(77yrsold) > wrote: >> I am facing problem of authentication of password. extract of terminal is >> reproduced below: >> >> srira...@ubuntu:~$ cd tesseract-ocr-read-only-408/ >> srira...@ubuntu:~/t

Re: [fedora-india] Announcing loki-0.2.2 !!!

2010-06-29 Thread Ritesh Sinha
On Wed, Jun 30, 2010 at 12:05 AM, Ankur Sinha wrote: > hello, > > I managed the time to get rid of some quirks and add some more features > to loki (yes, it stays loki until I think up another name). > > Here's the announcement on my blog[1]. It features a screen shot too. > This[2] is the link to

Re: [ubuntu-in] installing firefox 3.6.6 on ubuntu 9.04

2010-06-29 Thread Ritesh Sinha
On Tue, Jun 29, 2010 at 8:32 PM, Ritesh Sinha wrote: > On Tue, Jun 29, 2010 at 7:45 PM, Linux Lingam wrote: >> am thinking of installing firefox 3.6.6. under ubuntu 9.04. >> anyone done that? is there a howto? >> is there a better way to do it so the system auto-chec

Re: [ubuntu-in] installing firefox 3.6.6 on ubuntu 9.04

2010-06-29 Thread Ritesh Sinha
On Tue, Jun 29, 2010 at 7:45 PM, Linux Lingam wrote: > am thinking of installing firefox 3.6.6. under ubuntu 9.04. > anyone done that? is there a howto? > is there a better way to do it so the system auto-checks for updates > and suggests i install them later? > more importantly, will firefox 3.6.

Re: [ubuntu-in] Rediff bol mesenger in ubuntu

2010-06-28 Thread Ritesh Sinha
2010/6/29 Abhishek Amberkar [अभिषेक] : > > > On Mon, Jun 28, 2010 at 3:29 PM, Ritesh Sinha > wrote: >> >> On Mon, Jun 28, 2010 at 3:08 PM, Narendra Diwate >> wrote: >> > On Mon, Jun 28, 2010 at 15:02, Ritesh Sinha >> > wrote: >> >>

Re: [ubuntu-in] Rediff bol mesenger in ubuntu

2010-06-28 Thread Ritesh Sinha
On Mon, Jun 28, 2010 at 3:08 PM, Narendra Diwate wrote: > On Mon, Jun 28, 2010 at 15:02, Ritesh Sinha > wrote: >> >> How about this? >> http://sourceforge.net/projects/rediffbol-prpl/ >> > > > Aah, Ritesh  beat me to it. Hehe =) I was wondering the sa

Re: [ubuntu-in] Rediff bol mesenger in ubuntu

2010-06-28 Thread Ritesh Sinha
On Mon, Jun 28, 2010 at 2:45 PM, Shubhrajyoti Mohapatra wrote: > @Anirudh I tried to install pidgin and installed it.But I did not find any > option for rediff chat there. > Apu > Use linux live free > How about this? http://sourceforge.net/projects/rediffbol-prpl/ Not sure if it works with the l

Re: [ubuntu-in] File Permissions on multi boot

2010-06-27 Thread Ritesh Sinha
On Sat, Jun 26, 2010 at 12:10 PM, Narendra Diwate wrote: > I have a Lucid system and recently installed PClinuxOS along side Ubuntu. > Both OS's have their /home on their own respective partitions and there is > no overlap. They basically dont contain any data other the config files. So > far so g

Re: [ubuntu-in] alternative for adobe presenter

2010-06-25 Thread Ritesh Sinha
On Fri, Jun 25, 2010 at 2:36 PM, Alok Singh Mahor wrote: > please suggest me any alternative for adobe presenter. I don't think there is one. There are applications which can convert a PPT to a movie, but unlikely that anything provides the features of Presenter. You could use Camtasia Studio wh

Re: [ubuntu-in] Sify Broadband Internet

2010-06-22 Thread Ritesh Sinha
On Tue, Jun 22, 2010 at 6:26 PM, Narendra Diwate wrote: > > > On Tue, Jun 22, 2010 at 16:24, Ritesh Sinha > wrote: >> >> >After symlinking, did you try running ldconfig? Sometimes works. >> > is it idconfig or ifconfig? ldconfig. It rebuilds the

Re: [ubuntu-in] Sify Broadband Internet

2010-06-22 Thread Ritesh Sinha
On Tue, Jun 22, 2010 at 4:13 PM, Narendra Diwate wrote: > Hi > > I am a user of Sify Broadband and am facing a problem for the past few days. > So this issue is for those of you that have experience with Sify. > > I was accessing Sify thru a web login, i.e thru browser instead of a Sify > client p

Re: [ubuntu-in] The Ubuntu Hanging on Desktop

2010-06-16 Thread Ritesh Sinha
On Wed, Jun 16, 2010 at 11:36 PM, Mehdi wrote: > Hi, Friends > > Actually i try to install the Linux Version 9.10 and also 10.4 LTS on the > one system in office, The install done without any problem but after > sometimes when we are working on linux in any software and when we are using > interne

Re: [ubuntu-in] Ubuntu 10.10 Maverick Meerkat Won't Run On Processors Below i686

2010-06-12 Thread Ritesh Sinha
On Sat, Jun 12, 2010 at 8:44 AM, sivakumar bharadhwaj wrote: > Thanks for the topic. > > Based on reading all these, yesterday I downloaded Debian Lenny CD (180 MB) > (netinst) AMD64 ISO.  I have Intel Core2 Duo (i686), 2GB, 250GB HD, Lenovo > Laptop. > > I tried this on the Virtual Box.  It start

Re: [ubuntu-in] Ubuntu 10.10 Maverick Meerkat Won't Run On Processors Below i686

2010-06-11 Thread Ritesh Sinha
On Fri, Jun 11, 2010 at 3:07 PM, Nandan Vaidya wrote: >> >> Debian is a good choice. Also you can try Fedora. >> > > Just a heads up, Fedora is also moving to i686 builds for 32-bit. > According to [1] it was planned for F12 but has now been moved to F14 > > [1] http://fedoraproject.org/wiki/Featu

Re: [ubuntu-in] Unique Firefox Problem

2010-06-10 Thread Ritesh Sinha
2010/6/10 Mallikarjun : >>> :( It din't help, I tried Norton DNS, Google DNS... and the problem >>> seems to be the same >> Have you tried leaving ping on for a minute or two? Look for packet >> drops. Sometime this could be due to a faulty NIC or network cable. > > I am getting some really valuabl

Re: [ubuntu-in] Unique Firefox Problem

2010-06-10 Thread Ritesh Sinha
2010/6/10 Mallikarjun : > On Thu, Jun 10, 2010 at 11:09 AM, VK wrote: >>> Date: Thu, 10 Jun 2010 06:50:25 +0530 >>> From: Mallikarjun(?)       >>> Subject: [ubuntu-in] Unique Firefox Problem >>> To: Ubuntu India Local Community >>> Dear Friends, >>>    I think I have unique problem wit

Re: [ubuntu-in] Ubuntu 10.10 Maverick Meerkat Won't Run On Processors Below i686

2010-06-09 Thread Ritesh Sinha
On Thu, Jun 10, 2010 at 10:40 AM, Ramnarayan.K wrote: > On Thu, Jun 10, 2010 at 9:26 AM, Ritesh Sinha > wrote: >>> >> I don't think this is a big deal (well apart from the Geode issue >> which is quite problematic and should be patched). Most desktop >&

Re: [ubuntu-in] Unique Firefox Problem

2010-06-09 Thread Ritesh Sinha
>> open Edit>Preference>Advanced>Encryption>Validation >> Unmark the first line showing *Use the online certificate..* > > > If I uncheck, how will i validate the certificate??? Fake certificates > are already place... > > Now everything seems working, but as I said, it is random... Sometimes

Re: [ubuntu-in] Ubuntu 10.10 Maverick Meerkat Won't Run On Processors Below i686

2010-06-09 Thread Ritesh Sinha
On Wed, Jun 9, 2010 at 11:51 PM, K Ramnarayan wrote: > See article below, > > Start Article > > Ubuntu 10.10 Maverick Meerkat Won't Run On Processors Below i686 > http://www.webupd8.org/2010/06/ubuntu-1010-maverick-meerkat-wont-run.html > If you're planning on using Ubuntu 10.10 Maverick Meerkat o

Re: [fedora-india] Fedora 13 Live USB creation problem

2010-06-02 Thread Ritesh Sinha
a new partition table using fdisk or GParted. (You can easily google > on how to do this) Doing this, but how would one have a persistent overlay in this case? > > - Hiemanshu > > On 2 June 2010 21:05, Ritesh Sinha wrote: >> >> Long time stalker, first time thre

[fedora-india] Fedora 13 Live USB creation problem

2010-06-02 Thread Ritesh Sinha
Long time stalker, first time thread creator :). I consider myself fairly proficient with Fedora but this simple issue has me seriously stumped and embarrassed. I've been trying to get the latest Fedora to run from an USB stick. This is what I've tried so far 1. Fedora Live USB creator on Windows (

Re: [ubuntu-in] External USB hard disk not recognised after a power failure during operation

2010-05-31 Thread Ritesh Sinha
On Mon, May 31, 2010 at 10:37 PM, Alok Singh Mahor wrote: > > > I am using Ubuntu 10.04 and win XP. > > While I was playing some songs from my HD on windows  suddent power > got disconnected from my HD. When I plug it again it was not > recognised(on windows). Actually windows even doesn't boot wh

Re: [fedora-india] John The Ripper - installation problem

2010-05-31 Thread Ritesh Sinha
On Mon, May 31, 2010 at 1:36 PM, Hirak Sarkar wrote: > > > On Mon, May 31, 2010 at 1:20 PM, Ritesh Sinha > wrote: >> >> On Mon, May 31, 2010 at 12:33 PM, Hirak Sarkar >> wrote: >> > >> > >> > On Mon, May 31, 2010 at 12:01 PM, dash pradi

Re: [fedora-india] John The Ripper - installation problem

2010-05-31 Thread Ritesh Sinha
; http://www.openwall.com/john/doc/ > > Thanks for your quick reply, but again showing the same message :-( don't > know what happens ,anyways I keep trying , > again thanks for your reply, the web page is very helpful. Hello! I would request you to please use plaintext email. I have d

Re: [ubuntu-in] Deleting contents of /usr directory - Implications

2010-05-25 Thread Ritesh Sinha
On Tue, May 25, 2010 at 3:50 PM, Narendra Diwate wrote: > To all: This is just an academic exercise and I am not running out of space > on my HD. > So advice on the lines of "unistall apps, clear apt cache, computer janitor" > are already known to me. > Just keep the focus on "What will happen if

Re: [ubuntu-in] All work and no play makes Linux a dull way :-)

2010-05-24 Thread Ritesh Sinha
On Mon, May 24, 2010 at 2:02 PM, K Ramnarayan wrote: > > Hi > > Recently some of us were reading a book on Digital Landscape Photography. One > of the most interesting innovations was the use of HDR imaging. The Book of > course talked only about some proprietory software (it is also available as

  1   2   3   >