Search:

Type: Posts; User: ksprasad; Keyword(s):

Page 1 of 6 1 2 3 4

Search: Search took 0.05 seconds.

  1. [ubuntu] Re: microsd card files written under ubuntu aren't showed in windows

    Ok. Just to make sure the files are not seen because they are hidden, can you enable the 'show hidden files' in windows and see if its shown?
    That option will be under view in folder options.
    ...
  2. Replies
    3
    Views
    2,294

    [ubuntu] Re: How to read output data from Webcam

    Hi,

    Im not exactly sure what you are trying to do. But a simple program like below can be written to read the data from webcam. (not sure if it works as i didn't test it).


    #include <stdio.h>...
  3. [ubuntu] Re: microsd card files written under ubuntu aren't showed in windows

    Hi,

    In windows, can you open the SDCard location in command prompt and see if it can see those files? Even i dont think, it is anything to do with the file format.


    Regards,
    Ksprasad
  4. Replies
    3
    Views
    607

    [ubuntu] Re: darkening of window if programm hangs

    Hi,

    Sometimes back I had seen some settings in CompizConfig Settings Manager. Something like "Dim Unresponsive Windows" under "Fading Windows". Not sure if its still there.

    Regards,
    ksprasad
  5. Replies
    5
    Views
    745

    [ubuntu] Re: cannot boot ubuntu along with windows8

    Hi,

    The issue might be due to UEFI. Try the solution given in this link:

    http://askubuntu.com/questions/225028/dual-boot-windows-8-with-ubuntu-12-10/225031#225031

    Regards,
    Ksprasad
  6. Re: C/C++ -- is free() function required in this example?

    Hi,

    free function takes void * as parameter. But here we are passing const char *. So, you can typecast the passed parameter to to char * or void *

    free((void *)word);

    Regards,
    ksprasad
  7. Re: C/C++ -- is free() function required in this example?

    Hi,

    The above code does have memory leak as the allocated memory is not free'd anywhere.
    Usually we de-allocate the memory when it is no longer required. In the above example, you can add free...
  8. [SOLVED] Re: How to check the battery discharge rate in Ubuntu 12.10

    Hi,

    Yes, powertop works well. Looks like a good tool. Thanks a lot :)

    Regards,
    ksprasad
  9. [SOLVED] How to check the battery discharge rate in Ubuntu 12.10

    Hi,

    I have a Dell xps with Ubuntu 12.10 on which I have installed bumblebee 3.0.
    I want to check the discharge rate of my battery.

    In Ubuntu 12.04, I was able to check it using below command....
  10. [ubuntu] Re: Wireless problem with Atheros Ar8162 ubuntu 12.04

    Anybody having any clue, please..
  11. [ubuntu] Wireless problem with Atheros Ar8162 ubuntu 12.04

    Hi All,

    We are finding it difficult to make the wireless work in my friend's laptop. It is a Dell Inspiron. Running on Ubuntu 12.04 with 3.2.0-30-generic kernel.

    lspci | grep -i ethernet

    ...
  12. Replies
    431
    Views
    28,074

    Re: The Battle of the Browsers: The Race to 500

    Firefox 96
  13. Replies
    33
    Views
    1,713

    Poll: Re: Do you still hibernate?

    Once I had hibernated Ubuntu and one nautilus window was still open. Later in windows, i added few files into the same directory. When I went back to Ubuntu, i couldn't see those files and actually...
  14. Re: Can you recommand a good tool to read source code?

    Hi,

    If you use vim, then i recommand exuberant-ctags.
    This is helpful to navigate between function calls.

    Regards,
    ksprasad
  15. Re: c++ program refuses to compile with g++ on Ubuntu 12.04

    If you had used gcc to compile, then it is wrong. You have to use g++ to compile cpp files

    Regards,
    ksprasad
  16. [SOLVED] Re: How to move minimize, maximize and close to the right?

    Hi,

    I didn't try this, but quick googling gave this:

    http://alexsleat.co.uk/2012/04/11/ubuntu-12-04-moving-the-windows-buttons-back-to-the-right/

    Regards,
    ksprasad
  17. Replies
    2
    Views
    319

    [ubuntu] Re: password probs

    Hi,

    You mean, you are not able to give your current password during authentication? Also why any authentication is needed to start the browser?

    Regards,
    ksprasad
  18. [xubuntu] Re: Hi I'm dual booting Window 7 and Xubuntu 12.04 want to add more space to my linux

    Hi,

    Yes you can resize your XUBUNTU partition. boot with a gparted live cd and do the resize.
    But i strongly suggest you first backup all your data since it is a risky process.

    Regards,...
  19. Replies
    15
    Views
    935

    [xubuntu] Re: script problem

    Here you have given /media/E0FD-1813 which is the mount point. But udisks works with the devices present in the /dev directory. Not the mount points.

    Use sudo fdisk -l to find out the device...
  20. Replies
    15
    Views
    935

    [xubuntu] Re: script problem

    If you dont want to use sudo in script, use udisks utility:

    udisks --unmount /dev/<diskname>

    Regards,
    ksprasad
  21. Replies
    1
    Views
    620

    [SOLVED] Re: command line text editing

    I think this will do..


    echo `your command`0/24

    Regards,
    ksprasad
  22. Replies
    31
    Views
    3,165

    Re: Leaving Ubuntu.

    lol +1
  23. Replies
    1
    Views
    430

    [ubuntu] Re: putting pdf files together

    Hi,

    Use pdftk.

    sudo apt-get install pdftk

    pdftk 1.pdf 2.pdf output 3.pdf


    Regards,
  24. Replies
    10
    Views
    444

    [ubuntu] Re: Disk Partition

    Hi Abhijin,

    In ubuntu even in case of system crash, u can very well access the disk partitions using live cd/usb. I usually use different partiton to store my data and give around 40gb for my...
  25. Replies
    10
    Views
    444

    [ubuntu] Re: Disk Partition

    Hi,

    If you meant a partition which can be accessed from both windows and linux, u need to create it in NTFS format. Before installing ubuntu itself u can create it using gparted. But ubuntu...
Results 1 to 25 of 137
Page 1 of 6 1 2 3 4