LinuxQuestions.org
Review your favorite Linux distribution.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Microlinux / MLED
User Name
Password
Microlinux / MLED This forum is for the discussion of MLED (Microlinux Enterprise Desktop).

Notices


Reply
  Search this Thread
Old 08-01-2016, 04:00 AM   #1
kikinovak
MLED Founder
 
Registered: Jun 2011
Location: Montpezat (South France)
Distribution: CentOS, OpenSUSE
Posts: 3,453

Rep: Reputation: 2154Reputation: 2154Reputation: 2154Reputation: 2154Reputation: 2154Reputation: 2154Reputation: 2154Reputation: 2154Reputation: 2154Reputation: 2154Reputation: 2154
MLED 14.2 has been released!


Hello everybody,

MLED 14.2 has just been released.

http://www.microlinux.eu/news.php

Get it while it's hot.

Niki
 
Old 08-02-2016, 12:33 PM   #2
Bertman123
Member
 
Registered: Jun 2010
Distribution: Slackware Current 64 bit KDE 5
Posts: 380

Rep: Reputation: 77
Awesome, thanks!
 
Old 08-05-2016, 10:07 AM   #3
BCarey
Senior Member
 
Registered: Oct 2005
Location: New Mexico
Distribution: Slackware
Posts: 1,639

Rep: Reputation: Disabled
Great news, I've been waiting for this.

I think there is an error in your documentation for 14.2 64 bit.

Code:
Edit 
/etc/slackpkg/mirrors
 and choose a Slackware mirror according to your geographical 
location, for example
:
# /etc/slackpkg/mirrors
...
# GERMANY (DE)
ftp://ftp.fu-berlin.de/unix/linux/slackware/slackware-14.2/
...
On a 64-bit system
:
# /etc/slackpkg/mirrors
...
# GERMANY (DE)
ftp://ftp.fu-berlin.de/unix/linux/slackware/slackware64-14.1/
...
As you can see, the 64 bit version says to point to a 14.1 rather than 14.2 repository.

Thanks again,
Brian
 
Old 08-10-2016, 01:38 AM   #4
kikinovak
MLED Founder
 
Registered: Jun 2011
Location: Montpezat (South France)
Distribution: CentOS, OpenSUSE
Posts: 3,453

Original Poster
Rep: Reputation: 2154Reputation: 2154Reputation: 2154Reputation: 2154Reputation: 2154Reputation: 2154Reputation: 2154Reputation: 2154Reputation: 2154Reputation: 2154Reputation: 2154
Quote:
Originally Posted by BCarey View Post
Great news, I've been waiting for this.

I think there is an error in your documentation for 14.2 64 bit.

Code:
Edit 
/etc/slackpkg/mirrors
 and choose a Slackware mirror according to your geographical 
location, for example
:
# /etc/slackpkg/mirrors
...
# GERMANY (DE)
ftp://ftp.fu-berlin.de/unix/linux/slackware/slackware-14.2/
...
On a 64-bit system
:
# /etc/slackpkg/mirrors
...
# GERMANY (DE)
ftp://ftp.fu-berlin.de/unix/linux/slackware/slackware64-14.1/
...
As you can see, the 64 bit version says to point to a 14.1 rather than 14.2 repository.

Thanks again,
Brian
Fixed. Thanks for reporting.

Cheers,

Niki
 
Old 08-10-2016, 05:59 PM   #5
PROBLEMCHYLD
Senior Member
 
Registered: Apr 2015
Posts: 1,201

Rep: Reputation: Disabled
I'm not sure what part of your scripts does it, but how do I stop MLED from downgrading my Kernel 4.4.16 to 4.4.14? I have manually upgraded my Kernel and some command downgrades when I'm using MLED. It happens around the mark in the screenshot

Last edited by PROBLEMCHYLD; 12-28-2016 at 05:40 PM.
 
Old 08-11-2016, 10:57 AM   #6
gegechris99
Senior Member
 
