Beta Testers wanted for Lite Series Upgrade - Click here to register interest


Welcome, Guest
You have to register before you can post on our site.

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 7,701
» Latest member: JefferyWeeft
» Forum threads: 9,422
» Forum posts: 62,165

Full Statistics

Online Users
There are currently 1823 online users.
» 2 Member(s) | 1818 Guest(s)
Baidu, Bing, Google, JefferyWeeft, StephynSiZ

Latest Threads
Series to Series Upgrade ...
Forum: Linux Lite Software Development
Last Post: berrywhitetiger
Today, 05:43 AM
» Replies: 4
» Views: 3,934
Problem updating lite 7.6...
Forum: Updates
Last Post: valtam
Yesterday, 10:11 PM
» Replies: 3
» Views: 113
time synchronization
Forum: Other
Last Post: LL-user
Yesterday, 12:48 PM
» Replies: 0
» Views: 52
Regarding the minimum sys...
Forum: Installing Linux Lite
Last Post: valtam
11-02-2025, 11:41 PM
» Replies: 3
» Views: 278
Can't test LinuxLite 7.6 ...
Forum: Installing Linux Lite
Last Post: valtam
11-02-2025, 05:51 AM
» Replies: 23
» Views: 6,682
My worries
Forum: Installing Linux Lite
Last Post: stevef
11-01-2025, 03:44 PM
» Replies: 1
» Views: 164
nstall Updates - Could n...
Forum: Updates
Last Post: stevef
10-30-2025, 10:21 PM
» Replies: 5
» Views: 339
grub-efi-amd64-signed pac...
Forum: Security & Bug Fixes
Last Post: stevef
10-30-2025, 10:54 AM
» Replies: 12
» Views: 8,102
Series 8 development News...
Forum: On Topic
Last Post: valtam
10-30-2025, 05:40 AM
» Replies: 0
» Views: 150
error while trying to upd...
Forum: Updates
Last Post: stevef
10-29-2025, 02:05 PM
» Replies: 1
» Views: 208

 
  Dual Booting LL 2.0 with other Ubuntu (14.04) based distros
Posted by: m654321 - 08-02-2014, 03:57 AM - Forum: Installing Linux Lite - Replies (29)

Like a few of you, I have tried to dual boot LL 2.0 with other closely related distros, i.e. based on the Ubuntu 14.04 - when I choose LL 2.0 from the choice presented on the screen at boot-up, I get an error message that says "a filename was expected". In contrast, the previous LL 1.0.8 version does dual boot smoothly with other distros. Apparently, from reading elsewhere on this forum, it appears the problem has arisen from version 2 being adapted to dual boot more smoothly with Windows 7 or XP which has consequently made it incompatible with dual boots with other distros. Personally, I prefer running XP or Win 7 in a virtual machine, rather than dual booting because (1) it's quicker (I don't have to reboot in order to change the OS), and (2) I have been able to share files using a network link between the linux host and the MS Windows guest.

I am a newbie to Linux (post Win XP) though am becoming increasingly familiar with the use of basic command line in the terminal. I wondered if  someone could give myself and other newbies easy step-by-step instructions on how to modify the relevant root files or other files in LL 2.0 so that it is compatible with other Ubuntu 14.04 based distros in a dual boot situation.  Would it be possible to do this before you pull the plug on LL 1.0.8 support in the next few days?  I would be so grateful to anyone able to do this... 

Kind regards
Mike

Print this item

  Window snapping
Posted by: skar - 08-01-2014, 08:41 PM - Forum: On Topic - Replies (2)

Hi all,

I've been trying to get the windows to tile and have that snap effect so that i can have two windows side by side. This feature is available in every other xfce distro like xubuntu, linux mint xfce, etc. Wondering why it does not work in LL and how to fix it. Here is a video on this too for xubuntu-
http://www.youtube.com/watch?v=s0rTIKM43ug

skar

