/fglt/ - Friendly GNU/Linux Thread

Previously: →

Welcome to /fglt/ - Friendly GNU/Linux Thread.
Users of all levels are welcome to ask questions about GNU/Linux and share their experiences.

*** Please be civil, notice the "Friendly" in every Friendly GNU/Linux Thread. ***

Before asking for help, please check our list of resources[*].

If you would like to try out GNU/Linux you can do one of the following:
0) Install a GNU/Linux distribution of your choice in a Virtual Machine.
1) Use a live image and to boot directly into the GNU/Linux distribution without installing anything.
2) Dual boot the GNU/Linux distribution of your choice along with Windows or Mac.
3) Go balls deep and replace everything with GNU/Linux.

* Resources:
$ man
$ info
$ help

Your friendly neighborhood search engine:
Try to use a search engine that respects your privacy such as searx, ixquick or startpage.

Check the Wikis (Most troubleshoots work for all distros.)
wiki.archlinux.org
wiki.gentoo.org

What distro should you choose?
wiki.installgentoo.com/index.php/Babbies_First_Linux

Break out of the botnet:
prism-break.org/en/categories/gnu-linux/

Learn more about Free Software:
gnu.org

Try GNU GuixSD:
gnu.org/software/guix/

/fglt/'s website:
fglt.nl/

/fglt/'s copypasta collection:
p.teknik.io/oJR7K

Friends:
- /t/'s GNU/Linux Games
- /t/'s GNU/Linux Training Videos
- /wg/'s GNU/Linux Wallpapers

Other urls found in this thread:

youtube.com/watch?v=EHCO6CRTLT8
hscripts.com/tutorials/linux-commands/echo.html
en.wikipedia.org/wiki/Ls
tldp.org/LDP/GNU-Linux-Tools-Summary/html/x11655.htm
en.wikipedia.org/wiki/Windows_Media_Audio
tldp.org/HOWTO/Bash-Prog-Intro-HOWTO-4.html
computerhope.com/unix/ucat.htm
computerhope.com/unix/ugrep.htm
debian.org/social_contract
debian.org/devel/constitution
debian-handbook.info/browse/stable/sect.release-lifecycle.html
github.com/rajshesa/wmafinder/trunk/wmafinder.sh
github.com/robbyrussell/oh-my-zsh/
twitter.com/NSFWRedditImage

thanks for the mono font fix

Nice digits.

>distro doesn't come with man
What the fuck is this shit

To the mod who deleted the previous thread:

I KNOW you are a winshill and occasionally dualboot debian and shill that distro.

Perhaps you should fuck off back to Sup Forums for good or stay contained in your 2 redundant fruity toddler toybattlestation autism thread instead.

calm down fagget

What distro is that?

Why would i limit my self to a clunky cli page when i can just look it up online and have way more features blatently more obvious and easier to use?

Online lookups will teach you stupid tech illiterate cancer while man/info documentation teaches you the correct usage.

There are man pages online, idiot

So the LITERAL manpage that is on an index online(80% of the time the devs provide it) is some how different from that which is on their repo?

Nope.

There are also man pages offline, which are more convenient.

# find all .wma files
ls *wma | grep wma

Manpages are bloat

You got me there.

# find all .wma files
echo $(ls *wma | grep wma)
FTFY

#!/bin/zsh
# find all .wma files
echo $(ls *wma | grep wma)

>youtube.com/watch?v=EHCO6CRTLT8

The Xfce CLI-only challenge:
1. Set a thunar bookmarks via the cli
2. Set a Xfwm theme via the cli
3. Set an Xfce-keyboard shortcuts with terminal


>Protip:
ALL are doable

Let's see how good Sup Forums REALLY is

>using a de
git gud

#!/bin/zsh

# Name: wmafinder
# Brief: Find all .wma files
# Author: user

echo $(ls *wma | cat | grep wma)

>too dumb to configure a DE
lol noob

...

Friendly reminder to vote for Donald J. Trump!

Why do newfags always ruin the mood?

>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>

>voting a mentally instable racist macfag

...

This would be better if the OP's hard drive were vlc'd.

>#!/bin/zsh
# Name: wmafinder
# Brief: Find all .wma files
# Author: Rajshesa Qumrio
# Pateron: www.pateron.com/Rajqum
# Twitter: @Rajqum
echo $(ls *wma | cat | grep wma)

Unfriendly reminder to vote for Donald J. Trump!
PS he uses a distribution of the linux kernel

