- Community Home
- >
- Servers and Operating Systems
- >
- Operating System - Linux
- >
- General
- >
- Pavilion Touchscreen Notebook, Linux install on HP...
-
- Forums
-
- Advancing Life & Work
- Advantage EX
- Alliances
- Around the Storage Block
- HPE Ezmeral: Uncut
- OEM Solutions
- Servers & Systems: The Right Compute
- Tech Insights
- The Cloud Experience Everywhere
- HPE Blog, Austria, Germany & Switzerland
- Blog HPE, France
- HPE Blog, Italy
- HPE Blog, Japan
- HPE Blog, Middle East
- HPE Blog, Russia
- HPE Blog, Saudi Arabia
- HPE Blog, South Africa
- HPE Blog, UK & Ireland
-
Blogs
- Advancing Life & Work
- Advantage EX
- Alliances
- Around the Storage Block
- HPE Blog, Latin America
- HPE Blog, Middle East
- HPE Blog, Saudi Arabia
- HPE Blog, South Africa
- HPE Blog, UK & Ireland
- HPE Ezmeral: Uncut
- OEM Solutions
- Servers & Systems: The Right Compute
- Tech Insights
- The Cloud Experience Everywhere
-
Information
- Community
- Welcome
- Getting Started
- FAQ
- Ranking Overview
- Rules of Participation
- Tips and Tricks
- Resources
- Announcements
- Email us
- Feedback
- Information Libraries
- Integrated Systems
- Networking
- Servers
- Storage
- Other HPE Sites
- Support Center
- Aruba Airheads Community
- Enterprise.nxt
- HPE Dev Community
- Cloud28+ Community
- Marketplace
-
Forums
-
Blogs
-
Information
-
English
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
10-03-2007 12:43 PM
10-03-2007 12:43 PM
My concerns are driver support for the touchscreen, the touchpad, the LightScribe DVD recorder, the integrated WiFi, and webcam. Does anyone have any experience they could share about installing Linux on such a system? I've heard from some HP people that they are running Ubuntu on their notebooks, though I don't know if they have ones with the touchscreen.
Thanks in advance for your help!
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
10-03-2007 03:32 PM
10-03-2007 03:32 PM
Solution- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
10-03-2007 03:37 PM
10-03-2007 03:37 PM
Re: Pavilion Touchscreen Notebook,
Linux install on HP Pavilion notebook with touchscreen?
>> driver support
>> integrated WiFi
- Broadcom bcm43xx Linux Wireless Driver
- Included into the Linux Kernel since 2.6.17-rc2
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
10-03-2007 03:40 PM
10-03-2007 03:40 PM
Re: Pavilion Touchscreen Notebook,
Linux install on HP Pavilion notebook with touchscreen?
>> LightScribe DVD recorder
Linux LightScribe System Software:
http://www.lightscribe.com/downloadsection/linux/index.aspx?id=1372
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
10-03-2007 04:37 PM
10-03-2007 04:37 PM
Re: Pavilion Touchscreen Notebook,
Linux install on HP Pavilion notebook with touchscreen?
Now if the touchscreen will work with Linux, it'll be golden! :)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
10-03-2007 06:34 PM
10-03-2007 06:34 PM
Re: Pavilion Touchscreen Notebook,
Linux install on HP Pavilion notebook with touchscreen?
>> Now if the touchscreen will work with Linux, it'll be golden!
# cd /usr/X11R6/lib/modules/input
# ls -al mutouch_drv.o
xorg.conf (or XF86Config):
Section "Module"
Load "mutouch_drv.o"
EndSection
Section "InputDevice"
Identifier "xxxxx"
Driver "xxxxx"
Option "Device" "/dev/input/xxxxx"
Option "MinimumXPosition" "0"
Option "MaximumXPosition" "xxxxx"
Option "MinimumYPosition" "0"
Option "MaximumYPosition" "xxxxx"
EndSection
Do customize above further (varies from different type of Linux OS flavour)
Good Luck.
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
10-04-2007 08:07 AM
10-04-2007 08:07 AM
Re: Pavilion Touchscreen Notebook,
Linux install on HP Pavilion notebook with touchscreen?
>> # cd /usr/X11R6/lib/modules/input
>> # ls -al mutouch_drv.o
>>
>> xorg.conf (or XF86Config):
>> Section "Module"
>> Load "mutouch_drv.o"
>> EndSection
>>
>> Section "InputDevice"
>> Identifier "xxxxx"
>> Driver "xxxxx"
>> Option "Device" "/dev/input/xxxxx"
>> Option "MinimumXPosition" "0"
>> Option "MaximumXPosition" "xxxxx"
>> Option "MinimumYPosition" "0"
>> Option "MaximumYPosition" "xxxxx"
>> EndSection
>>
>> Do customize above further (varies from different type of Linux OS flavour)
Thank you TY, you're AWESOME! I'm just a Linux newbie, but am guessing the lines from Section "InputDevice" to "EndSection" go into my xorg.conf file?
I did find this link:
http://www.linuxquestions.org/questions/showthread.php?t=583400
which describes how a Ubuntu user was able to get a touchscreen monitor working. He referenced this link which also looks helpful:
http://ubuntuforums.org/showthread.php?t=158666
How were you able to determine that the touchscreen is a MicroTouch device?
>> Good Luck.
Thank you, I will need it. You've been extremely helpful, and your tips are giving me the confidence to proceed with this.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
10-04-2007 01:50 PM
10-04-2007 01:50 PM
Re: Pavilion Touchscreen Notebook,
Linux install on HP Pavilion notebook with touchscreen?
>> lines from Section "InputDevice" to "EndSection" go into my xorg.conf file?
Yes, but configuration or parameter may be different across different type of Linux OS Version, do experiment it a bit :)
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
10-04-2007 02:16 PM
10-04-2007 02:16 PM
Re: Pavilion Touchscreen Notebook,
Linux install on HP Pavilion notebook with touchscreen?
>> How were you able to determine that the touchscreen is a MicroTouch device?
You may need to log a HP Hardware Support Ticket to confirm further.
Do keep us posted on any result from HP Hardware Support Personnel :)
3M MicroTouch Touch Screen Solutions:
http://solutions.3m.com/wps/portal/3M/en_US/3MTouchSystems/TS/
# cd /usr/X11R6/lib/modules/input
# ls | grep touch
--> microtouch_drv.o
--> mutouch_drv.o
microtouch_drv.o & mutouch_drv.o both also default OS installed MicroTouch driver.
No idea what is the difference, no harm try out both :)
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
10-16-2007 12:21 PM
10-16-2007 12:21 PM
Re: Pavilion Touchscreen Notebook,
Linux install on HP Pavilion notebook with touchscreen?
I did get the TX1320US and am the process of backing up the Vista partitions prior to creating new partitions for Linux and shared data. I'll start a thread on my partitioning strategy in this forum, but post more to this thread about hardware issues as I get things working.
Thanks for all the help.
Hewlett Packard Enterprise International
- Communities
- HPE Blogs and Forum
© Copyright 2021 Hewlett Packard Enterprise Development LP