| Welcome, Guest |
You have to register before you can post on our site.
|
| Online Users |
There are currently 1882 online users. » 1 Member(s) | 1876 Guest(s) Applebot, Baidu, Bing, Google, Yandex, di0lh0
|
| Latest Threads |
Sem som quando reinicia
Forum: Other
Last Post: di0lh0
Less than 1 minute ago
» Replies: 8
» Views: 132
|
Problem updating lite 7.6...
Forum: Updates
Last Post: valtam
Yesterday, 11:52 PM
» Replies: 5
» Views: 353
|
after install Linux Lite ...
Forum: Installing Linux Lite
Last Post: stevef
Yesterday, 04:43 PM
» Replies: 7
» Views: 151
|
ASUS x206HA black screen ...
Forum: Installing Linux Lite
Last Post: Doceal
11-10-2025, 09:25 AM
» Replies: 6
» Views: 852
|
time synchronization
Forum: Other
Last Post: LL-user
11-09-2025, 12:18 AM
» Replies: 1
» Views: 185
|
Series to Series Upgrade ...
Forum: Linux Lite Software Development
Last Post: berrywhitetiger
11-07-2025, 05:43 AM
» Replies: 4
» Views: 4,206
|
Regarding the minimum sys...
Forum: Installing Linux Lite
Last Post: valtam
11-02-2025, 11:41 PM
» Replies: 3
» Views: 426
|
Can't test LinuxLite 7.6 ...
Forum: Installing Linux Lite
Last Post: valtam
11-02-2025, 05:51 AM
» Replies: 23
» Views: 7,322
|
My worries
Forum: Installing Linux Lite
Last Post: stevef
11-01-2025, 03:44 PM
» Replies: 1
» Views: 237
|
nstall Updates - Could n...
Forum: Updates
Last Post: stevef
10-30-2025, 10:21 PM
» Replies: 5
» Views: 512
|
|
|
| LL 4.4 on Alienware 13 R2 and some things not working correctly |
|
Posted by: icedigger - 05-07-2019, 12:11 PM - Forum: Other
- Replies (4)
|
 |
I have a Alienware 13 R2 w/OLED screen, i7 6500u, 16GB DDR3, Intel HD 520, NVidia GTX 965M, Killer E2400 NIC, Killer 1535 Wifi/BT, and 2x M.2 NVME drives
It is running LL 4.4
The issues I have are the screen brightness I can't turn down.
The touchpad gets really strange as it jumps and freezes.
The battery time lasts under 2hrs but while in windows lasts almost 6-7hrs.
Attached system report.
|
|
|
| Clueless New (possibly) User says "Hey" |
|
Posted by: v-grimalkin - 05-06-2019, 10:42 PM - Forum: Introductions
- Replies (4)
|
 |
Hopefully, Linux Lite 4.4 will save another aging pc laptop. Downloaded 4.4 yesterday and tested from a usb stick, and I really love what I saw ... except my keyboard was acting up. (See post under "Bugs")
If there is a solution (already found one suggestion), I will avoid having to contribute more money to Microsoft or those extremely over-priced Apples. Hail, Eris!
|
|
|
| Keyboard error requiring Fn key during test run |
|
Posted by: v-grimalkin - 05-06-2019, 09:51 PM - Forum: Installing Linux Lite
- Replies (15)
|
 |