There are actually people on github who have copyrighted dotfiles. Extreme cringe.

Puppy. The default behaviour seems to be to google search the target.
I can't tell whether the distro is mocking me, or genuinely trying to help.

Final version

#!/bin/zsh

# Name: wmafinder
# Brief: Find all .wma files
# Author: Rajshesa Qumrio
# Pateron: www.pateron.com/Rajqum
# Twitter: @Rajqum

# Copyright (c) 2016 Rajshesa Qumrio
# Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
# The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

echo `ls *wma | cat | grep wma`

You may want to reread the purpose of the distro you have chose

>>>/reddit/

>you can't run the linux kernel on mac

>backticks
kek

bumping from previous thread

anyone?

The Power of Open Source™

/boot - 100mb
/mango - 20gb
/ubum - 20gb
/home - rest

Make sure you use UUID's or things can get messy

You dont need swap like these granpa's are going to swarm this post with

new commit: make more portable by porting to python
--#!/bin/zsh
++#!/usr/bin/env python3

--echo `ls *wma | cat | grep wma`
++import os;
++os.system("echo `ls *wma | cat | grep wma`");

The power of autism.

Linux was built on autism.

#!/bin/zsh

# Name: wmafinder
# Brief: Find all .wma files
# Author: user
# Date: 11/08/2016

#MAIN CODE

#This line calls echo
#echo command prints the given input string to standard output.
#From hscripts.com/tutorials/linux-commands/echo.html

#Then calls ls
#In computing, ls is a command to list files in Unix and Unix-like operating systems
#From en.wikipedia.org/wiki/Ls

#Followed by the wildcard operator *
#* asterisk: This can represent any number of characters (including zero, in other words, zero or more characters).
#From tldp.org/LDP/GNU-Linux-Tools-Summary/html/x11655.htm

#In combination with the wildcard, we want to find wma files
#Windows Media Audio (WMA) is the name of a series of audio codecs and their corresponding audio coding formats developed by Microsoft.
#From en.wikipedia.org/wiki/Windows_Media_Audio

#We then combine this with a "bash pipe"
#Pipes let you use (very simple, I insist) the output of a program as the input of another one
#From tldp.org/HOWTO/Bash-Prog-Intro-HOWTO-4.html

#Into the cat program
#cat stands for "catenate." It reads data from files, and outputs their contents.
#From computerhope.com/unix/ucat.htm

#Followed by another pipe, into GREP
#grep, which stands for "global regular expression print," processes text line by line and prints any lines which match a specified pattern.
#From computerhope.com/unix/ugrep.htm

echo $(ls *wma | cat | grep wma) #Line we execute!

#Thanks for using my awesome script! Until next time!


FTFY

>no metacomments about how to read the comments
3/5 not good enough for man page yet.

Does i3 use tags? As in you can toggle one on and off?

What are the main fundamental differences between similar distros?
For example, what are the differences between CentOS and Debian?
Is GNOME any different on either of them?

package manager
level of SJW allowed

THAT.
IS.
IT.

>level of SJW allowed
whats a distro with the lowest?

The main difference is the package manager and the modifications (if any) they make to upstream software when they package it and then there's the base system and how it's setup, the defaults and other small things.

>Is GNOME any different on either of them?
If it's the same version it will be mostly the same on all distributions.

Hard to say. But there's one distro that's infested with SJW beyond danger level

yeah we all know about *****n

SJWS!! XD

Stop meme shouting, the villagers are getting nervous :-DDD

Reminder that Debian is the overall best distro:
1. Respects your freedom first and foremost, according to a social contract.
debian.org/social_contract
2. Allows you to knowingly opt-in to non-free software, if you want/need it.
3. Stable by default.
4. Allows you to knowingly opt-in to a rolling release, if you want/need it.
5. Has a constitution to give no single entity too much power over decisions.
debian.org/devel/constitution
6. One of the eldest and most influential distros to this day.

Here we go again...

I'm out, see you in the next thread.

fortune -o -i -m 'debian'

The good old days.

Does Debian come with a boot manager when installing?
I.E. Can I set up dual boot while installing Debian?

Reminder, No one gives a fuck and go shill elsewhere.

Fuck off

Yeah, it installs grub and has a thing called os-prober which finds other OS's partitions and adds them to grub. It's all done automatically on install, and can be easily configured afterwards.

>Stable by default.
KEK

