Search:

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

Page 1 of 4 1 2 3 4

Search: Search took 0.17 seconds.

  1. [SOLVED] Re: OpenVPN working in Subnet but can't access internet

    IP forwarding is enabled.

    I added


    # Allow traffic initiated from VPN to access LAN
    iptables -I FORWARD -i tun0 -o eth0 \
    -s 10.10.0.0/24 -d 10.20.0.0/24 \
    -m...
  2. [SOLVED] Re: OpenVPN working in Subnet but can't access internet

    Forgot to mention


    iptables -t nat -A INPUT -i wlan0 -p udp -m udp --dport 1194 -j ACCEPT

    iptables -t nat -A POSTROUTING -s 10.10.0.0/24 -o wlan0 -j SNAT --to-source 10.20.20.1
  3. [SOLVED] OpenVPN working in Subnet but can't access internet

    I have openvpn installed on my raspberry pi running debian. I can connect to the vpn and access the computers on my home network, but I can't get to the internet. I assume this is a route problem,...
  4. [all variants] Apache symlinks from CIFS mount (from NTFS on Windows 7)

    I am running a webserver with some files being symlinked into my document root. These are located in /media/wdtb linked to /var/www/Media/Videos. /media/wdtb is a CIFS share from my windows machine....
  5. [SOLVED] Re: USB Harddrive has completely disapeared

    Very weird. I unplugged the power source waited a few minutes, and plugged it back in and STRANGELY it mounted fine. I am baffled. Thanks anyways guys.
  6. [SOLVED] Re: USB Harddrive has completely disapeared

    I'm afraid I don't see it in windows either. I didn't realize a harddrive could just disappear. I know it isn't lack of power, since the drive is spinning. I know it isn't the coord, I've swapped...
  7. [SOLVED] Re: USB Harddrive has completely disapeared

    no I cannot. I usually use gparted. However, I don't know how to specify inode size in gparted.
  8. [SOLVED] USB Harddrive has completely disapeared

    I recently reformatted my USB 2.0 WD 1 Terrabyte hard drive to ext3 with


    sudo mkfs.ext3 -I 128 -L "wdtb" /dev/sdb1


    I mounted it in a windows XP Virtual machine (VirtualBox 3.1.2) and...
  9. [ubuntu] Re: add open office document option for right mouse button

    Open Open Office and save an empty file, whichever kind you want, to the folder
    /home/{your user name here}/Templates

    When you restart the shell, or maybe immediately, it will be in the right...
  10. Replies
    1
    Views
    356

    [all variants] sed repeated substitution

    I know how to make a simple substition



    sed 's/make/take/'
    I know how to take a simple substition


    But what I haven't been able to figure out is this:
    If I wanted to insert the pattern n...
  11. Replies
    0
    Views
    624

    [all variants] metadata (Exif) Backup tags

    I would like to have a scheme where I know--or rather my script would know--which files are backed up to a DVD by adding a tag to the exif comment of the .CR2 file. I think I need to use exiv2 but it...
  12. [ubuntu] Re: DVD Movie Plays fine But dd doesn't like it.

    Batman is a 2-Disc set.
    The special features (7.8 GB) copied fine, but the actual feature won't
    yeah it always fails at 369 MB
  13. [ubuntu] Re: DVD Movie Plays fine But dd doesn't like it.

    That's the one I tried first. It stopped at the same place (369 MB)
    Also, brasero was the first method I tried. I have tried mounted and unmounted
  14. [ubuntu] DVD Movie Plays fine But dd doesn't like it.

    I bought a DVD Movie (Dark Knight) and I want the iso on my computer. I can play the movie in vlc but when I run


    # dd if=/dev/dvd of=/home/user/Desktop/Bat.iso
    dd: reading `/dev/dvd':...
  15. Replies
    10
    Views
    33,456

    [all variants] Re: tar from stdin: piping to tar.

    Yes I periodically create compressed images. But I would like to be able to append files to the archive (usually text files) such as a list of instructions for a restore, the contents of the image,...
  16. Replies
    10
    Views
    33,456

    [all variants] Re: tar from stdin: piping to tar.

    Isn't that two operations? dd is very slow as is and if you add to that time the time needed to tar it, that makes for two long operations when I'd rather it just be 1 long operation.
  17. Replies
    10
    Views
    33,456

    [all variants] Re: tar from stdin: piping to tar.

    # dd if=/dev/zero | tar -cvzf /home/user/Desktop/imag.tgz
    tar: Cowardly refusing to create an empty archive
    Try `tar --help' or `tar --usage' for more information.
  18. Replies
    10
    Views
    33,456

    [all variants] tar from stdin: piping to tar.

    I want to do something like this


    # dd if=/dev/sdX | tar -cvz /location/of/harddiskimage.tar.gz


    I am currently using the following


    # dd if=/dev/sdX | gzip >...
  19. Replies
    7
    Views
    503

    [ubuntu] Re: xserver crashes while watching videos

    I'm not sure I understand. What would the video go to if not X11. Also, how do I specify.
  20. Replies
    7
    Views
    503

    [ubuntu] Re: xserver crashes while watching videos

    No. What's weird is that the same video will crash x over and over but if I use metacity instead of emerald/compiz it doesn't crash.
  21. Replies
    7
    Views
    503

    [ubuntu] Re: xserver crashes while watching videos

    It worked perfectly, for 7.10 and 8.04.
  22. Replies
    7
    Views
    503

    [ubuntu] xserver crashes while watching videos

    Occasionally my xserver crashes: I get a bunch of vertical purple bars and after less than a second I am at the login screen. It happens when I watch certain avi files and when I use virtualbox...
  23. Replies
    4
    Views
    1,827

    [ubuntu] Re: [SOLVED] xbindkeys quirk

    Sorry. False alarm. It still does not work the way it should.
  24. Replies
    1
    Views
    713

    [all variants] Bash sed spaces

    Why does the following code produce spaces.


    #!/bin/bash

    b=1
    for ((a=1;a<7;a+=1));do
    c=`echo $b| sed 'a.png' | sed 's/ .png/.png/'`
    echo $c
    let "b=$b+1"
  25. Replies
    0
    Views
    724

    [ubuntu] dvd/cd Problem

    Since installing 8.10 I haven't been able to play dvds or use acidrip or the like.
    I have installed ubuntu-restricted-extras and I believe all the libs are there but still nothing.
    I think it may...
Results 1 to 25 of 88
Page 1 of 4 1 2 3 4