| Welcome, Guest |
You have to register before you can post on our site.
|
| Forum Statistics |
» Members: 7,984
» Latest member: EmmaAlva
» Forum threads: 9,472
» Forum posts: 62,475
Full Statistics
|
| Online Users |
There are currently 2497 online users. » 0 Member(s) | 2493 Guest(s) Applebot, Baidu, Bing, Google
|
| Latest Threads |
Project Litening
Forum: Linux Lite Software Development
Last Post: valtam
04-06-2026, 05:35 AM
» Replies: 11
» Views: 899
|
Website forum links not w...
Forum: Suggestions and Feedback
Last Post: valtam
04-06-2026, 12:32 AM
» Replies: 5
» Views: 295
|
time synchronization
Forum: Other
Last Post: LL-user
04-03-2026, 03:13 PM
» Replies: 5
» Views: 1,530
|
Permissions on a secondar...
Forum: Other
Last Post: stevef
04-02-2026, 06:26 AM
» Replies: 9
» Views: 545
|
Some windows fail to rend...
Forum: Video Cards
Last Post: Crimson Plasma
03-31-2026, 04:19 PM
» Replies: 4
» Views: 332
|
Linux Lite 7.8 Final Rele...
Forum: Release Announcements
Last Post: Wirezfree
03-29-2026, 10:21 PM
» Replies: 16
» Views: 27,938
|
Accidentally Deleted fold...
Forum: Hard Drives and SSDs
Last Post: trinidad
03-13-2026, 11:38 PM
» Replies: 3
» Views: 319
|
Linux lite 6.0 doesn't wo...
Forum: Installing Linux Lite
Last Post: Dottor Octopus
03-03-2026, 05:14 PM
» Replies: 10
» Views: 1,265
|
xfce-panel fuzzy clock
Forum: Installing Software
Last Post: valtam
02-28-2026, 02:38 AM
» Replies: 1
» Views: 318
|
Unable to Mount External ...
Forum: Hard Drives and SSDs
Last Post: sqwuade
02-22-2026, 08:39 AM
» Replies: 7
» Views: 42,017
|
|
|
| HELP PLEASE: Pettocus.info on android phone |
|
Posted by: newtusmaximus - 03-18-2017, 01:13 AM - Forum: Off Topic
- Replies (4)
|
 |
Apologies for posting this here. Not sure where else to post
A popup of pettocus.info has started doing the rounds on android phones.It appears to be a redirecting malware. It gave a false virus infection warning requiring immediate updating of android. If this link was clicked presume some code was downloaded to the phones phishing etc.
In a family members case, it is unlikely that the phone has been previously backed up so all stored data address books photos etc are only on the phone and would be st if doing a factory had reset so.
QUESTION. If the phone date is now backed up to an externally plugged in hard drive or usb of sufficient space. and then the backed up data were to be scanned on my LL laptop, what could/should I use to vigorously scan it to ensure it is clean and will not recontaminate a freshly reset phone?
Thanks
|
|
|
| Worth upgrading to 64bit? |
|
Posted by: Brance - 03-17-2017, 09:03 PM - Forum: On Topic
- Replies (7)
|
 |
I'm running 32bit Linux Lite on a 10-year-old laptop. Not sure why I chose the 32bit installation - it was some time ago and not important for my purposes back then - but I'm now trying to get more performance out of the machine.
I've just upgraded the RAM from 2 to 4GB, and am now wondering whether I should upgrade the OS to the 64bit version, which poses a couple of questions:
- Is a 64bit upgrade likely to make much difference to performance (for example to better exploit the RAM upgrade)?
- Is there an easy way of upgrading, rather than starting from scratch? (as a relative Linux novice I'd rather take an easy option)
My processor is a Mobile AMD Sempron 3200+, which lscpu confirms is 64-bit capable.
Any thoughts / advice?
|
|
|
| Remote Access/Control Linux Lite 3.x |
|
Posted by: ralphy - 03-15-2017, 04:45 AM - Forum: Tutorials
- Replies (6)
|
 |
Here is a quick tutorial on how to configure x11vnc (VNC Server) for remote access/control to your Linux Lite 3.x PC via VNC client. (please consider adding it to Lite Manual)
A 30 seconds setup:
- Start by installing x11vnc. From Terminal:
Code: sudo apt install -y x11vnc
![[Image: sDhaq0S.png]](http://i.imgur.com/sDhaq0S.png)
- Next, let’s create a directory to store a file that will contain the password used for VNC authentication:
Code: sudo mkdir /etc/x11vnc
- And… well, create an encrypted password file and save it in /etc/x11vnc/. You will be prompted to type and verify the password:
Code: sudo x11vnc --storepasswd /etc/x11vnc/vncpwd
![[Image: 9fPza4M.png]](http://i.imgur.com/9fPza4M.png)
- Now we will create the systemd service file for the x11vnc service:
Code: gksu leafpad /lib/systemd/system/x11vnc.service
Copy & paste the code below into leafpad:
Quote:[Unit]
Description=VNC Server for X11
Requires=display-manager.service
After=display-manager.service
[Service]
Type=forking
ExecStart=/usr/bin/x11vnc -dontdisconnect -auth guess -forever -shared -noxdamage -repeat -rfbauth /etc/x11vnc/vncpwd -rfbport 5900 -bg -o /var/log/x11vnc.log
ExecStop=/usr/bin/killall x11vnc
Restart=on-failure
Restart-sec=5
[Install]
WantedBy=multi-user.target
![[Image: PrMxssx.png]](http://i.imgur.com/PrMxssx.png)
Save changes and close leafpad. Then copy /lib/systemd/system/x11vnc.service to /etc/systemd/system/
Code: sudo cp /lib/systemd/system/x11vnc.service /etc/systemd/system/
- Next, let’s edit /lib/systemd/system/graphical.target
Code: gksu leafpad /lib/systemd/system/graphical.target
Update graphical.target file content as shown below:
Quote:# This file is part of systemd.
#
# systemd is free software; you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation; either version 2.1 of the License, or
# (at your option) any later version.
[Unit]
Description=Graphical Interface
Documentation=man ystemd.special(7)
Requires=multi-user.target
Wants=display-manager.service x11vnc.service
Conflicts=rescue.service rescue.target
After=multi-user.target rescue.service rescue.target display-manager.service
AllowIsolate=yes
![[Image: ZHnHcHn.png]](http://i.imgur.com/ZHnHcHn.png)
Save changes and close leafpad. Then copy /lib/systemd/system/graphical.target to /etc/systemd/system/
Code: sudo cp /lib/systemd/system/graphical.target /etc/systemd/system/
- Reload services and enable the x11vnc service at boot time:
Code: sudo systemctl daemon-reload
sudo systemctl enable graphical.target
- Finally, either reboot Linux Lite or manually start x11vnc service:
Reboot:
or start x11vnc without rebooting:
Code: sudo systemctl start x11vnc.service
Add Firewall Rule to allow VNC traffic IN
Open Firewall Configuration, select the Rules tab and add a firewall rule as shown below
![[Image: lxTE0qx.png]](http://i.imgur.com/lxTE0qx.png)
Remotely accessing/controlling Linux Lite 3.x
From a client computer in your network, using a VNC client of your choice (Remmina, Ultra VNC, TightVNC, Chicken VNC, VNC Viewer, Screen Sharing, (you name it) enter the IP address of your Linux Lite box or its hostname (if there is local DNS resolution available in your network) and enjoy your hard work 
![[Image: opbzeWn.png]](http://i.imgur.com/opbzeWn.png)
![[Image: 89DbNR3.jpg]](http://i.imgur.com/89DbNR3.jpg)
For additional details on x11vnc configuration options such as file transfers, etc. read on x11vnc manual:
|
|
|
| get-iplayer v2.94 failed to download TV programme list today... |
|
Posted by: m654321 - 03-14-2017, 09:25 PM - Forum: Other
- Replies (7)
|
 |
This was the output today, from the terminal, when I typed get-iplayer.
I have version 2.94.
How do I fix it [img alt=:?:]https://forums.linuxmint.com/images/smilies/icon_question.gif[/img]
Mike
Code: mike@LMC-G750JS ~ $ get-iplayer
get_iplayer v2.94, Copyright (C) 2008-2010 Phil Lewis
This program comes with ABSOLUTELY NO WARRANTY; for details use --warranty.
This is free software, and you are welcome to redistribute it under certain
conditions; use --conditions for details.
INFO: Getting tv Index Feeds (this may take a few minutes)
WARNING: Failed to download programme schedule http://www.bbc.co.uk/bbcalba/programmes/schedules/last_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/bbcalba/programmes/schedules/last_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/bbcalba/programmes/schedules/last_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/bbcalba/programmes/schedules/this_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/bbcalba/programmes/schedules/this_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/bbcalba/programmes/schedules/this_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/bbcfour/programmes/schedules/last_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/bbcfour/programmes/schedules/last_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/bbcfour/programmes/schedules/last_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/bbcfour/programmes/schedules/this_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/bbcfour/programmes/schedules/this_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/bbcfour/programmes/schedules/this_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/bbcnews/programmes/schedules/last_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/bbcnews/programmes/schedules/last_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/bbcnews/programmes/schedules/last_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/bbcnews/programmes/schedules/this_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/bbcnews/programmes/schedules/this_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/bbcnews/programmes/schedules/this_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/bbcone/programmes/schedules/hd/last_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/bbcone/programmes/schedules/hd/last_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/bbcone/programmes/schedules/hd/last_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/bbcone/programmes/schedules/hd/this_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/bbcone/programmes/schedules/hd/this_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/bbcone/programmes/schedules/hd/this_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/bbcone/programmes/schedules/ni_hd/last_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/bbcone/programmes/schedules/ni_hd/last_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/bbcone/programmes/schedules/ni_hd/last_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/bbcone/programmes/schedules/ni_hd/this_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/bbcone/programmes/schedules/ni_hd/this_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/bbcone/programmes/schedules/ni_hd/this_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/bbcone/programmes/schedules/scotland_hd/last_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/bbcone/programmes/schedules/scotland_hd/last_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/bbcone/programmes/schedules/scotland_hd/last_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/bbcone/programmes/schedules/scotland_hd/this_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/bbcone/programmes/schedules/scotland_hd/this_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/bbcone/programmes/schedules/scotland_hd/this_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/bbcone/programmes/schedules/wales_hd/last_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/bbcone/programmes/schedules/wales_hd/last_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/bbcone/programmes/schedules/wales_hd/last_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/bbcone/programmes/schedules/wales_hd/this_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/bbcone/programmes/schedules/wales_hd/this_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/bbcone/programmes/schedules/wales_hd/this_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/bbcparliament/programmes/schedules/last_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/bbcparliament/programmes/schedules/last_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/bbcparliament/programmes/schedules/last_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/bbcparliament/programmes/schedules/this_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/bbcparliament/programmes/schedules/this_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/bbcparliament/programmes/schedules/this_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/bbcthree/programmes/schedules/last_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/bbcthree/programmes/schedules/last_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/bbcthree/programmes/schedules/last_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/bbcthree/programmes/schedules/this_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/bbcthree/programmes/schedules/this_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/bbcthree/programmes/schedules/this_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/bbctwo/programmes/schedules/england/last_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/bbctwo/programmes/schedules/england/last_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/bbctwo/programmes/schedules/england/last_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/bbctwo/programmes/schedules/england/this_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/bbctwo/programmes/schedules/england/this_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/bbctwo/programmes/schedules/england/this_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/bbctwo/programmes/schedules/hd/last_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/bbctwo/programmes/schedules/hd/last_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/bbctwo/programmes/schedules/hd/last_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/bbctwo/programmes/schedules/hd/this_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/bbctwo/programmes/schedules/hd/this_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/bbctwo/programmes/schedules/hd/this_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/bbctwo/programmes/schedules/ni/last_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/bbctwo/programmes/schedules/ni/last_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/bbctwo/programmes/schedules/ni/last_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/bbctwo/programmes/schedules/ni/this_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/bbctwo/programmes/schedules/ni/this_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/bbctwo/programmes/schedules/ni/this_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/bbctwo/programmes/schedules/scotland/last_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/bbctwo/programmes/schedules/scotland/last_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/bbctwo/programmes/schedules/scotland/last_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/bbctwo/programmes/schedules/scotland/this_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/bbctwo/programmes/schedules/scotland/this_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/bbctwo/programmes/schedules/scotland/this_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/bbctwo/programmes/schedules/wales/last_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/bbctwo/programmes/schedules/wales/last_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/bbctwo/programmes/schedules/wales/last_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/bbctwo/programmes/schedules/wales/this_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/bbctwo/programmes/schedules/wales/this_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/bbctwo/programmes/schedules/wales/this_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/cbbc/programmes/schedules/last_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/cbbc/programmes/schedules/last_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/cbbc/programmes/schedules/last_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/cbbc/programmes/schedules/this_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/cbbc/programmes/schedules/this_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/cbbc/programmes/schedules/this_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/cbeebies/programmes/schedules/last_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/cbeebies/programmes/schedules/last_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/cbeebies/programmes/schedules/last_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/cbeebies/programmes/schedules/this_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/cbeebies/programmes/schedules/this_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/cbeebies/programmes/schedules/this_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/s4c/programmes/schedules/last_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/s4c/programmes/schedules/last_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/s4c/programmes/schedules/last_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/s4c/programmes/schedules/this_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/s4c/programmes/schedules/this_week.xml
WARNING: Failed to download programme schedule http://www.bbc.co.uk/s4c/programmes/schedules/this_week.xml
Anyone else having this problem [img alt=:?:]https://forums.linuxmint.com/images/smilies/icon_question.gif[/img]
How can it be resolved [img alt=:?:]https://forums.linuxmint.com/images/smilies/icon_question.gif[/img]
|
|
|
| Internet isn't working |
|
Posted by: j.purohit198 - 03-14-2017, 02:36 PM - Forum: Network
- Replies (2)
|
 |
I have installedlatest linux lite yesterday and now i cant connect to internet.i tried using useb tethering but no luck.please help.
Sent from my Redmi Note 3 using Tapatalk
|
|
|
| Rambox – A Messaging and Emailing App That Combines 73 Apps Into One |
|
Posted by: valtam - 03-14-2017, 06:09 AM - Forum: On Topic
- Replies (7)
|
 |
Interested to hear the communities thoughts on this application. One application that handles both email and all the popular messaging apps.
![[Image: Rambox-Messaging-Emailing-App.png]](https://www.fossmint.com/wp-content/uploads/2017/03/Rambox-Messaging-Emailing-App.png)
![[Image: Rambox.png]](https://www.fossmint.com/wp-content/uploads/2017/03/Rambox.png)
Rambox is a free messaging and emailing app created using Electron which is composed of various popular web applications to provide users with the ability to add as many web services as are supported in the same place and to use multiple accounts by way of duplicate apps.
Rambox is available for Linux, Windows, and Mac and at the moment, supports 73 web services including WhatsApp, Messenger, Viber, Telegram, Google Hangouts, Gmail, etc., and users are welcome to manually add services that aren’t bundled in the latest shipment.
It has a simple bright interface with a tabs bar at the top of its UI to which added apps can be aligned either to the left or to the right. It comes with a handful of customization options including show notifications, mute all sounds, display read counter.
Features in Rambox
Unity notifications for added web services with desktop notification support
Account synchronization across multiple computers
Master password
Menu access from the system tray
Ability to manually add services of your choice
Proxy configuration support to bypass network censorship
Notification count on icons of individual services
Support for the addition of custom code
Reorder icons in the tab bar and group services into two
Long term support (as far back as Ubuntu 12.04)
|
|
|
| How to Get LinuxLite desktop and menu |
|
Posted by: humdinger70 - 03-12-2017, 07:59 AM - Forum: Installing Linux Lite
- Replies (9)
|
 |
I recently changed from Linux Mint to Linux Lite, installing from a 3.0 CD/DVD I had lying around. I installed it and did the updates and upgrade, so I now have LL 3.2. That's not the problem.
The problem I'm having is that I get the XFCE desktop and panel. I want to get the Linux Lite desktop and panel (like I saw on the desktop when I did the initial install). I'm not seeing the option on how to do that in any of the menus (or I saw it and didn't recognize it).
Help please.
|
|
|
| Deluge error |
|
Posted by: torolite35 - 03-11-2017, 04:22 PM - Forum: Installing Software
- Replies (1)
|
 |
Good afternoon
I have a problem with Deluge. I got it. I downloaded a couple of things and now it gives me error in all the files that I put. What happen?
Thank you
|
|
|
|