| Welcome, Guest |
You have to register before you can post on our site.
|
| Online Users |
There are currently 1941 online users. » 1 Member(s) | 1936 Guest(s) Applebot, Baidu, Bing, Google, val
|
| Latest Threads |
after install Linux Lite ...
Forum: Installing Linux Lite
Last Post: val
1 hour ago
» Replies: 10
» Views: 207
|
Sem som quando reinicia
Forum: Other
Last Post: di0lh0
3 hours ago
» Replies: 19
» Views: 225
|
Hello!!!
Forum: Introductions
Last Post: stevef
Today, 05:35 AM
» Replies: 1
» Views: 35
|
No authentication when i ...
Forum: Start up and Shutdown
Last Post: stevef
Today, 05:33 AM
» Replies: 1
» Views: 36
|
Problem updating lite 7.6...
Forum: Updates
Last Post: valtam
11-13-2025, 11:52 PM
» Replies: 5
» Views: 384
|
ASUS x206HA black screen ...
Forum: Installing Linux Lite
Last Post: Doceal
11-10-2025, 09:25 AM
» Replies: 6
» Views: 878
|
time synchronization
Forum: Other
Last Post: LL-user
11-09-2025, 12:18 AM
» Replies: 1
» Views: 195
|
Series to Series Upgrade ...
Forum: Linux Lite Software Development
Last Post: berrywhitetiger
11-07-2025, 05:43 AM
» Replies: 4
» Views: 4,228
|
Regarding the minimum sys...
Forum: Installing Linux Lite
Last Post: valtam
11-02-2025, 11:41 PM
» Replies: 3
» Views: 441
|
Can't test LinuxLite 7.6 ...
Forum: Installing Linux Lite
Last Post: valtam
11-02-2025, 05:51 AM
» Replies: 23
» Views: 7,368
|
|
|
| Hello from the Great White North |
|
Posted by: buster - 09-09-2015, 09:35 PM - Forum: Introductions
- Replies (5)
|
 |
How's it goin' eh? Hi from Canada, where all the men are hockey players, all the women are beautiful, and ever single child is slightly above average
And I'm not the only Peterborough resident to switch to Lite on our older machines. Two at our Linux PLUG have. My 'gift' laptop had Vista on it originally, and this Distro really brings it to life. And Lite always worked well in VMWare, for anyone who hasn't yet tried it.
Polished, easy to work with, solid, quick. Thanks to all those who work so hard day after day to keep it going. Looking forward to just using it and not spending hours tinkering.
Buster in Peterborough.
|
|
|
| LAPPY |
|
Posted by: Pete10041983 - 09-09-2015, 07:34 PM - Forum: Other
- Replies (4)
|
 |
After installing Linux lite I gained a machine on my network called LAPPY should I be concerned ? I love everything else about Linux Lite & want to stick with it but don't like the appearance on a new machine on my network that I haven't named myself!
|
|
|
| Black Screen after hibernate - Intel Graphics |
|
Posted by: firenice03 - 09-09-2015, 02:04 PM - Forum: Video Cards
- Replies (11)
|
 |