Registered: Oct 2005
Location: France
Distribution: Slackware 15.0 64bit
Posts: 1,161
Blog Entries: 5

Rep: Reputation: 392Reputation: 392Reputation: 392Reputation: 392
@PROBLEMCHYLD

I currently have no access to my computer (holidays)

A quick answer to your query: script mledauto.sh will automatically upgrade Slackware packages. Somehow slackpkg+ will replace your own kernel packages (4.4.16) with the official packages (4.4.14). To avoid this behaviour, you can blacklist kernel packages in /etc/slackpkg/blacklist. There should be comments in this file to help you configure it to your needs.
 
Old 09-07-2016, 04:13 PM   #7
PROBLEMCHYLD
Senior Member
 
Registered: Apr 2015
Posts: 1,201

Rep: Reputation: Disabled
@ kikinovak

Can you add the necessary lines to your Virtual Machine Manager 1.4.0 package
Code:
Automatic startup

If you want to have the libvirt daemon started automatically, add the following section to /etc/rc.d/rc.local:

# start libvirt
if [ -x /etc/rc.d/rc.libvirt ]; then
    /etc/rc.d/rc.libvirt start
fi 

Make sure /etc/rc.d/rc.libvirt is executable.
 
Old 09-09-2016, 04:49 PM   #8
kikinovak
MLED Founder
 
Registered: Jun 2011
Location: Montpezat (South France)
Distribution: CentOS, OpenSUSE
Posts: 3,453

Original Poster
Rep: Reputation: 2154Reputation: 2154Reputation: 2154Reputation: 2154Reputation: 2154Reputation: 2154Reputation: 2154Reputation: 2154Reputation: 2154Reputation: 2154Reputation: 2154
Quote:
Originally Posted by PROBLEMCHYLD View Post
@ kikinovak

Can you add the necessary lines to your Virtual Machine Manager 1.4.0 package
Code:
Automatic startup

If you want to have the libvirt daemon started automatically, add the following section to /etc/rc.d/rc.local:

# start libvirt
if [ -x /etc/rc.d/rc.libvirt ]; then
    /etc/rc.d/rc.libvirt start
fi 

Make sure /etc/rc.d/rc.libvirt is executable.
This file is meant to be edited by hand, with various third-party services added by the user. For example, here's the rc.local on my LAN server:

Code:
# Squid
if [ -x /etc/rc.d/rc.squid ]; then
  /etc/rc.d/rc.squid start
fi

# Start libvirt:
if [ -x /etc/rc.d/rc.libvirt ]; then
  /etc/rc.d/rc.libvirt start
fi
And here's the same file on a public server I manage:

Code:
# Start Icecast server
if [ -x /etc/rc.d/rc.icecast ]; then
  /etc/rc.d/rc.icecast start
fi

# Start MPD server
if [ -x /etc/rc.d/rc.mpd ]; then
  /etc/rc.d/rc.mpd start
fi

# Start Postgrey mail filter 
if [ -x /etc/rc.d/rc.postgrey ]; then
  /etc/rc.d/rc.postgrey start
fi

# Start Postfix mail server 
if [ -x /etc/rc.d/rc.postfix ]; then
  /etc/rc.d/rc.postfix start
fi

# Start Dovecot mail server 
if [ -x /etc/rc.d/rc.dovecot ]; then
  /etc/rc.d/rc.dovecot start
fi

# Chip drivers
/sbin/modprobe coretemp
/usr/bin/sensors -s
You see why it can't be packaged?

PS: your initial message should have figured in a separate thread, IMHO.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
LXer: MLED 14.1 MATE released LXer Syndicated Linux News 0 12-22-2013 11:33 AM
LXer: MLED 14.1 Xfce released LXer Syndicated Linux News 0 12-21-2013 06:21 PM
[ANN] MLED 14.1 KDE released kikinovak Slackware 5 12-04-2013 07:49 PM
MLED 14.0 released! kikinovak Slackware 16 06-09-2013 09:04 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Microlinux / MLED

All times are GMT -5. The time now is 02:29 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration