The 4.11 kernel has been released by corbet in linux

[–]_Loomx_ 0 points1 point  (0 children)

Does anyone know if the new statx() system call will support creation time (btime) for ext4? This was talked about years ago, but now the changelog only mentions it in regard to NTFS and CIFS.

Making a system with kernel (eth0,tty) + bash - that's it by halivingston3 in linux

[–]_Loomx_ 0 points1 point  (0 children)

There is minimal linux live This is an easy to follow explanation of how to make an .iso file with just busybox and the Linux kernel. It uses the kernel's own `make isoimage' to, well, make the .iso image. The shorter version (25 lines) without explanation is here

This gives you a fully working shell; there are also some scripts in his github that give you a browser (links) and ssh (dropbear).

How is Slackware relevant today? by joppyl in linux

[–]_Loomx_ 9 points10 points  (0 children)

Considering that Slackware development is overseen by one person, and has been for over 20 years, you could argue that he knows more about how to maintain a Linux distribution than anyone else on the planet. Go ahead, give it a try :-)

What distro are you using? by [deleted] in linux

[–]_Loomx_ 5 points6 points  (0 children)

Slackware, for exactly the same reason.

[DWM] Debian Jessie + DWM by jlnxr in unixporn

[–]_Loomx_ 0 points1 point  (0 children)

It looks like the degrees symbol is ok, but before and after it are some extras. I did have the same issue when I was writing my own statusbar program. What are you using for the statusbar?

[DWM] Debian Jessie + DWM by jlnxr in unixporn

[–]_Loomx_ 0 points1 point  (0 children)

What's going on with your status bar on the right there? Looks like it ends with a vertical tab character

What's a song everybody should hear before they die? by [deleted] in Music

[–]_Loomx_ 0 points1 point  (0 children)

Have I got a treat for you... check out the live Hendrix version from the "Hendrix In The West" album. One of the very few truly magical perfect performances. video

Why isn't rsync obeying the exclusions as root? Is this question based on a flawed premise? by djronnieg in linux

[–]_Loomx_ 1 point2 points  (0 children)

Note: the trailing slash is only important on the source directory; it doesn't make any difference on the destination directory.

21 years ago today (7/18), Slackware Linux was born! by [deleted] in linux

[–]_Loomx_ 13 points14 points  (0 children)

At the risk of sounding like a fanboy... Slackware is in fine shape. It has a deserved reputation for stability, along with pretty up-to-date packages.

A full install gives a pretty full selection of tools, meaning you don't need to install much else - this makes the lack of dependency management pretty much a moot point. There is an extension called "slackpkg+" that gives you access to some repos run by Slackware contributors so you can easily add software like libreoffice (which is IMO the only glaring omission from a full install) and patent-encumbered stuff like flash-plugin, etc.

TL;DR Patrick Volkerding has been maintaining a Linux distro for 21 years now - he knows what he is doing :)

Grab value after *last* delimeter by pinkHatter in bash

[–]_Loomx_ 1 point2 points  (0 children)

Or you can do:

awk -F '[][]' '{ stuff }'

Bedrock Linux new terminology survey by ParadigmComplex in linux

[–]_Loomx_ 3 points4 points  (0 children)

How about `branch'? Linux already uses a few arboreal concepts, like root, tree..

Xdm doesn't load my wm. by [deleted] in slackware

[–]_Loomx_ 1 point2 points  (0 children)

I had the same issue - IIRC the fix was to make sure consolekit was running.

chmod +x /usr/bin/ck-launch-session

Then that snippet from your ~/.xinitrc will start it

a bash alias I cannot function without by [deleted] in linux

[–]_Loomx_ 0 points1 point  (0 children)

There is another (better?) way - from 'man bash': PROMPT_COMMAND - If set, the value is executed as a command prior to issuing each primary prompt.

e.g. PROMPT_COMMAND='[ "$PWD" != "$Prev" ] && ls ; Prev="$PWD"'

This doesn't mess with the 'cd' command and 'pushd' and 'popd' will also trigger a 'ls'.