Moving my posts from the ASUS thread to a new.
Referenced https://dfgkh547-jsdfv8.iyhkj.tk/forums/video...ee1025/15/
My issue is that I received a blank screen after closing the lid (hibernating) of my netbook.
This 1st post will be lengthy as I wanted to capture the majority of the original thread - lots of good info from misko_2083..
(09-04-2015, 05:00 PM)firenice03 link Wrote: My Dell Netbook (w/ Intel Graphics) appears to do the similar. Running LL2.2 and same with LL2.6
Since its a "laptop" I want to close the lid or after X time have it hibernate after a screen saver. After waking from hibernate , I see the log on screen I can log in then black... Rebooting corrects until the next time.
I've read that it could be lightdm (I think how it was referenced) and/or the screen saver..
I used the following workaround when I want to hibernate..
In terminal (does require root)
I typically leave a terminal window up just having to up arrow to the last command. If I put into hibernate, I have no issues waking.
One of these days I'm going to chase the cause down.... But the above works for the time being.
(09-04-2015, 06:41 PM)misko_2083 link Wrote: [quote author=firenice03 link=topic=1723.msg16884#msg16884 date=1441386011]
My Dell Netbook (w/ Intel Graphics) appears to do the similar. Running LL2.2 and same with LL2.6
Since its a "laptop" I want to close the lid or after X time have it hibernate after a screen saver. After waking from hibernate , I see the log on screen I can log in then black... Rebooting corrects until the next time.
I've read that it could be lightdm (I think how it was referenced) and/or the screen saver..
I used the following workaround when I want to hibernate..
In terminal (does require root)
I typically leave a terminal window up just having to up arrow to the last command. If I put into hibernate, I have no issues waking.
One of these days I'm going to chase the cause down.... But the above works for the time being. On some hardware putting the video card in the suspend state and recovering from it needs some special quirk handling.
Read the manual.
try running sudo pm-suspend with some of the quirks
For example:
Code: sudo pm-suspend --quirk-vbe-post --quirk-vbemode-restore
or
Code: sudo pm-suspend --quirk-reset-brightness
or
Code: sudo pm-suspend --quirk-dpms-on
All the quirks:
Code: --quirk-dpms-on
--quirk-dpms-suspend
--quirk-radeon-off
--quirk-reset-brightness
--quirk-s3-bios
--quirk-s3-mode
--quirk-vbe-post
--quirk-vbemode-restore
--quirk-vbestate-restore
--quirk-vga-mode-3
--quirk-none
The trick is finding the right combination. It could be just one parameter or several.
When you find the right quirk. Test your system to see if all is running OK.
From the manual, to save it create a file in /etc/pm/config.d/
Name it anyway you like.
Code: gksu leafpad /etc/pm/config.d/my-quirk
containing Code: ADD_PARAMETERS="pm-suspend --quirk-vbe-post --quirk-vbemode-restore"
to make the quirk stick. Just use the parameters that work for you.
Which quirk works depends on your hardware, kernel, driver, KMS settings and the probably the phase of the moon.
Save. After reboot it should work.
You can put the pc to suspend without sudo with dbus-send.
Code: dbus-send --system --print-reply --dest="org.freedesktop.UPower" /org/freedesktop/UPower org.freedesktop.UPower.Suspend
[/quote]
(09-05-2015, 02:47 AM)firenice03 link Wrote: [quote author=misko_2083 link=topic=1723.msg16885#msg16885 date=1441392072]
Which quirk works depends on your hardware, kernel, driver, KMS settings and the probably the phase of the moon.  I hear ya, lol ;D
Issue is with Dell Mini with Intel video, my other Dell with SIS all seems to work fine (I don't close a lid but still sleeps/hibernate)..
Is there a way to see what fails or doesn't initialize - debug or something, I sometimes wonder if its not the driver too..
Just a thought..
[/quote]
(09-05-2015, 02:54 PM)firenice03 link Wrote: [quote author=misko_2083 link=topic=1723.msg16885#msg16885 date=1441392072]
On some hardware putting the video card in the suspend state and recovering from it needs some special quirk handling.
Read the manual.
Thanks - Didn't know about the manual..
Quote:try running sudo pm-suspend with some of the quirks
For example:
Code: sudo pm-suspend --quirk-reset-brightness
The trick is finding the right combination. It could be just one parameter or several.
When you find the right quirk. Test your system to see if all is running OK.
From the manual, to save it create a file in /etc/pm/config.d/
Name it anyway you like.
Code: gksu leafpad /etc/pm/config.d/my-quirk
containing Code: ADD_PARAMETERS="pm-suspend --quirk-vbe-post --quirk-vbemode-restore"
to make the quirk stick. Just use the parameters that work for you.
Which quirk works depends on your hardware, kernel, driver, KMS settings and the probably the phase of the moon.
Save. After reboot it should work.
Testing a quirk seems to work initially but after creating the "my-quirk" file it no longer works..
Does the my-quirk file need referenced in a script or ?? (Like adding to grub to activate the file - just as an example)
Can the quirk file have multiple lines of parameters like:
Code: ADD_PARAMETERS=pm-suspend --quirk-reset-brightness
ADD_PARAMETERS=pm-hibernate --quirk-reset-brightness
Or should I have a separate my-quirk for each function
I know I can string additional quirks on a line
Code: sudo pm-suspend --quirk-vbe-post --quirk-vbemode-restore
Quote:You can put the pc to suspend without sudo with dbus-send.
Code: dbus-send --system --print-reply --dest="org.freedesktop.UPower" /org/freedesktop/UPower org.freedesktop.UPower.Suspend
Is this another way to suspend the vs pm-suspend? I tested with by closing the lid
Thanks again!!
[/quote]
(09-09-2015, 03:01 AM)misko_2083 link Wrote: [quote author=firenice03 link=topic=1723.msg17025#msg17025 date=1441766492]
[quote author=misko_2083 link=topic=1723.msg16982#msg16982 date=1441653023]
Try
Remember to use the quotes " "
Just add parameters without the command
Should work with all pm-utils
Code: ADD_PARAMETERS="--quirk-vbe-post --quirk-vbemode-restore"
Code: dbus-send --system --print-reply --dest="org.freedesktop.UPower" /org/freedesktop/UPower org.freedesktop.UPower.Suspend
This is another way, very usefull because it doesn't need sudo.
Thought I'd update.....
This issue is weird I've tried a few quirks individually... Some "seem" to work but only once...
The Code: dbus-send --system --print-reply --dest="org.freedesktop.UPower" /org/freedesktop/UPower org.freedesktop.UPower.Suspend
only suspends the system - which the system doesn't seem to have to a problem waking from - only a lid closed hibernate.
I can add a quirk/update grub - close lid the system hibernates no problems - after a few I'll press power to wake, I get GRUB, it "thinks" feather bar, shows a tty screen for a second then the log on prompt. - which.. The big IF..
If I get the "this session is locked - redirecting" screen pop up, which then comes back to same log on = it will work..
If it stays on the log on screen and I log on - goes black, needs to be rebooted.
- thus far it seems to work the 1st time after a reboot, after a 2nd hibernate goes black.
I've disabled light locker was able to wake and go thru "waking" and directly to desktop (no log on prompt)
I'm still testing 8) ..
FWIW: Intel Mobile 945GSE Express Integrated Graphics Controller
I'll keep updated - not sure but since I'm not running "Asus EEE1025" I can move to a new thread..??...
[/quote]
Weird stuff. There is a known issue with lightdm-webkit-greeter that's where the popup window is coming from.
We should change a greeter eventualy. Probably with LL 3.0.
This command will put the comp to hibernation:
Code: dbus-send --system --print-reply --dest="org.freedesktop.UPower" /org/freedesktop/UPower org.freedesktop.UPower.Hibernate
As for new thread question, please do so. Opening a new thread would help some folks with the same hardware.
This is Asus EEE1025 thread.
[/quote]
Again hoping this captures the essence of the information - trying not to duplicate too many of the quotes...
|
|
|
| Post Your Machine Specifications! |
|
Posted by: Teddy - 09-08-2015, 03:54 AM - Forum: Off Topic
- Replies (1)
|
 |
My Main Laptop: Dell Inspiron M5110
(Note: My specs on this Dell Laptop is very, very similar to Spatry's Laptop Specs, nearly identical.)
![[Image: 303956.jpg]](http://www.ferra.ru/images/303/303956.jpg)
Yes, my laptop is one of those that has some useless switchable back covers behind the screen. I've never bought any covers and don't plan to because I simply don't care. I use the stock one that came with the laptop. The factory box describes my back cover colour as "Diamond Black". (Doesn't look as good as it sounds, to be honest, but still a good laptop overall.)
Processor: AMD A8-3500M Quad-Core APU @ 1.5 Ghz (2.4 Ghz Turbo Boost)
Graphics: AMD Radeon HD 6620G & AMD Radeon HD 6470M
Hard Drive: Western Digital Blue 500GB
RAM: 6 GB DDR3 1333 Mhz Memory (2 of 2 RAM Slots Used) (Originally had 4 GB Stock) (8 GB Max)
Wireless LAN: Broadcom BCM4313 a/b/g/n Single Band (2.4 Ghz) with Bluetooth 3.0 - A LINUX PROBLEM WIFI CARD! DO NOT GET! [As I found out].
LAN: Realtek Ethernet Card
Display: 1366x768 Resolution, 15.6 Inch LED Panel
Operating System: Arch Linux 64-Bit with KDE. - This will be replaced with LL in a few weeks.
My Travel Laptop: HP Pavilion TouchSmart 11
(Exact Model is: HP Pavilion TouchSmart 11-e015dx)
![[Image: 711nkIzaSFL._SL1500_.jpg]](http://ecx.images-amazon.com/images/I/711nkIzaSFL._SL1500_.jpg)
Laptop that I use when I'm out and about. Has decent run time of about 6 hours on battery, and about 4 hours on full brightness. 11.6 inch 10-Point Touchscreen display.
Processor: AMD A6-1450 Quad-Core APU @ 1.0 Ghz (1.4 Ghz Turbo Boost)
Graphics: AMD Radeon HD 8250
Hard Drive: HGST TravelStar 500GB
RAM: 4 GB DDR3 1333 Mhz Memory (1 of 1 RAM Slots Used) (8GB Max)
Wireless LAN: Qualcomm Atheros a/b/g/n Dual-Band (2.4 and 5 Ghz) with Bluetooth 4.0 - A very good choice with Linux
LAN: Realtek Ethernet Card
Display: 1366x768 Resolution, 11.6 Inch LED Panel, Amtel MaXTouch Touch Digitizer with 10 Touch Points (Yes, This is a Touchscreen Laptop)
Operating System: Windows 8.1 Update 1 64-Bit dual-booted with Linux Lite 2.6
My Desktop: Dell Dimension 5100C
This is my spare machine I use for testing all kinds of Linux distros and previews of Windows. A quick machine considering its age. Also used occasionally as a background music machine for my job live-streaming commercial-free Icecast / Shoutcast radio streams. Has a S/PDIF (Optical) 5.1 Surround Audio output used on a Harman/Kardon A/V Receiver. Creates static free and crisp high quality sound!
It has a gear-operated door cover that covers the DVD Drive, Floppy Drive (or optional 9 in 1 Media Card Reader for SD Cards, Memory Stick, CompactFlash, etc.), 3.5 mm Audio Jacks, Firewire 400, and 2 USB 2.0 Ports. This is with it open.
![[Image: 06241703_4c231140c5e5d.jpg]](http://r-factory.co.jp/upload/save_image/06241703_4c231140c5e5d.jpg)
Door cover closed.
![[Image: 31530073-320-0-18827-20060531_123048-320x240.jpg]](http://i.t.cbsi.com/i/lumiere/2006/05/31/31530073-320-0-18827-20060531_123048-320x240.jpg)
Neat feature!
Processor: Intel Pentium D Dual-Core @ 2.8 Ghz (No HyperThreading)
Graphics: Intel Graphics Media Accelerator 950 (Intel 945G Chipset) - Very good with Linux, present on alot of older Intel Atoms from the netbook craze era.
Hard Drive: Western Digital Blue 80GB
Other Storage: 3.5inch TEAC Floppy Drive - Not shown in above pictures.
RAM: 2.0 GB DDR2 667 Mhz Memory (3 of 4 RAM Slots Used) (4GB Max)
Wireless LAN: No Wireless Card Installed
LAN: Intel Ethernet Card
Display: 1440x900 HP 1907w Desktop Monitor with rear-facing stereo speakers
Operating System: My Machine For Distro-Hopping or Testing OS's. All kinds of things go in this field.
July 11th, 2014 - I took a 512 MB RAM stick out on the Dell Dimension because it had failed. It had a rather serious problem where that particular RAM stick prevented ANY and ALL Linux Distros from installing or in some cases, even booting, on it, every single time [Kernel Panics]. Even Windows 7 and 8 would fail right in the middle of the installation process (Blue Screen Of Death) every single time. Who knew a RAM stick could cause so much trouble.
|
|
|
|