Print this item

  Skype sign-in fails
Posted by: Colin23erk - 08-01-2014, 07:09 PM - Forum: Other - Replies (11)

Skype was ok until today -- now I get 

Quote: Skype can't connect

Happens on 2 netbooks using Lite 2 but  Works OK on both  dual booting to Windows

Tried deleting all Skype Files , uninstalling Skpe , re-installing it and a reboot .

Anybody else having problems using Skype on Lite 2

Colin

Print this item

  How to setup display panning
Posted by: anon222 - 08-01-2014, 04:30 PM - Forum: Tutorials - No Replies

This might be usefull for those with small screens.
If you follow this tutorial you can setup a virtual screen that is bigger than your physical screen.
So, it's like you have a zoomed in screen and you move from one corner to another when you position your mouse to the screen edge.
First test your display screen size, device, available resolutions and refresh rates.

Code:
xrandr
Output will be similar to this:
Code:
Screen 0: minimum 8 x 8, current 1920 x 1080, maximum 16384 x 16384
DVI-I-0 disconnected (normal left inverted right x axis y axis)
VGA-0 connected primary 1920x1080+0+0 (normal left inverted right x axis y axis) 477mm x 268mm
   1920x1080      60.0*+
   1680x1050      60.0 
   1280x1024      75.0     60.0 
   1152x864       75.0 
   1024x768       75.0     60.0 
   800x600        75.0     60.3 
   640x480        75.0     59.9 
DVI-I-1 disconnected (normal left inverted right x axis y axis)
HDMI-0 disconnected (normal left inverted right x axis y axis)
From this you can see I'm using VGA-0 as my primary display device and 1920x1080 resolution with 60Hz refresh rate.
If you are using laptop or netbook, your device will probably be LVDS.
Lets say I want to use 2100x2100 virtual screen size.
I can set this with
Code:
xrandr --output VGA-0 --rate 60 --mode 1920x1080 --fb 2100x2100 --panning 2100x2100
--rate sets refresh rate
--mode sets physical screen resolution, set it to your default screen resolution
ImportantBig Grinon't use resolutions or refresh rates your monitor don't support for your physical screen!
--output for me is VGA-0, change it to your device for example LVDS
--fb sets virtal screen size
--panning sets panning area
--fb and -- panning are tipically the same values
If I want to switch back I will use this
Code:
xrandr --output VGA-0 --rate 60 --mode 1920x1080 --fb 1920x1080 --panning 1920x1080
Note that this will not be saved to your configuration, so the next time you log it won't be applied.
If you want to save it you must create a file .xprofile in your home directory and make it executable.
Code:
printf "xrandr --output VGA-0 --rate 60 --mode 1920x1080 --fb 2100x2100 --panning 2100x2100" > ~/.xprofile
Code:
chmod +x ~/.xprofile
This never happened to me but just in case:
If OS fails to start GUI press f7 while it's booting up, login as root and delete .xprofile
rm -f ~/.xprofile

Print this item

  Linux Lite Licensed Logos
Posted by: valtam - 08-01-2014, 01:43 PM - Forum: Member Submitted Artwork - No Replies

This is the default artwork for Series 4.x and beyond.

I place these in the public domain with the understanding that they will be used responsibly and under the following License:

Attribution-NonCommercial-ShareAlike 4.0 International
https://creativecommons.org/licenses/by-nc-sa/4.0/

Credit: A huge thank you to [member=5059]whateverthing[/member] for providing the initial artwork and concepts.

Guidelines:

To maintain the highest possible image quality, all artwork should be edited as SVG's then exported as PNG's or JPG's.
The images you see in this thread are PNG's. If you require the masters (SVG's) please contact me via private message.

Lettering

Default font: Sans-Serif
Notes: The lettering should honour scaling proportions. The lettering should not be altered by width or height without honoring proportions.

Dark Grey Text - 'Storm Dust'
Hex:
#666666
RGB:
102, 102, 102

