[Boards: 3 / a / aco / adv / an / asp / b / bant / biz / c / can / cgl / ck / cm / co / cock / d / diy / e / fa / fap / fit / fitlit / g / gd / gif / h / hc / his / hm / hr / i / ic / int / jp / k / lgbt / lit / m / mlp / mlpol / mo / mtv / mu / n / news / o / out / outsoc / p / po / pol / qa / qst / r / r9k / s / s4s / sci / soc / sp / spa / t / tg / toy / trash / trv / tv / u / v / vg / vint / vip / vp / vr / w / wg / wsg / wsr / x / y ] [Search | Free Show | Home]

/FGLT/ - Friendly GNU/Linux Thread

This is a blue board which means that it's for everybody (Safe For Work content only). If you see any adult content, please report it.

Thread replies: 313
Thread images: 34

File: weepman.jpg (272KB, 1024x768px) Image search: [Google]
weepman.jpg
272KB, 1024x768px
Previous thread: >>60056167

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 macOS.
3) Go balls deep and replace everything with GNU/Linux.

Resources:
Your friendly neighborhood search engine (try to use a search engine that respects your benis such as searx, ixquick or startpage).

$ man %command%
$ info %command%
$ help %command%
$ %command% -h
$ %command% --help

Don't know what to look for?
$ apropos %something%

Check the Wikis (most troubleshoots work for all distros):
https://wiki.archlinux.org
https://wiki.gentoo.org

/g/'s Wiki on GNU/Linux:
https://wiki.installgentoo.com/index.php/Category:GNU/Linux

>What distro should I choose?
https://wiki.installgentoo.com/index.php/Babbies_First_Linux

>What are some cool programs?
https://wiki.archlinux.org/index.php/list_of_applications
https://directory.fsf.org/wiki/Main_Page

>What are some cool terminal commands?
http://www.commandlinefu.com/
http://bropages.org/

>Where can I learn the command line?
http://mywiki.wooledge.org/BashGuide
http://linuxcommand.org/tlcl.php
http://www.grymoire.com/Unix/

>Where can I learn more about Free Software?
https://www.gnu.org/philosophy/philosophy.html

>How to break out of the botnet?
https://prism-break.org/en/categories/gnu-linux

/t/'s GNU/Linux Games: >>>/t/749768
/t/'s GNU/Linux Training Videos: >>>/t/713097

/fglt/'s website and copypasta collection:
http://fglt.nl && https://p.teknik.io/wJ9Zy
>>
File: nurg.jpg (444KB, 1024x768px) Image search: [Google]
nurg.jpg
444KB, 1024x768px
>>60062684
>>
File: terry-davis.jpg (310KB, 1971x1971px) Image search: [Google]
terry-davis.jpg
310KB, 1971x1971px
Linux is a piece of shit fucking human operating system. Linus is a fucking nigger monkey who brags about his piece of shit operating system having 20 million lines of code. He literally brags about his piece of shit program that nobody wiants to go near because it's a clusterfuck, annd he's a fucking nigger who can't even write a fucking compiler; he sucks Stallman's cock. Fucking nigger.
>>
is it possible to display images/video in ttyl? I heard that with libcaca you can actually play video without x or wayland, I think it was using mpv.
>>
simple command to check if you're using a distro for retards:
grep -rlis 'DO NOT EDIT THIS FILE' /etc
>>
File: 1493096377004.webm (3MB, 1600x900px) Image search: [Google]
1493096377004.webm
3MB, 1600x900px
#!/bin/sh

for i in `seq 1 $#`; do
[ "${!i}" = '-F' ] && { fs=0; break; }
done

feh --thumbnails \
--cache-thumbnails \
--thumb-height 256 \
--thumb-width 256 \
`# change this to your screen width` \
--limit-width 1600 \
--image-bg black \
--scroll-step 150 \
--action1 ';''[Copy file path]''echo -n $(readlink -f %F) | xclip' \
--action2 ';''[Copy file name]'"echo -n \'%N\' | xclip" \
--action3 ';''[Add to list]''! grep -q %F feh.list && echo %F >> feh.list' \
--action4 ';''[Remove from list]'"sed -i '/%n/d' feh.list" \
--action5 ';''[Set wallpaper]'"feh --bg-fill %F" \
--action ';''[Open image]'" \
tmp=%F; \
if [ \${tmp: -4} == \".gif\" ]; then \
index=\$(grep .gif %L | grep -n %F | cut -d : -f 1); \
index=\$((index-1)); \
mpv \$(grep .gif %L) \
--playlist-start=\$index \
--loop \
--loop-file \
--video-unscaled \
\$([ -n \"$fs\" ] && echo -n \"--fullscreen\") \
& \
else \
feh --filelist %L --start-at %F \
--image-bg black \
\$([ -n \"$fs\" ] && echo -n \"--fullscreen\") \
--info ';'\"echo -n \\\"Size: %%wx%%h\\\"\" \
--action1 ';''[Copy file path]''echo -n $(readlink -f %%F) | xclip' \
--action2 ';''[Copy file name]'\"echo -n \'%%N\' | xclip\" \
--action3 ';''[Add to list]''! grep -q %%F feh.list && echo %%F >> feh.list' \
--action4 ';''[Remove from list]'\"sed -i '/%%n/d' feh.list\" \
--action5 ';''[Set wallpaper]''feh --bg-fill %%F' \
& \
fi \
" \
$([ -z "$fs" ] && echo -n "\
--limit-width 1000 \
--thumb-height 200 \
--thumb-width 200 \
`#--bg /home/anon/.config/feh/bg.png` \
--title fehwrap-nofs \
") \
"$@"
>>
>>60062762
- Explanation

In the for loop it is determenened if you've used the -F flag (for fullscreen), so that some flags can be changed depending on that later on, see the 3 places that start with

$([ -z "$fs" ] && echo -n

.
The first two make it so the child feh and mpv are executed in fullscreen if -F is passed.
The last one changes some flags for non fullscreen mode.

The main feh command is executed in thumbnail mode, with some preset values and actions.
You execute an action by hovering over a thumbnail and pressing the coresponding number.
The action that doesn't have a number is the main one and is executed on click.
When the main action is executed, it checks if the image you clicked on ends with .gif and if so, opens it and all the gifs in the file list in a mpv playlist.
If it's not a gif, it opens it in feh, this time in normal mode, with the same actions defined.
If you've used the thumbnail mode, you'd know that you cannot cycle through images by default, so I had to do this to fix that problem besides adding the actions.

The reason why It's mostly just one long command and why I didn't split it into more functions and variables is because feh actions don't see anything defined in the script.
So I had to embed code into feh actions.
You should be able to easily change or remove any line.
Just make sure to end it with a backslash.
Also pay attention to nested quotes and variables in quotes that need to be escaped in order to be interpreted later.

I highly suggest that you read through the feh man page, especially the part about actions.

When executing it, you can pass all the arguments that you'd normally pass to feh, including flags, files and directories.
You can overwrite a flag that's in the script on the command line.
You can also add more actions on the command line.
>>
>>60062762
For what purpose?
>>
>>60062723
https://unix.stackexchange.com/a/227001
>>
>>60062779
it uses some kind of magic to turn feh into a suckless file picker for images, capable of sorting them etc.
>>
>>60062762
>>60062771

It's a wrapper script for feh meant to make living on the command line without any graphical file managers easier.
>how do I use it
Save it as fehwrap in your ~/bin (make a ~/bin folder and add it to your $PATH if you haven't already)
Also do `chmod +x fehwrap` to make it executable.

Don't forget, you can use it as a file picker, that's what action1 is for.

You need to install xclip if you don't have it already in order to pipe stuff in your clipboard.
If you use GTK3 in your browser's shitty file picker, you can press Ctrl+l to get the pathbar and just press the middle mouse button (or Shift+Insert).


Here's one example of using actions.
Let's say you want to move some of the images you've downloaded into different folders.
You can do this

fehwrap -F --action1 'mv %F ~/images/anime' --action2 'mv %F ~/images/4chan/'



That will override the actions in the script (you don't need them anyway).
Now you can just press 1 or 2 when you hover over a thumbnail to move it wherever you'd like.
Not using ';' as you see in the script makes feh cross out the images that the actions were performed on.

read the feh man page
>>
>>60062794
Thath's dumb.
>>
>>60062762
I forgot to mention to replace the
    `# change this to your screen width` \
--limit-width 1600 \

with
    --limit-width $(xdpyinfo | awk '/dimensions:/ { print +$2 }') \


>>60062779
Making bloated file managers obsolete
>>
>>60062809
Its not making anything obsolete. This little script lacks a bunch of functionality.I dont think you understand what bloat is kiddo
>>
>>60062821
it's okay
>>
no sound on headphones on new Arch install, wat do
>>
File: 2017-04-25-103935_821x587_scrot.png (203KB, 821x587px) Image search: [Google]
2017-04-25-103935_821x587_scrot.png
203KB, 821x587px
>>60062762
You can press `a` to toggle actions as in pic related.

Also, I have to add, the non fullscreen window will stretch to be as long as the screen height.
Setting geometry in feh will open the tumbnail mode in the middle (you'd need to scroll up to the start).
If you don't like that you need to resize the window with your window manager.
This is what I used to limit the window heigth in i3
for_window [title="(?i)fehwrap-nofs"] floating enable move down 100px
for_window [title="(?i)fehwrap-nofs"] resize shrink height 900px
for_window [title="(?i)fehwrap-nofs"] resize grow height 400px
>>
Mageia, Solus or Ubuntu?
>>
>>60062762
Cut out from the man page about actions for the lazy
     -A, --action [flag][[title]]action
Specify a shell command as an action to perform on the image. In slideshow or mul‐
tiwindow mode, the action will be run when the action_0 key is pressed, in list
mode, it will be run for each file. In loadable/unloadable mode, it will be run for
each loadable/unloadable file, respectively. In thumbnail mode, clicking on an
image will cause the action to run instead of opening the image.

If flag is ";", feh will reload the current image instead of switching to the next
one (slideshow mode) or closing the window (multiwindow mode) after executing the
action. If [title] is specified (note the literal "[" and "]"), --draw-actions will
display title instead of action in the action list. Note that title must not start
with a space. If it does, the action is handled as if it did not have a title. This
special case exists for backwards compatibility reasons and makes sure that actions
like "[ -L %F ] && foo" still work.

The action will be executed by /bin/sh. Use format specifiers to refer to image
info, see FORMAT SPECIFIERS for details. Example usage: "feh -A "mv ~/images/%N"
*".

--action1 .. --action9 [flag][[title]]action
Extra actions which can be set and triggered using the appropriate number key.
>>
>>60062879
unmute channel
>>
>>60062879
pacman -Rns pulseaudio
>>
>>60062762
someone has actually read the man page on feh
nice

feh is so more than a wallpaper setter
>>
>>60062790
neat
>>
>>60062899
>>60062906
ok so I only have 1 inbuilt Intel sound card and I unmuted Master, still nothing pic related
>>
>>60062951
did you do this >>60062906
>>
File: help.png (34KB, 832x529px) Image search: [Google]
help.png
34KB, 832x529px
>>60062951
sry forgot
>>
>>60062899
>>60062906
>>60062954
nvm sound randomly started working ty
>>
>>60062985
it's what happens when you use pulse
it won't be long before it randomly stops working again
>>
>>60062996
They are just memeing you. Pulseaudio is actually much better than using Alsa for a lot of purposes.
>>
>>60062996
What to do about pulse when firefox will drop completely support for it with flags also? ESR should last some more months.
>>
>>60063006
did you read his posts where he said he had no sound?

>>60063017
No, it will drop support for anything that isn't pulse (according to some).
I don't think that's gonna happen.
Maybe it won't have official support, but there are many intelligent people who don't use pulse that are capable of providing their own support.
>>
>>60063035
Uh, yes, that's what I meant, probably I wasn't clear enough. For now I'm sticking with waterfox that also works somewhat better.
>>
>>60062762
fehception
brilliant
>>
>>60062787
does this work with MPV?
>>
>>60063136
mpv can use the framebuffer, this should work
mpv -vo drm [args...]

make sure you're in the video group and actually can write to the framebuffer device
>>
>>60062805
y-you too
>>
>>60062762
sxiv -t *
>>
>>60063427
feh already does the same by invoking just `feh -t`
the script is an extension of functionality
also feh has more powerful command line options
>>
Hey, I'm trying to connect to VPN with OpenVPN. In the terminal, it says "Initialization Sequence Completed", but my IP didn't change. What's going on?
>>
>>60062894
>literal what, kevinnet or noobuntu

Ubuntu LTS
>>
What is the lightest server distro I can put on a dedicated cassandra server?

Apt would be nice but not a huge deal.
>>
>>60062720
>>>60062694
>>would it be possible to add support for .webm ?
>When I have more time, I'll try to implement that.
>Maybe I can use ffmpegthumbnailer to generate thumbnails for videos (put them in /tmp or something and add them to the file list) and make the main action open the corresponding file in mpv.
>It shouldn't be that hard, maybe some of you anons can do that?
let's get to it
>>
>>60063749
Source Mage
>>
>>60063749
RacherOS?
>>
>>60063749
Source Mage
>>
>>60063782
>RacherOS?
This seems amazing - do I have to used docker though?
>>
>>60063749
Alpine?
>>
>>60063762
>>60063782
>>60063790
>>60063801

What I need is something tiny with no bullshit, and a package manager.

Essentially I want the bare bones that gentoo offers without having to compile anything.
>>
I'm running a ubuntu server 16.10 with a ubuntu vm running plex.

I'm also running ddclient to connect from the outside. Is there a way I can forward traffic reaching my host on port 32400 onto my VM?

The vm network adapter is set to bridged right now.
>>
>>60063835
>>60063842
Source Mage
>>
>>60063857
>>60063790
>>60063762

Legitimately or what? I feel like I am being trolled by some gentoo2.0 memelord.
>>
>>60063870
Source Mage might be source based, but it's much easier than gentoo.
>>
>>60063835
Alpine comes with grsec, pax and everything you need for a server, however it uses musl. If you want lightweight and glibc, then Void is your choice.
>>
what DE should I use? i like the look and feel of gnome, and with dash to dock and flat plat gtk/shell themes it's basically my ideal DE. unfortunately, it lags horribly when dragging windows and makes my shitty PC get hot when just on the desktop. What's a less bloated and lighter DE that's easy to make look nice? I find that KDE, cinnamon, xfce and lxde all look terrible no matter what I do, unless I copy someone else's config files.
>>
>>60063915
>what DE should I use?
stopped reading there
try them all out and make up your own goddamn mind
>>
>>60063925
I just said, I tried them all and they all have major problems for me. I feel like I might just get a better pc and stick with gnome, because I'm too dumb and lazy to customise anything else.
>>
>>60063915
>What's a less bloated and lighter DE that's easy to make look nice?
the lighter it is, the harder it is to make it look nice, I suppose

>>60063936
don't stay on DE's forever
when you stop being lazy, switch to a window manager
>>
I'm trying to switch to i3wm but it's a little confusing even with a guide. I also don't really now how to make it look good beyond stealing dotfiles... got any cool/useful tips or keybindings? The extent of my customisation has been adding a wallpaper with feh, switching to vim directions, and leaving the ugly black bar on the bottom.
>>
>>60064088
if you're not a ricer, don't
just get kde or gnome mate
>>
>>60064088
https://www.youtube.com/watch?v=j1I63wGcvU4
>>
>>60064088
don't give up anon

>>60064131
kek kill yourself faggot
>>
>>60064131
nice one
>>
>>60064131
what is a "ricer"?
>>
>>60064088
Just read the config file and the online manual?
Here's a protip though: you can greatly simplify your config by setting values.
e.g.
 set $WS1 1:Web
>>
>>60063173
that's fucking neat, thanks
>>
http://www.ktechpit.com/ubuntu/tv-series-app-series-ninja-released-ubuntulinux/
>>
Give me three reasons to switch from windows to linux.
>>
>>60062684
whys he look so sad?
>>
>>60062702
>Not compiling per hand

You are as Nigger as it gets man
>>
>>60063658
>literal what
You have to be 18 to post here.

Mageia is the successor of mandriva, that is the fusion of mandrake and conectiva.
>>
>>60064172
"Pimp My Ride" the desktop version
>>
Can someone explain to me how the "sleep" button on my keyboard works with GNU/Linux?

When I press it, my computer just suspends or goes to sleep, not sure. Anyways, I'm using GNOME and when I look in the keyboard shortcuts, there's nothing that tells it to sleep yet it just works.

The reason I want to know how it works is because I want to tell it to lock my screen when I press it, because right now when I press sleep anyone could just wake up my computer and use it.

Distro: Arch
DE: GNOME 3
Display manager: Lightdm-gtk-greeter
>>
File: wayland-screenshot.png (291KB, 1920x1080px) Image search: [Google]
wayland-screenshot.png
291KB, 1920x1080px
test
>>
>>60064972
If anyone has physical access to your computer it's not your computer, regardless if it's locked or not.
>>
>>60065020
Regardless, I would like to know how to change its behaviour.
>>
>>60064972
I guess you should find option to lock your pc before sleep.
In 'system settings or something.
>>
>>60064673
Exactly, a literaly what

>le ebin 18 argument
Good, when are you fucking off?
>>
File: fedora-anonymous.png (1002KB, 655x745px) Image search: [Google]
fedora-anonymous.png
1002KB, 655x745px
>using a tiling window manager
>>
File: retard alert.gif (76KB, 600x416px) Image search: [Google]
retard alert.gif
76KB, 600x416px
>>60065102
If you had any knowledge of FOSS history you would know mageia.
>>
File: jim.jpg (324KB, 640x426px) Image search: [Google]
jim.jpg
324KB, 640x426px
>>60065133
>Using anything other than a tiling wm
>>
>>60064972
you could use
gnome-screensaver-command --lock &
systemctl suspend

and make a custom shortcut for it but it should lock the screen by default
>>
>>60065273
Ah yes, I used to have a keybind like this on my last computer. That will have to do until I figure out where to configure the sleep button.
>>
>>60065155
>TFW too intelligent to waste screen space on a tiling window manager
I would rather use something keyboard friendly.
>>
>>60065294
What's more keyboard-friendly than a twm?
>>
>>60065294
You are uninformed.
>>
>>60062684

I can passtrough my gpu to a windows VM to play games with almost same performance?

Its the only thing that stops me of moving permanently to GNU/Linux
>>
>>60065350
Yes. you need 2 gpus though
>>
Will games really run with roughly 50 less FPS? Does it clutter more than Windows or is it smoother?
>>
File: 1488028179572.png (54KB, 452x746px) Image search: [Google]
1488028179572.png
54KB, 452x746px
What are some cool terminal commands?
>>
>>60065374

I have the iGPU and a R9 270x.

So, i can right?
>>
>>60065404
what cpu
>>
>>60065423

Intel i7 7700
>>
>>60065404
Yes.
>>
>>60065446

AWESOME

Autism increased 10 points
>>
>>60065466
I recommend you try to setup before wiping the windows partition. Just to make sure everything works right.
>>
Updated manjaro kernel to 4.10.12, nvidia+bumblebee broken
kernel message shows:

nvidia: disagrees about version of symbol module_layout

In debian usually dkms fix this, but dkms isn't even installed.
mhwd -r / mhwd -a did nothing

what do
>>
Remind me again on how to fix the file picker meme.
>>
>>60065466
Depending on your iommu grouping you might need the acs override patch.
>>
>>60062688
Why is Stallman in the verge of tears in that pic?
>>
Would using a virtualmachine as my daily driver be a stupid idea?
>>
>>60065642
yes
>>
>>60065666
What triggered it? Sauce?
>>
>>60065642
Not as long as you don't need native GPU acceleration performance

Source: been doing it for 5 years
>>
>>60062879
Welcome to the world of GNU/Linux, my son.
>>
>>60062879
Works on Debian™
>>
>>60062879
I wonder if there's a website that collects informations about Arch which also has a page about sound.
>>
how to use gnu+linux and stay /fit/
>>
File: 0c8.jpg (21KB, 505x405px) Image search: [Google]
0c8.jpg
21KB, 505x405px
>>60064546
1.
>>
>>60065948
SS + GNUMAD.
>>
File: 1473787885739.jpg (191KB, 989x716px) Image search: [Google]
1473787885739.jpg
191KB, 989x716px
>>60065948
>>
File: distros.png (136KB, 493x255px) Image search: [Google]
distros.png
136KB, 493x255px
lmao, check out this faggot:
https://itvision.altervista
.org/why.linux.is.not.ready.for.the.desktop.current.html
(link already spamfiltered, wtf)
>>
>>60066083
>There are no antiviruses or similar software for Linux
heh
>>
good thread
>>
>>60065991
Who's the chick?
>>
>>60066438
Stallman on the left, Zyzz on the right.
>>
I've recently upgraded from ubuntu 14 to 16 and was wondering since rc.local isn't present anymore how do I set shit like my mdadm parameters on boot?
>>
File: 1492898068666.png (37KB, 1127x685px) Image search: [Google]
1492898068666.png
37KB, 1127x685px
>tfw notification of new email
>tfw it's not a reply from RMS
>>
>>60066479
That's why I use GNU.
>>
>>60066467
Who's the girl, you faggot
>>
>>60066479
What should we use instead???
>>
>>60066468
The one with stallman or zyzz? The one with zyzz is some retard instagrammodelmotivationalspeakercoach that he used to bang, ask on fit. Idk about the other.
>>
When doing anything that has to do with editing the contents of a laptop's hard drive, it freezes and the screen goes blank. I know for a fact that the hard drive is fully functional and not broken, what else could be the issue?
(Happens when trying to partition the drive in a linux live usb installation & live usb gparted)
>>
>>60066594
read the logs, they're more intelligent than us
>>
>>60066572
Free/Open/NetBSD
>>
>>60066594
Check the model on the internet and try changing the the disk mode on the bios.
>>
>>60066083

He's right on a lot of points, GNU/Linux lacks standards. I don't understand why he keeps mentioning Flash though, it's dead.
>>
>>60066724

A lot of people make a living by working on free software. It's just too fragmented.
>>
>>60066724
GNU makes software developers respect user's freedoms inlike corps and their butt-buddies BSD cucks pushing proprietary shit on everyone and enslaving software users. Stop shilling for corporate jews in here, nigger
>>
>sudo pacman -S steam
>target not found
what the fuck? It is literally in their repo. I've switched the mirrorlist, updated and it's still he same shit
>>
>>60066783
>pacman
>what the fuck?
That's normal.
>>
>>60066795
>>60066783
also uncommented multilib in pacman.conf and still doesn't work
>>
>>60066783
>steam
whats the point, just get the game without it
>>
>>60066826
nevermind, I didn't uncomment it completely

>>60066830
how? I know you can play some without steam but that's it
>>
>>60066783
It's in the multilib repo. Read the steam entry on archwiki shitforbrains.
>>
>>60066900
rude
>>
>>60066900
I know, I just thought I had it enabled already
>>
this is my favorite subchannel
>>
>>60066769
wew lad
>>
who else is using arch ITT?
>>
Anybody knows someone selling laptops with only free as in freedom firmware in Argentina?
>>
>>60067097
try thinkpenguin or minifree
>>
>>60067111
I am looking at minifree right now actually, wish some local store sell this, I want this so much
>>
File: 1489456619257.jpg (234KB, 1351x1013px) Image search: [Google]
1489456619257.jpg
234KB, 1351x1013px
>Where in the world is Richard Stallman?
Apr 28, 2017 03:00 PM Potsdam, Germany Event Richard Stallman - "Ethical Principles for Service-Oriented Computing" (Potsdam, Germany)
May 05, 2017 12:00 AM Catania, Italy Event Octet Stream Richard Stallman to speak in Catania, Italy
May 06, 2017 11:00 AM Palermo, Italy Event object code Richard Stallman - "Free Software, Your Freedom and Medicine" (Palermo, Italy)
May 12, 2017 01:00 PM Montreal, Canada Event Richard Stallman - "Free Software and Your Freedom" (Montreal, Canada)
May 29, 2017 02:00 PM Belo Horizonte, Brazil Event Richard Stallman - "A Free Digital Society" (Belo Horizonte, Brazil)
May 31, 2017 12:00 AM Campinas, Brazil Event Richard Stallman to speak in Campinas, Brazil
Jun 02, 2017 12:00 AM Curitiba, Brazil Event Octet Stream Richard Stallman to speak in Curitiba
Jun 05, 2017 12:00 AM Buenos Aires, Argentina Event Richard Stallman - "Por una Sociedad Digital Libre" (Buenos Aires, Argentina)
Jun 07, 2017 05:00 PM Santa Fe, Argentina Event Richard Stallman - "Por una sociedad digital libre" (Santa Fe, Argentina)
Jun 09, 2017 12:00 AM Buenos Aires, Argentina Event Richard Stallman va a estar en Buenos Aires, Argentina
Jun 12, 2017 05:00 PM San Salvador de Jujuy, Argentina Event Richard Stallman - "Copyright vs Comunidad" (San Salvador de Jujuy, Argentina)
Jun 13, 2017 06:00 PM Salta, Argentina Event Octet Stream Richard Stallman - "El software libre y tu libertad" - Salta, Argentina
>>
>>60067209
What about pasta for stores selling computer shipping with libre firmware? Some of us need that.
>>
what is the best distro for beginners?
what is the best distro for experts?
>>
>>60067241
this
>>
>>60067244
I use devuan and works fine for me, not an expert
>>
I am going to program a module for Linux.

How do I get the init process task_struct?

How do I get the task_struct for the currently running process?

Is it just a global variable current?

Is there a documentation on the Linux Library like JavaDocs? Google returns shit when I search sched.h
>>
Are ThinkPads about my only option for cheap Linux-capable laptops?

I have a t420 and honestly I'm sick of it. I want something more portable (than the x220), but with decent bios and driver support.
What about chromebooks?
>>
>>60067257
>>60067241
I only have this online store list.
http://minifree.org/
http://www.inatux.com/gnu
https://store.vikings.net/
https://lacpdx.com/gnu/Start
http://libre.thinkpenguin.com/
>>
>>60067209
Does he speak Spanish when he's doing a presentation in spicland?
>>
>>60067410
Yes.
>>
File: 1491132724719.jpg (29KB, 430x350px) Image search: [Google]
1491132724719.jpg
29KB, 430x350px
Ok, this shit drives me crazy. I'm using debian stretch with xfce on my shitty lenovo laptop. I can't make shutdown and reboot work. The laptop turns off but the screen stays on (reached target shutdown) and i have to press the power button in order to shut it down. Sometimes the screen turns off but i can hear the laptop working. I tried messing with /etc/default/grub/, upgraded the bios, 4.9 kernel, but nothing works. The new kernel fixed it for a while but after a few reboots the problem is still there. Please help, i'm losing my fucking mind. Also, the laptop hangs on suspend.
>>
>>60067334
Buy the XPS 13 or 15 from Dell
>>
>>60067410
afaik he's speaking english, french and spanish
>>
File: 1484577891384.jpg (160KB, 720x720px) Image search: [Google]
1484577891384.jpg
160KB, 720x720px
>>60067443
Stop already.
>>
File: 804e9b7a738d2424350bdc0c8725e15b.jpg (159KB, 1024x768px) Image search: [Google]
804e9b7a738d2424350bdc0c8725e15b.jpg
159KB, 1024x768px
>>60062747
>grep -rlis 'DO NOT EDIT THIS FILE' /etc

$ grep -rlis 'DO NOT EDIT THIS FILE' /etc
/etc/fonts/fonts.conf
/etc/modprobe.d/nvidia-375_hybrid.conf
/etc/resolvconf/resolv.conf.d/head
/etc/polkit-1/localauthority.conf.d/50-localauthority.conf
/etc/polkit-1/nullbackend.conf.d/50-nullbackend.conf
/etc/texmf/web2c/texmf.cnf


u wot
>>
>>60067369
nice thanks
>>
>>60067468
Why (((anon)))?
>>
>>60067419
>>60067436
>>60067443
Damn. I'd go see him but my autism can't stand thick English accents.
>>
>>60067428
What year model?
>>
I've seen some of you lot using PS CS6 on Arch, how do you all do it. It's literally the only reason I'm on windows.
>>
>>60067503
https://stallman.org/guantanamero.ogg
>>
>>60067503
???
RMS is not a britbong
>>
>>60067522
WINE
>>
>>60067516
This years of course. They make it so it works with Ubuntu. And they ship it with Ubuntu in the developer edition.
>>
>>60067553
I said cheap m8
>>
File: 1478407586707.gif (402KB, 360x640px) Image search: [Google]
1478407586707.gif
402KB, 360x640px
>>60067524
stallman-san!
>>
>>60067541
Sorry, I forgot to add fully functional.
>>
>>60067524
No pls make it stop ;_;
Not that bad tho.
>>60067526
I mean the thick accent from someone who speaks English, not Englishman. Rms has the typical gringo accent but I don't like using that word.
>>
File: 1470689273533.jpg (26KB, 599x337px) Image search: [Google]
1470689273533.jpg
26KB, 599x337px
How does /fglt/ store/manage its passwords?
>>
>>60067665
My brain.
>>
>>60067665
KeepassXC
>>
>>60067665
my passwords are a complaint about the site, making it easy to remember
>>
>>60067717
That's pretty smart
>>
>>60067717
that's pretty pessimistig, why not good things about the site? join the bright side of life, bro
>>
I'm running kubuntu 16.04 but there's no hibernation option along with suspend, restart and shutdown. Can this be fixed?
>>
You think trump would ever try to embrace free software?
>>
>>60067767
>>>/pol/
>>
>>60067773
Why? /pol/ is not a good place for politics, I've seen better talk about it on /v/.
>>
>>60067716
That is very interesting. Let's see if it gets included in Stretch.
>>
>>60067763
How much swap do you have?

>>60067767
Seems unlikely.

>>60067794
Agree.
>>
Thoughts? https://www.passwordstore.org/
>>
>>60067836
htop says 3.82Gb.
>>
>>60067837
I use keepassx, it does everything I need but some corners could be a little bit more polished. Like the sys tray integration.

>>60067858
And how much ram?
>>
>>60067816
It's no different than all the other Keepass variants though, but it runs faster on my machine so that's why I use that one.
>>
>>60067867
8Gb. Do I need the same amount?
>>
>>60067870
I found it to be interesting because of the better systray integration. But alltray + a decent ion are working fine.

>>60067880
At least. You can create a swap file in a partition that has free space.
>>
Is there a way to set a plain one colour background in awesome, without using an image?
>>
>>60067901
Ok, what else do I need to do after that?
>>
>>60067716
>KeepassXC
I don't trust it, I prefer KeePassX
>>
I'm seeing a lot of FUD about wayland, how much of it is true?
>>
>>60067901
>At least
Not netcessarily
https://wiki.archlinux.org/index.php/Power_management/Suspend_and_hibernate#About_swap_partition.2Ffile_size
I can hibernate just fine on less swap size than my RAM
>>
I'm seeing a lot of FUD about systemd, how much of it is true?
>>
>>60067938
>discord
>>>/out/
>>
>>60067927
Just that I guess. Create the file and add to fstab.

>>60067937
ty was wondering about that
>>
>>60067970
Why not just making the current swap bigger?
>>
>>60067849
Seems good.
>>
>>60067989
I assumed your disk was fully used and you didn't want to resize partitions.
>>
>>60067938
What's this about
>>
>>60068014
Ah ok, thanks!
>>
>>60067935
Depends, some fanboys are shilling it too much but is not good for daily use, and the rumors of having security issues are not rumors but that is a rather technical discussion
>>
Just found my 20-something cds of debian Etch(4.0). My connection was shit so I downloaded at school and burned everything to cds.
>>
File: IMG_0932.jpg (2MB, 3264x2448px) Image search: [Google]
IMG_0932.jpg
2MB, 3264x2448px
>>60068074
Forgot pic
>>
>>60068074
>>60068132
I never fully understood this about debian, what's in the cd's? All of the repo?
>>
File: FLIQCjM.jpg (82KB, 555x786px) Image search: [Google]
FLIQCjM.jpg
82KB, 555x786px
There are two things on Linux that make me consider taking an IQ test just to see whether I'm retarded or not: running an ftp server, running a proxy server.

I try to set up either of them about once a year and every time I get kicked in the nuts by configuration.
I just want a simple thing, and I want it to work. But it never fucking does.

Am I retarded?
>>
>>60068156
GNU/Linux*
>>
>>60068156
no, its just that hard.
>>
>>60068167
GNU+Linux*
>>
>>60068150
Yes. It was very very convenient when broadband was not so widespread.
I don't know if makes that much sense nowadays. I guess it's still easier than setting up a local repo.
>>
handy website btw https://linuxlifecycle.com/
>>
>>60068156
Consider go for an ssh server instead. The ssh protocol can be accessed with lftp.
>>
>>60068150
Yes, all the stable packages in main.
>>
>>60068156
>Am I retarded?
Yes. Mainstream software for those protocols literally work out of the box. Isn't iptables blocking?
>>
>>60066604
What logs? It doesn't write any logs, it just freezes randomly and crashes into a blank screen.
>>
>>60068194
>Debian Linux
>>
>>60068223
are you using arch?
>>
when will this arch breaks meme end?
>>
Are you trying to do something special with your FTP server? If not, why not just use sshd and sftp instead?
Also, what kind of proxy are we talking about here? Web proxy such as squid or something like ipsec?
>>
>>60068261
When newfriends who can't handle it stop installing it.
>>
File: arch-crying.png (443KB, 920x900px) Image search: [Google]
arch-crying.png
443KB, 920x900px
>>60068261
Stay mad retarcher.
>>
>>60068320
Or should I say retardacher.
>>
>>60068261
>arch breaks
arch already comes with a lot of ootb breakage like wrong python links that break programs
>>
>>60068201
I would use SSH if I could. But I'm dealing with some old and restricted systems, so not a lot of choice in software.

>>60068215
>work out of the box
... no?

In the case of FTP, all I want is to have a simple server I can start, log into it with an anonymous user, and use ftpput to upload some files.
vsftpd was complaining about permissions and writeable in the chroot or something.
bftpd worked locally but remote connections timed out. FTP tests showed that it returned local address when accessed remotely, so I set it to bind to my static IP but it could not do that.

I'm not asking for too much, am i?

>>60068275
SSH isn't an option.
Web proxy, specifically HTTP/HTTPS kind. I love using SOCKS proxy through SSH, but some programs require HTTP proxies.
I tried messing with Squid a while ago, can't remember what went wrong.
>>
Hi guys! What would be an acceptable set up security related for a little homeserver with debian stable?

I already have iptables and fail2ban but I'm scared of leaving something not covered. Thanks fellow anons.
>>
>>60068352
>I love using SOCKS
m-me too
>>
>>60068353
If you have SSH disable root login and be sure to have a strong password for the user that can log in. Maybe change the port too.
And obviously install security updates whenever they are released.
>>
>>60067369
Thank you
>>
File: 1417040482052.png (5KB, 276x270px) Image search: [Google]
1417040482052.png
5KB, 276x270px
>>60068348
>>
>>60068352
Did you restart the daemon after editing bftpd's config? Did you try pureftp/proftpd?

Try squid again and tell US what goes wrong.
>>
>>60068406
I already have that. Non root login, login with a key, port changed. Maybe user password is a little weak but they need 1st the key.

I'm running right now trasmission, samba, ssh.
>>
>>60068410
python -c 'print "faggot"
works on all distros except arch, arch users need to either fix the python link or call python2 explicitly:
python2 -c 'print "faggot"'

now imagine this in a larger program
post python3 programs already call the required python binary, but pre python3 programs simply call python, this breaks backwards compatibility
>>
>>60068428
It seems like you know what you're doing.
>>
>>60068464
>python -c 'print "faggot"
forgot a '
python -c 'print "faggot"'
>>
File: respect-57c26c741012c.jpg (33KB, 946x946px) Image search: [Google]
respect-57c26c741012c.jpg
33KB, 946x946px
>>60068426
>Did you restart the daemon after editing bftpd's config?
picrelated

it's 1AM, i'll try squid again later.
good night for now.
>>
Is linux ancap or ancom?
>>
>>60068464
Arch is bleeding edge, this means Arch is the distro of the future. In the future, nobody will use Python 2 and Python 3 will become standard Python (it basically already is).
>>
>>60068473
Well, I'm glad I'm doing okay for a basic set up at least.

In the very neary future, I would like to mess up with some web servers and owncloud. Should I take something extra in consideration to be well secured about low hanging fruit tries?
>>
>>60068510
"free as in free market"
>>
>>60068464
Has that actually ever been a problem?

oh wait, it hasn't. and won't be.
>>
>>60068510
>No governing body
Anarchist
>Red Hat
Capitalist
>GNU
Communist
It's both anon
>>
>>60068464
Debian also does the python and python2 thingy.
>>
>>60068510
None of this things exist. They are retard memes used by internet manchildren.

Communism is materialist.
Basically all captalism is pragmatic.
Anarchism is idealist.
(In the philosophical sense of the words, before some retard comes shit through their mouth)

Also, there are more obvious structural incompatibilities. And of course there are the parts that are just plain stupid.
>>
>>60067209
Why isn't he visiting Venezuala? Isn't that that his favorite country?
>>
>>60068464
Yes, it hasn't because
>>60068529
Packages are compiled like
https://git.archlinux.org/svntogit/community.git/tree/trunk/PKGBUILD?h=packages/weechat

Now do some proper research beforehand so you won't look like a retard
>>
>>60068569
official arch packages
how about all other programs?
>>
>>60068556
Communism is 100% against private property.
>>
File: desudesu.png (8KB, 308x107px) Image search: [Google]
desudesu.png
8KB, 308x107px
>>60068546
pic

>>60068602
No. It's against private property of the means of production.
>>
>>60068593
aur isn't official
>>
>>60068593
And how would that be any different faggot? If it's unofficial, then that means you have to compile it, thus, you specifically have to point to the python2 executable
>>
>>60068514
As far as web servers, both apache and nginx are fairly secure with default configs. The main concern is with security of the application (whether it be written in php, js, cgi). For example you have to be careful with all user input so you don't have shell injection, database injection, XSS, HTML injection etc.
>>
what is the best distro that just works, is lightweight and up-to-date?
>>
>>60068675
Free: Debian Sid + LXDE/XFCE/MemeWM
Cuckietary: Lubuntu/Xubuntu
>>
>>60068675
You forgot to attach a rare pepe.
>>
>>60068675
Latest Ubuntu MATE.
>>
>>60068692
how stable is debian sid compared to arch?
>>
>>60068713
I bit more stable. You can also use debian testing that is even more stable. Or use the stable distro and enable the backports.
>>
>>60068713
I think they're about the same. I used sid for a few months with only a few issues.
>>
>>60068659
I think I want to try to get finally lighttp running since I have an unfinished business with it. But I'm open to other suggestions.

Debian is currently on a Odroid-XU4
>>
File: Screenshot_2017-04-25_21-45-29.png (69KB, 642x433px) Image search: [Google]
Screenshot_2017-04-25_21-45-29.png
69KB, 642x433px
I just switched from Arch to Debian Testing, what should I except?

I wanted to go with OpenSUSE first but for some reason, the DM did not work with any of the DEs and I couldn't be bothered to fix it.
>>
>>60068713
Sid is akin to Arch's testing repo. Arch *needing* a testing repo should already clue you in on how stable it is
>>
>>60068759
>what should I except?
Idk, try getting a job.
>>
>>60068626
Literally in the very manifesto it says to achieve communism the concept of private property must be abolished.
>>
File: 2012-new-year.png (636KB, 1890x1917px) Image search: [Google]
2012-new-year.png
636KB, 1890x1917px
>>60068759
>I just switched from Arch to Debian Testing, what should I except?
Outdated software.
>>
>>60068759
less breaks
>>
>>60068788
nice meme
>>
>>60068759
welcome home
>>
I'd like to backup my kernel 4.2.x-ARCH and upgrade to the current.
last time I did this it broke a lot of my shit. I run a headless system that serves as a server for my shit around the house.
help a brother out?
>>
>>60068787
It's not about the kind of private property you are thinking of.

>Hard-won, self-acquired, self-earned property! Do you mean the property of petty artisan and of the small peasant, a form of property that preceded the bourgeois form? There is no need to abolish that; the development of industry has to a great extent already destroyed it, and is still destroying it daily.

>Or do you mean the modern bourgeois private property?

https://www.marxists.org/archive/marx/works/1848/communist-manifesto/ch02.htm
>>
>>60068840
>I run arch on a server
You asked for it.

Do you use btrfs or lvm? Try a snapshot.
If not simply dd the root and boot partitions.
>>
>>60068840
>4.2 ARCH
>Server
What were you even thinking. A rolling release distro doesn't play well with not updating, 4.2 is more than a year ago
>>
>>60068857
>There is still no need to abolish that.
So he has no problem with eventually destroying it in the future. Ironically his love for centralized banking, big government, and regulation would have destroyed it also.
>>
>>60068840
>ARCH and upgrade
>broke a lot of my shit
That's normal.
>>
>>60068914
i dont like this meme
>>
>>60068514
hey there, I've set up a webserver with nextcloud, a mail server and rainloop on a vps in the last few weeks, so I can share my experience a bit.
I also set up ssh the way you described. That should be safe. The next defense is my firewall (firewalld), which is set to zone=public and allows only relevant services (https, http, imap, smtp and ssh). Since ssh should be safe, I only have to worry about the rest. For http and https I only have Apache installed, so that's one thing to keep an eye on. smtp is postfix, and imap is dovecot, so when they are propely configured that door is closed as well.
All in all I have 4 programs to properly configure and keep updated: ssh, apache, postfix, dovecot. I split my time between the last 3 because ssh doesn't need that much setting up - apache however has the largest amount of possible errors (for the first few minutes/hours of running it, strangers could see the contents of my /var/www/html folders, for example.).
As for nextcloud and rainloop, I can only configure them properly and keep them up to date, so there isn't all that much I can do to keep them safe after I do those things.
>>
File: inxi_1.7_2.png (30KB, 874x422px) Image search: [Google]
inxi_1.7_2.png
30KB, 874x422px
>>60068759
Use inxi instead of the screenfetch meme
>>
>>60068912
No. He means he has no problem with that and makes a critique to the bourgeois.

>Ironically his love for centralized banking, big government, and regulation would have destroyed it also.
That's you opinion, and it's off topic.
>>
>>60068940
t. nsa
>>
>>60068931
Why? It applies to any rolling release distro if you don't regularly update, including the oft-memed debian sid. If you can't deal with this you have no business using a rolling release.
>>
>>60068946
They already give away information. For fucks sake, they fell for the meme and make a thread that is datamining general, they may as well go balls deep.
>>
File: 1492836499254.png (212KB, 383x299px) Image search: [Google]
1492836499254.png
212KB, 383x299px
>>60068940
>gcc 4.5.2
>>
>>60068940
>implying I didn't install Debian just for the logo

Seriously though, I'm extremely pleased right now. I've tried most distributions out there and Debian feels great, zero problems thus far.
>>
>>60068940
https://en.wikipedia.org/wiki/Pardus_(operating_system)
>Turkroach
>>
File: IMG_20170425_210504.jpg (3MB, 4608x3456px) Image search: [Google]
IMG_20170425_210504.jpg
3MB, 4608x3456px
What went wrong?
>>
>>60068994
>>60069005
Jokes on you, is not my pic
>>
>>60069019
post build.log and make.conf
>>
What's the best way on Linux for a noob to encrypt a file? On Windows I did it for all my passwords by just clicking "encrypt" in the right click menu, but when I switched to linux none of them would open so I had to put them into plaintext again and now they're just sort of sitting there.
>>
>>60069078
Well thanks, I had a typo in my make.conf
>>
>>60069096
GNU/Linux*

man gpg
>>
>>60068878
what I had kinda thought
>>60068907
thanks nigga
>>60068914
didn't know at the time
>>
>>60069109
emake failing is usually related to make.conf
>>
>>60069136
I wrote "march skylake"

Should I even use skylake or does using native have advantages?
>>
>>60069174
i've never used anything but native, my systems are old though.
>>
>>60068933
>As for nextcloud and rainloop, I can only configure them properly and keep them up to date, so there isn't all that much I can do to keep them safe after I do those things.
Well, the Cloud related security measurements are more web server related than anything I guess. I'm really really new to the web server thing + paranoid so it is not a good mix, I always think I'm leaving something behind.
>>
>>60069174
>does using native have advantages
same shit (assumning you specified your CPU arch correctly)
>>
>>60069096
http://www.tecmint.com/linux-password-protect-files-with-encryption/
>>
Happy with this switch. just gotta figurer out gpu pass through but that can wait for another day.
>>
>>60069210
I think failing at something is a really efficient way to learn - so I wouldn't worry too much about safety, you always make a silly mistake that you find later.
For example, at the moment I'm failing at setting up https for mydomain.com and mydomain2.com on the same server. mydomain works, mydomain2 doesn't. But I need to fail in order to learn how to succeed at this.
>>
>>60069465
Yeah but I don't like to fail when I'm exposing my network to other people. That's why I'm paranoid.
>>
>>60068994
(((gcc))) is bloated as fuck.
>>
File: pimpinainteasy.gif (23KB, 320x240px) Image search: [Google]
pimpinainteasy.gif
23KB, 320x240px
>>60062762
>>
>>60069771
fuck off already, retard
>>
>>60069829
Why? I have done nothing wrong.
>>
>>60068243
>>60068261
Nice meme. But every distro crashes it, debian, arch, ubuntu, etc.
>>
>>60069829
why give him attention. thats obviously why he responded to me
>>
>>60069857
So the problem is systemd? Try a nob-systemd distro then.
>>
>>60069857
>>60069896
Don't blame the tool!
>>
>>60069923
Blame the fool! XD
>>
>>60069940
XDDDDDDDDDDD fug
>>
>>60069923
>>60069940
>blame the fool

Ok, is Lennart's fault then, try a non-Lennart distro
>>
Hello, guys, a small bash question.
How can i get my old username if i already work as root? An example:

#here i am a simple user yet
if [ $USER != 'root' ]; then
echo ":("
else
#how can i get my username here? $USER is "root" now
fi
>>
New thread:
>>60069981
>>60069981
>>60069981
>>
>>60065631
prolly because someone introduced him as a figure in the "open source" movement, as they usually do
Thread posts: 313
Thread images: 34


[Boards: 3 / a / aco / adv / an / asp / b / bant / biz / c / can / cgl / ck / cm / co / cock / d / diy / e / fa / fap / fit / fitlit / g / gd / gif / h / hc / his / hm / hr / i / ic / int / jp / k / lgbt / lit / m / mlp / mlpol / mo / mtv / mu / n / news / o / out / outsoc / p / po / pol / qa / qst / r / r9k / s / s4s / sci / soc / sp / spa / t / tg / toy / trash / trv / tv / u / v / vg / vint / vip / vp / vr / w / wg / wsg / wsr / x / y] [Search | Top | Home]

I'm aware that Imgur.com will stop allowing adult images since 15th of May. I'm taking actions to backup as much data as possible.
Read more on this topic here - https://archived.moe/talk/thread/1694/


If you need a post removed click on it's [Report] button and follow the instruction.
DMCA Content Takedown via dmca.com
All images are hosted on imgur.com.
If you like this website please support us by donating with Bitcoins at 16mKtbZiwW52BLkibtCr8jUg2KVUMTxVQ5
All trademarks and copyrights on this page are owned by their respective parties.
Images uploaded are the responsibility of the Poster. Comments are owned by the Poster.
This is a 4chan archive - all of the content originated from that site.
This means that RandomArchive shows their content, archived.
If you need information for a Poster - contact them.