Support Requests - CLICK TO READ BEFORE POSTING



Posted by: ealgiros
06-19-2018, 11:37 PM
Forum: Installing Software
- No Replies

It happened twice:

1) first when the computer had LL 3.4 and installed the latest updates.

2) Second, it started to happen after installing the latest updates for a new installation of LL 3.8 (on the same computer)

  • I installed LL 3.8 from scratch (all fine)
    But, after I installed the latest updates... most of the applications stopped launching anymore.(even LL 'Install Updates')
    So, I searched the web and found the following solution: run from terminal

Code:
sudo apt remove virtualbox-guest*


source:

https://forums.linuxmint.com/viewtopic.php?t=266710

Hope it helps



Posted by: kissbaby3
06-19-2018, 08:58 PM
Forum: On Topic
- Replies (3)

i installed my linux lite from version 3.8 to 4.0 on 6-19-18, so far everything works . i did a clean install, even learned to increase the start up time , by purging the Vbox thing, i will keep this post as open, cuz i am still playing with it , i did all the updates first. so any suggestions might be helpful to me and others here who just installed 4.0.



Posted by: polarbear
06-19-2018, 05:20 PM
Forum: Other
- Replies (1)

If you have the Atheros AR3012 (shipped in some lenovo laptops like the z50 that i have) and linux lite 4.0 or ubuntu 18.04, you might have a problem with the adapter, and if you use the command dmesg you are going to get this error:
[sup]bluetooth: hci0: don't support firmware rome 0x31010000[/sup]

I found this solution that solve that issue...

1. Add the ukuu repo to your system:
[sup]sudo add-apt-repository ppa:teejee2008/ppa && sudo apt update[/sup]

2. Install ukuu:
[sup]sudo apt install ukuu[/sup]

3. Install the kernel 4.16.9 with ukuu:
[sup]sudo ukuu --install v4.16.9 [/sup]

4. And finally reboot

The problem with the AR3012 is caused by the kernel 4.15.0 shipped with Ubuntu 18.04 and linux lite 4.0 and the unique kernel i found  that solve that issue is the 4.16.9

pd: i'm not an english speaker so maybe the instrutions or the grammar is bad, sorry for that



Posted by: atpersian
06-19-2018, 05:18 PM
Forum: Suggestions and Feedback
- No Replies

Dear All
i try install new software from lite software . and it install but in final get error like bellow attached.
some expert person know why it happen??
B R



Posted by: kpanic
06-18-2018, 07:01 PM
Forum: Suggestions and Feedback
- Replies (9)

Well, I tried to donate via PayPal but instantly it began to ask all kinds of personal information,
not just name and address, but unnecessary stuff about me.

If I have understood correctly the idea of PayPal being an 'easy way to pay',
then let it be. If they want to get rid of users who have used their services for
20 years - this is the way to do it.

I expected a few clicks, not half of a biography



Posted by: kpanic
06-18-2018, 03:49 PM
Forum: Tutorials
- Replies (2)

We all know, that Linux Lite is very fast Operating System and does not require modern
hardware. To get even more speed out of the system, there are very many tuning possibilities
and one of them is tuning some basic disk input/output operations.

This short HOWTO is for those users who use ext4 filesystem but there are many possibilities
for those users who use other filesystems too and if I have time, I will try to write more later.

One of the easiest ways to get more speed out of your disks is tuning the mount options.
This can be done by editing the /etc/fstab file.
You can see which options are currently in use by commanding (in Terminal window)

Code:
mount | grep ext4

Not all of the options applied are visible this way but I'm sure you got the idea.