[Image: seXvAWH.png]

Light Grey Text - 'Cloud'
Hex:
#cccccc
RGB:
204, 204, 204

[Image: LW0Ivcj.png]

Backgrounds

Dark Background - 'Outer Space'
Hex:
#2d3436
RGB:
45, 52, 54

[Image: 03X55T4.png]

Light Background - 'Nevada'
Hex:
#636e72
RGB:
99, 110, 114

[Image: h2Jxfg2.png]

Feather

Main:
Golden Glow
Hex:
#ffe082
RGB:
255, 224, 130

Shaft:
White
Hex:
#f6f6f6
RGB:
246, 246, 246

[Image: vSeN39A.png]



Samples:

[Image: DtrHYZo.png]

[Image: gfXpZgt.png]

[Image: mUrMyB1.png]

[Image: ZMcSy7h.png]

[Image: Y9cDEUi.png]

Print this item

  HUGE THANK YOU TO FORUM HELPERS
Posted by: valtam - 08-01-2014, 12:52 PM - Forum: On Topic - Replies (4)

I just wanted to recognize some of the AMAZING people we have around here.

It's not my style to thank people individually because I'm afraid I would miss someone out, or make the lesser contributors sound less important, which they are far from.

So from me Jerry, thank you to all the people that are helping others out here, it's incredible to witness and makes every hour spent developing this OS well worth the effort. Your etiquette, demeanor and level of plain-english-detail in your replies does not go unnoticed.  You know who your are...

THANK YOU!!!

Print this item

  Main Menu: Help icon command
Posted by: Kirkx - 08-01-2014, 09:06 AM - Forum: On Topic - Replies (4)

I'm re-arranging the Main Menu (Alt+F2 - alacarte) and by mistake deleted all Help icons. I'm not sure if those icons are just links to the Help web page or to a file on the hard drive. If it's a file then I would appreciate if someone could post the command. Thanks.

[Image: xQZCyOR.png]

Print this item

  Format new drive with GParted ext4 Error
Posted by: DLX - 07-31-2014, 05:50 PM - Forum: Hard Drives and SSDs - Replies (16)

Hi all

I used Linux on and off for some years never really got my head round it so been dipping my toe back in with Linux Lite. Did use Mint for a bit but had driver problems.

Anyway to my question
So now I install new drive trying to format with GParted ext4 but get an error I make new drive a new partition table bsd that works then try as above ext4.

Drive size 160gb I did a search and see it's not a drive size problem ext4 goes up to TB.

Screen shot of error any help welcome


Quote:An Error Has Occurred!
Screenshot2.jpg.
You cannot upload that type of file. The only allowed extensions are doc,pdf,txt,docx,rtf.

i can't add screen shot I will hotlink

[Image: n3vmDQti]

Clean up

Print this item

  Moving a Window on screen
Posted by: Colin23erk - 07-31-2014, 05:34 PM - Forum: Other - Replies (4)

Hi
I am using a Netbook with 1024 x 600 screen

I am trying to Export a Gimp File in JPG

The Export Dialogue Window pops up OK but is not all visible on the screen . I cannot get at any of the buttons or the top of the Window to exit . I want to be able to move the window to a better location

I believe there are Keyboard shortcuts in xfce  but have had no luck getting any to work . Do they need installing or should they work out of the box . what shortcuts do I need to use

Colin

Print this item

  Updating LL
Posted by: arunp - 07-31-2014, 02:31 PM - Forum: Installing Linux Lite - Replies (4)

Dear Team,

When i updated the LL through install update, it asks for some of the options as shown in this attachment. What should a user do. Can we not avoid such dialogues and the updater takes care by itself as this will be a hindrance for the new users to0 adopt the LL or there should be a provision to give instructions to user what options to choose while update at the beginning of the update.

Arun   

[attachment deleted by admin, more than 25 days old]

Print this item