>hibernation works
>resume just freezes everything and disables all peripherals forever
>all PM tests pass without problems, even core
>even with all modules disabled, and replacing init by /bin/bash, shit dies in resume
>freebsd doesn't detect my harddrive at all
What do? I tried everything I could think of to debug PM debugging, I tried my distro's irc channel but they didn't have anything to say. Google doesn't help. Is there anywhere else I can't ask if no-one here knows what I should be doing next?

When debiantards say 'stable', they mean 'doesn't change' and not 'doesn't break'.

probably dumb but how much swap do you have?

16GB (same as memory). Note that if I didn't have enough swap, I wouldn't be able to hibernate in the first place - the image would just be restored immediately with a message in the logs. Right now, the only log messages are get are 'success' across the board.

(You) forgot to mention the retarded package manager

>When debiantards say 'stable', they mean 'doesn't change' and not 'doesn't break'.
When a package changes, those changes are more likely to cause issues/bugs. By 'stable', I mean just that: stable. The packages aren't perfect or without bugs, but they typically have far less bugs compared to newer packages because they've gone through a long period of testing and usage. They also receive security updates for critical bugs.

source: debian-handbook.info/browse/stable/sect.release-lifecycle.html

Apt isn't amazing, but it's perfectly adequate. What's your problem with it?

sorry senpai, that's the only thing I could think of off the top of my head. Just in the slim chance but 16gb should be way more than enough.

l8r
Except for the people who do give a fuck
no

>people who do give a fuck
*person
you're the only one

Too bad the exact opposite is true. The 'stable' in debian means every package is a buggy unusable mess, and the bugs will never ever be fixed.

Parrot 3.2:
>This new version comes after a long while due to some buggy packages in the Debian Testing repository that we were forced to fix by our own (it’s about the latest GTK updates that broke the MATE interface).
This is the typical situation in debshit land: everything's broken and people have to fix that shit themselves because shit's NEVER EVER getting fixed.

what's a good music making program for linux

Whats the point in lying on the internet?

it's called trolling

He's right

You could literally google it.

Just ignore. There's no point in arguing with trolls.

audacity

thank you

He's right you know

Write a metalanguage for generating these comments. Then use it to document the metalanguage.

This thread is 99% disinformation memes and 1% actually helpful/informative. Fuck this shit I'm out.

So is there an election going on or something?

I don't know what an anguage is but I like that there's a metal version

>no Makefile
how do I even install this

miss nude Australia

huh? No way
What's really going on?

murkatronk is deciding what hole it wants to get fucked in for the next four years

just open your ~/.bashrc and add this line:
alias wmafinder='sudo curl github.com/rajshesa/wmafinder/trunk/wmafinder.sh | zsh'

you must be joking. I haven't heard anything but I live here

Write a curl wrapper that caches these scripts for performance and in case you are offline.

>1. Respects your freedom first and foremost, according to a social contract.
But people enable non-free repo anyway - people that are not running poorfag thinkpad in their basement.
>2. Allows you to knowingly opt-in to non-free software, if you want/need it.
See 1
>3. Stable by default.
Bullshit. Debian stable ships with decades old KDE bugs. It also has some distro specefic bugs in OpenSSL
>4. Allows you to knowingly opt-in to a rolling release, if you want/need it.
Running out of points?
>5. Has a constitution to give no single entity too much power over decisions.
>debian.org/devel/constitution
See picture
>6. One of the eldest and most influential distros to this day.
Debian adds NOTHING to the Linux community except for an SJW hugbox. It gave Linux absolutely ZERO new projects. What did debian ever do? Developing/contributing to BTRFS? Snapper? Kcraft/Kernel hotpatching? FreeDesktop? GNOME? KDE? Wayland? Mir? Snaps? Flatpak? LXC containers? OpenZFS? OBS? Convergence? KVM? High-end Xeon (or instanbul) support? GRO? Systemd-ui/kcm? KIWI?
What DID debian give back to the Linux community in all these years?

On that same note though, Slackware is even more trash. At least debian gave birth to the far superior Ubuntu, it has negative contribution to the Linux community.

Slackware gave nothing bad but unlike debian, it's there to bitch and moan about Systemd - that's ALL what Slackware is good for. Unlike debian, Slackware is THE bloat of the Linux community.

nope, dead serious

Is there a resource that lists hardware that works without proprietary software/drivers, and by which means?

crazy shit lol
I thought it was some local election or something

don't laugh, but this is actually the recommended way to install oh-my-zsh github.com/robbyrussell/oh-my-zsh/

Forgot the picture

it would be nice if you could stop aleady turning this thread into a meme shithole