You may try these options first before applying them to the /etc/fstab file.
If you have more than one partitions, for example a separate /boot or /home
partition, then you may as well try using one of them first. For example, let's assume that
you have a separate /home partition in device /dev/sda2. Then you may try this ( and this is SAFE
if you do exactly as I tell here. And use the correct device name and don't make typos Smile
(To find out which device name is your /home, just examine the output of that 'mount | grep ext4'  command).

First enter a root session, so that you don't have to type 'sudo' all the time. So, command:
Code:
sudo su

Then unmount the /home partition ( if it is /dev/sda2 ) by commanding:
Code:
umount /dev/sda2

And now the speed-UP!
Code:
mount -t ext4 -o defaults,noiversion,auto_da_alloc,noatime,\ errors=remount-ro,commit=20,inode_readahead_blks=32,delalloc,barrier=0 /dev/sda2 /home

Note that I could not write the whole command to just one line, so there is a '\' character, which tells the shell,
that the command will continue on the next line.

If everything went fine and you did not receive any messages, you may check the dmesg output like this:
Code:
dmesg | tail -4
and you should see the filesystem driver's message about this mount.

To mount your /home back with the defaults, command:
Code:
umount /home && mount /home 2>&1

Of course this did not demonstrate how it actually speeds up reading and writing to disk but you may take time
to copy your /home full of files using the default mount options and the tuned options if you like to.
However these kinds of tunings show their full power just when they are applied to everyday use and especially
to the / partition - since the root partition is read and written most of the time.

Please don't expect too much, this (and similar methods) won't turn your ol'PC to a super-computer Smile
But you may see some difference after using the system for a while.

To apply these settings to your /etc/fstab, you need to edit that file and I suggest that you create a backup
copy of the file first:
Code:
cp /etc/fstab /etc/fstab.bak
(and why not take a copy of it into a USB stick too...)

Then open your /etc/fstab with a text editor (nano /etc/fstab) and replace the old options, which are between
the text 'ext4' and the two numbers in the end. Here is an example from my /etc/fstab
(The / partition entry)
# / was on /dev/sda2 during installation
UUID=1e6ae380-25c3-40dc-b7ea-39d82488615a  /  ext4
Code:
defaults,noiversion,auto_da_alloc,acl,user_xattr,noatime,errors=remount-ro,commit=20,inode_readahead_blks=64,delalloc
0  1

DO NOT APPLY these options into any others entries than ext4 !!
(Other filesystems have other mount options).

And every entry must remain in ONE line!
Lines beginning with a '#' character don't matter. You may write anything on those lines.

Again, it is just one line, but it broke to many when I wrote it here...
But as you see, the mount options are between the text 'ext4' and the two numbers in the end of the line.

When these options are written to the fstab file, they won't take effect until the filesystem is unmounted
and remounted again (or just remounted or just rebooted the computer).

WARNING: I cannot take responsibility of any data loss or similar. This small HOWTO is written for
those, who either have just made a fresh installation of Linux Lite and want to try this without loosing
more than maybe a new fresh installation. Or for those who can take responsibility of their own typos
and/or other mistakes.

These are everyday actions for system administrators and there is no 'magic' involved.
And by the way, nothing is free when it comes to performance and/or memory usage.
These mount options may use a bit more RAM memory but as you know, RAM is much faster
than disk - so in my opinion it is a fair deal if there is some extra RAM which just sits there unused
during everyday use of the computer.

Have fun - and please ask if you have questions..



Posted by: Deepak Bhandari
06-17-2018, 12:54 PM
Forum: Video Cards
- No Replies

Hi,

I am using Compaq NX 6110 laptop, which is an old celeron, with 1Gb RAM. I am noticing video lag. Means, the video does not stream smoothly, and gives a delayed frames. In other words it does not give me minimum 26f/s video. Though the audio is loading smoothly.

Browser user is Mozilla Firefox. Linux Lite version 3.0.

Can you help me to use this old laptop for video streaming?

Regards,
Deepak



Posted by: Hoffer77
06-17-2018, 08:18 AM
Forum: On Topic
- Replies (3)

Hello guys I just want to ask how do I save my terminal preferences? Like the type of text and color.
can someone send me link how to do that?
Kind Regards.



Posted by: hackneydave
06-17-2018, 01:26 AM
Forum: Introductions
- Replies (6)

Thanks Jerry and team for your great work on LL. I've got a 13-yr old Dell Latitude D610; spent £20 on RAM upgrade and now have a fast and very stable machine. I'm a volunteer for AbilityNet ITCanWork in the UK so recommending Linux Lite for clients with older machines and no need for proprietary software or drivers. All best, David



Posted by: JanetBiggar
06-16-2018, 05:22 PM
Forum: Installing Linux Lite
- Replies (5)

I’ve used systemback to create a sblive USB for a chromebook I converted as I thought this would be a good choice rather than taking up some of the very limited space creating a restore point on this ex-chromebook (16 GB SSD).

After doing so I have a few questions:
1) first off when I created it I first clicked on convert to ISO and now I have a file in my /home folder that is an ISO that apparently I could burn to a CD/DVD. Since this was a mistake I wanted to delete/trash this ISO, however it will not permit me to do so...says I’m lacking permission.

Any idea how I can get rid of this file?

2) I then properly created a live USB of the system and from seeing other posts I believe I can use this USB to load LL 3.8 on to a different computer.  What I was wondering is if there is a link providing me with a step by step (detailed please) of what I need to do when I boot from this USB on a new computer where I want to install LL 3.8?

I did fire it up this live USB once on the chromebook when I had to reinstall the chrome OS in order to set the SeaBIOS as default, but very early in the process it started asking something I didn’t understand so I bailed and went back to my LL 3.2 live USB, updated then upgraded back to 3.8

This latter step wasn’t too long, but it seems perhaps using the sblive USB might be quicker...

Can anyone suggest the steps or send me a link to do so as I have been unable to find detailed steps.