Downloaded Linux Lite 4.4 and ran test to make sure my old Acer Aspire 1 laptop/notebook could handle the os. Looks great, but when I tried typing, I found that half the keyboard spits numbers instead of letters. I determined I could get letters by pressing Fn key before the problem keys, but I want to find out if this bug is fixable before I install on my pc.
My notebook is 64 bit with 1 GB memory and Intel Atom CPU N570 @1.66 GHz x 2. Unfortunately, the bios have never been updated, since Windows 7 never helped me do so, and now all I have is Linux Mint Cinnamon 17.3.
This may not truly be a "bug", then, but a failure on the part of a tired old Acer. If so, I may have to resort to buying a new laptop. :-[
|
|
|
| Trouble installing Linux Lite on Dell Dimension 9200 |
|
Posted by: Cobey Williamson - 05-05-2019, 05:08 PM - Forum: Installing Linux Lite
- Replies (11)
|
 |
Hello all
I am trying to revive an old Dell Dimension 9200 desktop running Windows XP and install Linux Lite.
Specs:
Intel Core 2 Duo 2.4
2 gb RAM
256 ATI Radeon X1300 graphics card
2 320gb SATA drives
BIOS revision 2.5.3
After startup, F12 gets me to the USB boot option, after which I can get to Linux Lite Welcome screen. This is where things go awry.
Start Linux Lite:
blank screen with cursor flashing in upper left corner
Start Linux Lite in safe mode:
runs to "[1.668506] e1000e 0000:00:19.0 Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode"
ends at flashing cursor
Install Linux Lite now:
nothing; screen reverts to "No VGA cable"
Any suggestions?
|
|
|
| [SOLVED]cronjob for clamav |
|
Posted by: osamu.morozumi - 05-05-2019, 07:41 AM - Forum: Scripting and Bash
- Replies (4)
|
 |
Hi,
I'm trying to create a cron job for clamav to do a scan of the home directory once a week. I made this script in /etc/cron.weekly/ :
Code: #!/bin/sh
clamscan -r /home/osamu/ | grep FOUND >> /home/osamu/virus-scan-reports/virus-scan-report.txt
following instructions from https://askubuntu.com/questions/749129/h...daily-scan. I looked in crontab but can't see any evidence of a new job there:
Code: # m h dom mon dow user command
17 * * * * root cd / && run-parts --report /etc/cron.hourly
25 6 * * * root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.daily )
47 6 * * 7 root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.weekly )
52 6 1 * * root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.monthly )
#
Am I missing a step? Is there a better way to achieve automatic weekly scans?
**edit:
I deleted the script in /etc/cron.weekly and instead added this cronjob to /etc/crontab
Code: 0 18 * * SUN root rm -rf /var/log/clamav/freshclam.log
1 18 * * SUN root freshclam
2 18 * * SUN root clamscan -r -i / | grep FOUND >> /home/osamu/virus-scan-reports/virus-scan-report.txt
This should update the malware database and scan the entire system every sunday at 6pm and write it to a text file I hope. Have I done this correctly and is there a way to dynamically append the current date to the name of the virus-scan text file?
|
|
|
| Taskbar Icons Installing to Far Right |
|
Posted by: zaivala - 05-04-2019, 04:35 PM - Forum: Other
- Replies (7)
|
 |
I've tried to add my apps over on the left with the standard apps, as I can do in nearly every other distro I've used. They add to the far right, next to the clock. I can't move them. How do I fix this? I tried to attach a screenshot, but it's 1.7 Mb and the system has a 500 kb limit. This is on a Lenovo T430 laptop running Linux Lite 4.4.
|
|
|
| Firefox addons all fail |
|
Posted by: Tyrannocaster - 05-04-2019, 01:50 PM - Forum: Installing Software
- Replies (3)
|
 |
just upgraded my system like I do every week. Suddenly, NONE of my Firefox addons, extensions, plugins, whatever, work. So NoScript, Privacy Badger, none of my ad blockers, not even the visual themes I had work. When I try to reinstall any of them I get an error message that says "Download failed. Please check your connection." which is silly - the connection is fine; I mean, I'm posting this.
Has anybody else had issues with this? Firefox itself did not appear to upgrade during the upgrade process, but something is really wrong here. Current version is 66.
EDIT: looks like there are lots and lots of people with this problem: https://github.com/mozilla/addons/issues/978
Sure hope they do something about this soon!
EDIT 2: looks like it wasn't the system upgrade that did it, just Firefox itself messing up. Apparently this thing had a time switch that flipped and bingo; man, there are a LOT of unhappy people! https://news.ycombinator.com/item?id=19823465
|
|
|
|