Search:

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

Page 1 of 10 1 2 3 4

Search: Search took 0.05 seconds.

  1. Replies
    8
    Views
    1,280

    [ubuntu] Re: Beginner: Wireless not working - help!

    run ifconfig again whenever you change something to see if the card is picked up.
    - try the key combination that turns on the wireless again
    - right click the network icon make sure "enable...
  2. Replies
    8
    Views
    1,280

    [ubuntu] Re: Beginner: Wireless not working - help!

    well the output of ifconfig says your system has the following network interfaces: "eth0" and "lo"

    eth0 is short for ethernet0 which is your wired network port. lo is a "loopback" address which...
  3. Replies
    8
    Views
    1,280

    [ubuntu] Re: Beginner: Wireless not working - help!

    step 1, find out what the system knows about your wireless card

    open up a terminal (applications > accessories > terminal) and run the following commands



    ifconfig
    lspci
  4. Replies
    0
    Views
    349

    [ubuntu] setting up ssh tunnel

    i'm trying to set up a tunnel so that <local_machine> routes all traffic on <port> through <remote_machine> in the hope that externally it will appear as though connections made from <local_machine>...
  5. Replies
    377
    Views
    21,221

    threads not posting/ posting with empty body

    i just pm'd a mod about this before trying this forum... silly me

    anyway i was trying to post something in multimedia & video and my posts never completed. they show up in the forum, but when you...
  6. Replies
    0
    Views
    282

    [ubuntu] 3 usb webcams through usb hub

    please delete this thread
  7. Replies
    6
    Views
    3,914

    [SOLVED] Re: creating an app with a transparent window

    Ah that's perfect! Thanks for the example too.
  8. Replies
    6
    Views
    3,914

    [SOLVED] creating an app with a transparent window

    Can anyone point me in the right direction here?

    I want to create a "start menu"-esque application with some similarities to the ps3's XMB

    In essence, I need to be able to render accelerated...
  9. Replies
    2
    Views
    569

    [ubuntu] Re: sharing connection problems

    For me it turned out to be a dodgey cable. Try using a different ethernet cable.
  10. Replies
    1
    Views
    3,588

    [ubuntu] iptables rule to allow connection

    I have a laptop sharing its connection with a desktop. I would like the desktop to be able to connect to a mysql database on the laptop, but i keep getting connection refused.

    I opened the port...
  11. [gnome] Re: How do I get my 2 computers to see each other?

    it's pretty stupid, but you have to try and share a folder to prompt it to download the right network stuff. or rather that is what i have had to do in the past.

    even then, it's pretty flaky in...
  12. Replies
    2
    Views
    569

    [ubuntu] sharing connection problems

    my netbook shares it's wireless connection to my desktop. i've done this through the gui (edit connections > eth0 > ipv4 settings > shared to others) and it has worked for the last i don't know how...
  13. Replies
    0
    Views
    224

    [SOLVED] python help - multiple inheritance

    ok i am sure i have run in to this problem before and gotten past it but i can't for the life of me remember how.
    solved :)


    >>> class A( object ):
    ... def __init__( self ):
    ... ...
  14. Replies
    2
    Views
    456

    [ubuntu] Re: Availability in torrenting?

    im not sure how it actually works but that can't be right

    say torrent A is split in to 10 pieces (p0 ... p9)

    bill has p0, p3 (0.2)
    bob has p0, p1 (0.2)
    jill has p2, p4, p5 ( 0.3 )
    julian has...
  15. Replies
    0
    Views
    299

    [ubuntu] sharing internet and handling uPnP

    running the 10.04 beta here but it was the same in 9.10

    my desktop has an awful wireless card so my netbook shares it's connection by ethernet to the desktop.

    is it possible for my netbook to...
  16. [ubuntu] Re: never seen this before... crash and dumped to log-in screen

    jackpot. https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-intel/+bug/444518

    same exact bug

    so in reading the comments on the bug report i have discovered that i am not alone in...
  17. [ubuntu] Re: never seen this before... crash and dumped to log-in screen

    i have a feeling that this



    (WW) intel(0): i830_uxa_prepare_access: bo map failed

    Backtrace:
    0: /usr/bin/X(xorg_backtrace+0x3b) [0x8133d6b]
    1: /usr/bin/X(xf86SigHandler+0x55) [0x80c7d35]...
  18. [ubuntu] never seen this before... crash and dumped to log-in screen

    ok this is my dad's computer, i've set him up with 9.10. 3 times now he has been playing solitaire (with no other applications running at all, bar whatever services run by default) and the system...
  19. Re: openssl, python, certificates and all the rest of it...

    bump. anyone?
  20. Re: openssl, python, certificates and all the rest of it...

    i got


    s = socket.socket( socket.AF_INET, socket.SOCK_STREAM )
    ssl_sock = ssl.wrap_socket(
    s,
    ca_certs=ca_certs_file,
    cert_reqs=ssl.CERT_REQUIRED )
    ssl_sock.connect(( host, port ))...
  21. [SOLVED] Re: Python: Looping through multiple lists in same iterations

    >>> list1 = (1, 2, 3, 4, 5)
    >>> list2 = ('a', 'b', 'c', 'd', 'e')
    >>> for x in range(len(list1)):
    ... this = list1[x]
    ... that = list2[x]
    ... print this, that
    ...
    1 a
    2 b
    3 c
  22. [SOLVED] Re: Python: Looping through multiple lists in same iterations

    if the lists are the same size



    for x in range (len(list1)):
    this = list1[x]
    that = list2[x]


    or if it's a list of lists (a nested list) you can do a nested for loop
  23. openssl, python, certificates and all the rest of it...

    i am a bit bewildered by the world of encryption and was wondering if anyone could help me. i am making a poker game for my final project at uni and it needs to authenticate the server before...
  24. Replies
    1
    Views
    371

    [ubuntu] help with iptables rule

    have a desktop and a netbook, and the desktop has an awful wireless card so i connect to our router with my netbook and share the connection with my desktop via ethernet.

    i want to route traffic...
  25. [ubuntu] Re: PLEASE help with getting my ati card to sync to vblank

    bump...

    still no joy with the 9.6 driver
Results 1 to 25 of 250
Page 1 of 10 1 2 3 4