| Welcome, Guest |
You have to register before you can post on our site.
|
| Online Users |
There are currently 1374 online users. » 0 Member(s) | 1370 Guest(s) Applebot, Baidu, Bing, Google
|
| Latest Threads |
after install Linux Lite ...
Forum: Installing Linux Lite
Last Post: val
6 hours ago
» Replies: 0
» Views: 21
|
Sem som quando reinicia
Forum: Other
Last Post: di0lh0
10 hours ago
» Replies: 0
» Views: 22
|
ASUS x206HA black screen ...
Forum: Installing Linux Lite
Last Post: Doceal
11-10-2025, 09:25 AM
» Replies: 6
» Views: 785
|
time synchronization
Forum: Other
Last Post: LL-user
11-09-2025, 12:18 AM
» Replies: 1
» Views: 153
|
Series to Series Upgrade ...
Forum: Linux Lite Software Development
Last Post: berrywhitetiger
11-07-2025, 05:43 AM
» Replies: 4
» Views: 4,095
|
Problem updating lite 7.6...
Forum: Updates
Last Post: valtam
11-06-2025, 10:11 PM
» Replies: 3
» Views: 273
|
Regarding the minimum sys...
Forum: Installing Linux Lite
Last Post: valtam
11-02-2025, 11:41 PM
» Replies: 3
» Views: 379
|
Can't test LinuxLite 7.6 ...
Forum: Installing Linux Lite
Last Post: valtam
11-02-2025, 05:51 AM
» Replies: 23
» Views: 7,120
|
My worries
Forum: Installing Linux Lite
Last Post: stevef
11-01-2025, 03:44 PM
» Replies: 1
» Views: 212
|
nstall Updates - Could n...
Forum: Updates
Last Post: stevef
10-30-2025, 10:21 PM
» Replies: 5
» Views: 443
|
|
|
| Network Card WiFi & power save |
|
Posted by: nvm - 04-06-2020, 07:53 AM - Forum: Network
- No Replies
|
 |
Good time of day
Is it just me when the network is idle, does the network adapter go into hibernation and no longer wake up?
solution:
edit file
/etc/NetworkManager/conf.d/default-wifi-powersave-on.conf
[connection]
wifi.powersave = 2
NM_SETTING_WIRELESS_POWERSAVE_DEFAULT (0): use the default value
NM_SETTING_WIRELESS_POWERSAVE_IGNORE (1): don't touch existing setting
NM_SETTING_WIRELESS_POWERSAVE_DISABLE (2): disable powersave
NM_SETTING_WIRELESS_POWERSAVE_ENABLE (3): enable powersave
source:
https://unix.stackexchange.com/questions...ermanently
|
|
|
| 3.8 Linux lite 32 Bits Shutdown error |
|
Posted by: ledwis - 04-05-2020, 11:44 AM - Forum: Other
- Replies (1)
|
 |
Well,
I installed this Linux version like year ago, and evrything was working fine.
Since last month, it takes several attempts to turn the computer on, It just start, loading and suddenly shutdown.
After some times 2 attempts, other 10 , it is working fine, all day if needed, So I do not know what happens, check the video please.
https://www.youtube.com/watch?v=3QiIMhyaByA
Do you have some idea / advice?
|
|
|
| On-screen indicator for "Num lock" and "Caps lock" |
|
Posted by: Paul74 - 04-05-2020, 08:07 AM - Forum: Other
- Replies (3)
|
 |
Hello,
I use a wireless keyboard and mouse (Rapoo E1050) and do not have indicator ligth for "num"lock" and "caps lock".
"Num locks" is correctly set during initialisation.
It could be useful to have an indicator on the screen.
Is there a small piece of software to get that ?
Thanks in advance.
Have a nice day.
|
|
|
| something is downloading? |
|
Posted by: jop - 04-04-2020, 08:14 PM - Forum: Other
- Replies (2)
|
 |
I'm not sure this is the correct sub-forum but here is the issue. I have a limited internet data plan and i would like to see exactly what is downloading and how much data it will use in real time, i would also like the option to pick and choose updates. Sometimes when i start my laptop and open my browser, a download of a size of 300mb starts to download, i cant see what this is. Ideally is like to be able to monitor every mb that linux lite downloads for updates/packages etc. I have moved from windows 7 and i am finding using this environment really refreshing however. Thanks.
|
|
|
| How to persist changes to the routing table? |
|
Posted by: arun jayapal - 04-04-2020, 03:30 PM - Forum: Network
- Replies (3)
|
 |
I am running linux lite 4.6 inside virtualbox. The machine has two network interfaces. I face the issue where the machine isn't able to connect to the internet. After investigation I found the issue to be with my routing table. No idea why this routing table got persisted in the first place.
Code: $ ip route
default via 192.168.175.1 dev enp0s8 onlink
10.0.2.0/24 dev enp0s3 proto kernel scope link src 10.0.2.15
192.168.175.0/24 dev enp0s8 proto kernel scope link src 192.168.175.18
After a bit of tinkering, I have a workaround. I modify the routing table as follows:
Code: $ ip route
default via 10.0.2.2 dev enp0s3
10.0.2.0/24 dev enp0s3 proto kernel scope link src 10.0.2.15
10.0.2.2 via 10.0.2.15 dev enp0s3
192.168.175.0/24 dev enp0s8 proto kernel scope link src 192.168.175.18
I am not sure why the above works.
However, I have to manually issue commands to setup the routing table to the state as shown above, after every reboot.
I have tried some ways to persist using the [tt]/etc/network/interfaces[/tt] file. The below file is an attempt at that:
Code: auto lo
iface lo inet loopback
auto enp0s3
iface enp0s3 inet dhcp
up /sbin/ip route add 10.0.2.2 via 10.0.2.15
up /sbin/ip route add default via 10.0.2.2
auto enp0s8
iface enp0s8 inet static
address 192.168.175.18
netmask 255.255.255.0
gateway 192.168.175.1
down /sbin/ip route del default
# up /sbin/ip route add 10.0.2.2 via 10.0.2.15
# down /sbin/ip route del default
# up /sbin/ip route add default via 10.0.2.2
But nothing worked.
Next I tried putting the commands in [tt]/etc/rc.local[/tt] that didn't work too.
What is the correct way to persist this?
|
|
|
|