Search:

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

Page 1 of 10 1 2 3 4

Search: Search took 0.15 seconds.

  1. Replies
    2
    Views
    425

    [ubuntu] Re: how do you mount a DVD?

    uhh mounting a dvd should have nothing to do with the bios unless you are trying to boot off of a dvd

    to mount a dvd, generally 'sudo mount -o loop /dev/sr0 /media/cdrom'

    the dvd contents then...
  2. [ubuntu] Re: how to navigate from windows to linux

    you're probably thinking of the wubi installer

    if you just want to experiment, installing virtualbox might be a good idea
  3. Replies
    9
    Views
    7,731

    [SOLVED] Re: Alternatives to GDM?

    i know thread is solved, but qingy is great
    its light as hell
    can use text mode or graphical
    saves sessions
    has the advantage of being easier to load different sessions over startx
    easy to...
  4. Replies
    2
    Views
    250

    [other] Re: dual boot

    its been a while since i used grub, but from the live cd, mount your linux / partition to /mnt then chroot into it with:

    sudo chroot /mnt/ /bin/bash

    then issue:

    grub-install /dev/sda

    else...
  5. Replies
    3
    Views
    541

    [ubuntu] Re: BASH script question

    echo ". ~/.bash_aliases" >> ~/.bashrc && echo 'alias helloworld="sh /path/to/hello_world.sh"' >> ~/.bash_aliases && . ~/bash_aliases
  6. [ubuntu] Re: Is there a way to "Overclock" my video/graphics card on Ubuntu?

    overclocking a laptop is an awesome way to fry the **** out of it
  7. [SOLVED] Re: Is there a way to manually install GParted?

    can you download the source?

    or go to packages.ubuntu.com and download the deb?
  8. Replies
    11
    Views
    6,231

    [ubuntu] Re: pipe and kill pidof output

    just use

    killall -9 xbmc.bin

    in the script
  9. Replies
    6
    Views
    548

    [all variants] Re: Which graphics driver is loaded?

    lsmod lists loaded kernel modules

    the graphics driver is a component of X

    X is not part of the kernel

    there is of course graphics diver support in the kernel, but you will still need the...
  10. Replies
    6
    Views
    548

    [all variants] Re: Which graphics driver is loaded?

    yes, but if you look down from about line 477 onwards, you see the radeon driver is the one actually being used, it is the driver detecting the card, assigning video ram, setting resolution, etc.
  11. [ubuntu] Re: How do I log in without Startup Applications?

    at GRUB, change the kernel boot line to end with: init=/bin/sh
  12. Replies
    6
    Views
    548

    [all variants] Re: Which graphics driver is loaded?

    looks like you are using:


    (II) Loading /usr/lib/xorg/modules/drivers//radeon_drv.so
    (II) Module radeon: vendor="X.Org Foundation"
    compiled for 1.6.4, module version = 6.12.99
    Module class:...
  13. [all variants] Re: How to run a program automatically when a file appears in a directory?

    here is a bash script that will check for a certain file every five minutes then run whatever you specify if it exists


    #!/bin/bash
    file=/path_to/file
    run='command'

    while true; do if [ -x...
  14. Replies
    19
    Views
    3,257

    [SOLVED] Re: Fluxbox, Openbox, or Gnome???

    i am obligated to promote openbox

    use openbox!!!
  15. [ubuntu] Re: How do I log in without Startup Applications?

    it has been a long time since ive used gnome or gdm so i dont remember if there is an option for an empty or new session from the login manager, but you could, instead of logging in at gdm, switch to...
  16. [SOLVED] Re: How to disable gdm and run a single gui app

    what error is 'startx' giving you?


    you will need to run X to run a gui application, but you could use mplayer, for example, on the framebuffer


    another option if you dont want to use gdm, is...
  17. Replies
    11
    Views
    6,231

    [ubuntu] Re: pipe and kill pidof output

    odd, i tested it before i posted to make sure it worked, and it did on my system

    is there a particular reason you dont want to use
    killall -9 xbmc.bin
  18. Replies
    11
    Views
    6,231

    [ubuntu] Re: pipe and kill pidof output

    #!/bin/bash
    app=`pidof xbmc.bin`
    kill -9 $app && rm ~/xbmc_crashlog*
  19. [SOLVED] Re: Please will somebody write me a bash script.

    we're going to need more information

    like, what does the original file contain?

    a list of names? how can the second file get the mailing address from a list of names?

    an example of what the...
  20. [ubuntu] Re: Gtk-WARNING **: cannot open display: :0.0

    try putting

    export DISPLAY=:0.0

    into your /root/.bashrc

    create the file if it does not exist

    if I recall, thats what fixed the same problem i was having
  21. Replies
    11
    Views
    6,231

    [ubuntu] Re: pipe and kill pidof output

    kill -9 `pidof app`

    note that those are backticks, not apostrophes/single-quotes

    note the backtick is usually on the same key as ~ on standard american 104 key keyboards
  22. Replies
    8
    Views
    925

    [SOLVED] Re: How do I rip "new" dvds?

    i always use acidrip
  23. Replies
    4
    Views
    412

    [SOLVED] Re: Slackware with Ubuntu

    i endorse the installation of slackware

    I have dual booted slack with ubuntu in the past

    there is no conflicts between them

    slackware uses lilo as the boot loader, if you wish to continue...
  24. Replies
    1
    Views
    251

    [ubuntu] Re: What am I doing? Help Please

    mkdir new_directory
    cd new_directory
    cp /location/of/setup.pl .



    what are you trying to install?
  25. Replies
    5
    Views
    928

    [all variants] Re: The lightest WM or DE

    Twm
Results 1 to 25 of 250
Page 1 of 10 1 2 3 4