Page 111 of 112 FirstFirst ... 1161101109110111112 LastLast
Results 1,101 to 1,110 of 1117

Thread: Ubuntu on Eee PC T101MT

  1. #1101
    Join Date
    Apr 2010
    Location
    Texas, USA
    Beans
    105
    Distro
    Ubuntu Development Release

    Re: Ubuntu on Eee PC T101MT

    Quote Originally Posted by psykatog View Post
    Just upgraded to Kubuntu 12.04, and had a few minor issues -

    One is that when I use the touchscreen, the next time I touch the touchpad the pointer automatically registers at the bottom-right corner of the screen (in my case, the click brings up a calendar).

    Another is probably due to a user error on my part. I installed the v4lutils deb package from the FTP link on the community documentation page for the t101t, and while it works for Cheese, SKype is still upside down. Following the instructions on that page hasn't worked, perhaps because although the deb package was installed, there's no usr/lib/libv4l. Should I reinstall the package from the .tar? Seems unnecessary if the camera is already working for other applications.
    Just in case you never figured it out, the correct command is LD_PRELOAD=/usr/lib/i386-linux-gnu/libv4l/v4l1compat.so skype

    I made a little script for it and changed skype.desktop in ~/.local/usr/share/applications/

    My microphone is really awful and noisy now. I was wondering if other guys have that problem or if it's just broken

    EDIT: Oh geez, new page. Don't forget to check for new replies on the previous, guys.

  2. #1102
    Join Date
    Nov 2007
    Beans
    33
    Distro
    Ubuntu 10.10 Maverick Meerkat

    Re: Ubuntu on Eee PC T101MT

    Quote Originally Posted by mrspacklecrisp View Post
    battery life (have experienced slowdown since 12.04)
    What is working and what is not working on the 101MT on Ubuntu 12.04 or Ubuntu 12.10?
    I have a first gen and I'm still running Ubuntu 10.10.

    ...Not that slow thread....0 minutes from last post
    To err is human - to really f*ck up you need a computer

  3. #1103
    Join Date
    Apr 2010
    Location
    Texas, USA
    Beans
    105
    Distro
    Ubuntu Development Release

    Re: Ubuntu on Eee PC T101MT

    Quote Originally Posted by coffen View Post
    What is working and what is not working on the 101MT on Ubuntu 12.04 or Ubuntu 12.10?
    I have a first gen and I'm still running Ubuntu 10.10.

    ...Not that slow thread....0 minutes from last post
    Using 12.04 currently.

    Basically everything. You wouldn't even have to know Plippo's ppa existed to have a nice time. I've lost an hour or two of battery in distros known for being lightweight though, so idk. I used to get 5 or 6.

    You still need to do something to fix the upside down camera, but I think you don't have to install anything, you only need to alter the commands for skype and maybe the browser.

    The screen's driver has always stopped when the computer lid was shut, but since it was added to the kernel it's been impossible to restart. You can modprobe hid-multitouch, but the screen stays dead. Android folks have had problems with this too- see my post on the previous page.

    It would be nice to have some extra tricks for a more touch-friendly interface, but all clicks should work. (They didn't always before.)

  4. #1104
    Join Date
    Jul 2007
    Beans
    73

    Re: Ubuntu on Eee PC T101MT

    Quote Originally Posted by mrspacklecrisp View Post

    The screen's driver has always stopped when the computer lid was shut, but since it was added to the kernel it's been impossible to restart.
    If you modify your script by one line it actually works:

    Code:
    #! /bin/bash
    
    rmmod hid_multitouch
    rmmod usbhid
    modprobe hid_multitouch
    I start it manually, but somwhere I've read about it being done event triggered.
    AMD64X2: UbuntuStudio 14.10-64bit

  5. #1105
    Join Date
    Apr 2010
    Location
    Texas, USA
    Beans
    105
    Distro
    Ubuntu Development Release

    Re: Ubuntu on Eee PC T101MT

    Quote Originally Posted by variona View Post
    If you modify your script by one line it actually works:

    Code:
    #! /bin/bash
    
    rmmod hid_multitouch
    rmmod usbhid
    modprobe hid_multitouch
    I start it manually, but somwhere I've read about it being done event triggered.
    Sweet baby jesus. Where is this script, /etc/init.d/ ?

  6. #1106
    Join Date
    Jul 2007
    Beans
    73

    Re: Ubuntu on Eee PC T101MT

    Dear Mrs.Crisp!

    This script is wherever you feel free to save it before you make it executable.

    Yours sincerely

    Variona
    AMD64X2: UbuntuStudio 14.10-64bit

  7. #1107
    Join Date
    Nov 2007
    Beans
    33
    Distro
    Ubuntu 10.10 Maverick Meerkat

    Re: Ubuntu on Eee PC T101MT

    Quote Originally Posted by variona View Post
    If you modify your script by one line it actually works:

    Code:
    #! /bin/bash
    
    rmmod hid_multitouch
    rmmod usbhid
    modprobe hid_multitouch
    I start it manually, but somwhere I've read about it being done event triggered.
    Maybe put the script in /etc/pm/sleep.d/ with some modifications:

    Code:
    #!/bin/bash
    case "$1" in
       suspend|hibernate)
          rmmod hid_multitouch
          rmmod usbhid
          modprobe hid_multitouch
       ;;
       resume|thaw)
          export DISPLAY=:0
          sleep 5 && lxpanelctl restart & #Delayed so the battery icon can finish wrecking shop.
       ;;
       *)
          exit 1
       ;;
    esac
    exit 0
    ..or put the code at the end of the resume|thaw section, right after the sleep 5 command if that works better 4 U.
    Feel free to edit it to suit your needs.
    To err is human - to really f*ck up you need a computer

  8. #1108
    Join Date
    Jul 2007
    Beans
    73

    Re: Ubuntu on Eee PC T101MT

    Thank you coffen!
    That's what I did

    /etc/pm/sleep.d/80_egalax_touchscreen

    Code:
    #!/bin/bash
    case "$1" in
            hibernate|suspend)
                    rmmod hid_multitouch
                    rmmod usbhid
                    ;;
            thaw|resume)
                    modprobe hid_multitouch
                    ;;
            *)
                    ;;
    esac
    exit $?
    works as expected.
    AMD64X2: UbuntuStudio 14.10-64bit

  9. #1109
    Join Date
    Mar 2013
    Beans
    3

    Re: Ubuntu on Eee PC T101MT

    Hello.

    Excuse my English, I know it not good.
    It is hard for me find information in many messages. Please write simple instruction to help my problems.

    I installed Ubuntu 12.04 64bit on Eee PC T101MT (screen 2nd generation). I use Gnome with no effects.
    Then I added repository ppa: plippo/t101mt and installed all pakages from it. But I have a few problems.

    1. Does not work turn the touch screen. For example: I use "touchrotate toright", then press screen on right down corner. But mouse cursor appears on left down.
    2. No right click on touch screen.
    3. Gestures do not work on the touchpad.

    Please help.
    Last edited by lzv; March 1st, 2013 at 06:38 PM.

  10. #1110
    Join Date
    Mar 2013
    Beans
    3

    Re: Ubuntu on Eee PC T101MT

    Hello again.

    I try to install Ubuntu 32 bit, and I have same problems. But I found some information.
    I added "twofing --wait" to startup applications. Problem 1 was solved!
    But I still have problem with right click. It makes by pressing two fingers. But menu appears between fingers. It is difficult to use.
    And still have problem 3.

    Please help.
    Last edited by lzv; March 4th, 2013 at 06:59 AM.

Page 111 of 112 FirstFirst ... 1161101109110111112 LastLast

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •