HackerTrans
TopNewTrendsCommentsPastAskShowJobs

pramsky

no profile record

comments

pramsky
·há 10 meses·discuss
Someone released this a few years back.

https://news.ycombinator.com/item?id=36799776 https://github.com/bartobri/no-more-secrets
pramsky
·há 3 anos·discuss
It has been toxic since I started playing cs way back in 2000.
pramsky
·há 4 anos·discuss
>> For example, want to list services? Just use `ls /etc/init.d/`

You can do systemctl list-unit-files

If you want to see the enabled services, then add --state=enabled , for disable --state=disabled. You can grep for those words as well.

>> Want to monitor a log file? Use something like `tail -f /var/log/whatever`

You can still do that.

With systemd, You can use journalctl to tail the log file by journalctl -u <unit> -f , so something like journalctl -u postfix -f

You can use journalctl to search for logs in a specified time period journalctl -u postfix --since "2022-09-30 15:10:00" --until "2022-10-01 02:00:00"

Want to see a log for a specific boot ?

journalctl --list-boots journalctl -b <boot id from the previous command>

You can view more about journalctl at https://linuxhandbook.com/journalctl-command/

>> How can I reliable see what file systems are supposed to be mounted at boot?

I still use fstab for this.

>> Sure, it wasn't super consistent but you used the same tools as you always used to.

You can still use most of the same tools. I use tail,grep,awk like I used to, but I like the fact that with systemd I get a system configuration layer (which includes the init system) rather than having different tools in each distro.

Do you prefer the old init system because it is something you are used to (and do not want to change) or do you have specific instances where systemd is broken for you ?
pramsky
·há 4 anos·discuss
Those are screenshots from the old GUI which used X11/KDE. They are working on a new one which do not have any screenshots up yet.
pramsky
·há 5 anos·discuss
This whole incident reminds me of the Tuttle OK vs Centos incident from 2006

https://www.theregister.com/2006/03/24/tuttle_centos/
pramsky
·há 5 anos·discuss
I assume some of those apps may not work with case sensitive file systems. Which I believe is supported by ZFS.