Comment by Kamil Maciorowski on Why am I getting "Partition 3 does not start...
"the start sector is not wholly divisible by 512" – Where did the number 512 come from? Why not 8?
View ArticleComment by Kamil Maciorowski on sshfs mount causing system to be very slow...
"removing that sshfs connection" – How did you remove it? AFAIK sshfs shall not survive a reboot; so unless the mount in question is automated somehow to happen anew at boot, the server being offline...
View ArticleComment by Kamil Maciorowski on ssh config generic vs specific the title...
Does this answer your question? Are host configurations in the SSH config merged?
View ArticleComment by Kamil Maciorowski on What is the purpose of 'nice' command without...
About nice -10 being equivalent to nice -n 10: Why does nice with a negative argument (e.g. nice -15) increment niceness?
View ArticleAnswer by Kamil Maciorowski for Bash provide comma-separated list in multiple...
Store the values without separators in an array. Use the fact that "${array[*]}" expands to a single word that contains all the members of the array concatenated, with the first character of $IFS in...
View ArticleComment by Kamil Maciorowski on Custom Keyboard Layout Not Working
Welcome to Super User. Is your question really "Has anyone ever experienced such a problem before?"? The answer is either "yes" or "no", but is this really what you want to know? "How can I make the...
View ArticleComment by Kamil Maciorowski on How are third-party providers (e.g. Huawei)...
"in networks that are not accessible to the public", "you can regulate exactly which data traffic is routed where" – What hardware or software separates networks? With what hardware of software do you...
View ArticleAnswer by Kamil Maciorowski for Unable to capture remote client data with...
ExplanationIt's about stdin of socat.For a command run in the background with &, there are basically two possibilities:If job control is disabled in the shell (this is the default for scripts),...
View ArticleComment by Kamil Maciorowski on Why would sudo complain about DNS name...
"Found it!" – What was the point of posting this question then? It will be closed as a duplicate of the one you have found. Unless… Unless your primary question is "how can I configure sudo to not do...
View ArticleComment by Kamil Maciorowski on Hard drive won't work after deleting whole...
"to my external SSD", "when I connect hard drive" – SSD is not a "hard drive", so are are referring to two different devices? I mean: you tried to install Ubuntu Server to your SSD and this act somehow...
View ArticleAnswer by Kamil Maciorowski for Remove all files with name starting with...
Analysisthe quotes are part of the nameAre you sure? How do you know? There is this "feature" of modern GNU ls, so it prints names with additional quotes, where there are characters like ? inside; so...
View ArticleComment by Kamil Maciorowski on Bug in FFmpeg signature?
Welcome to Super User. This site is all about questions and answers, but your post is just a story. Please [edit] and ask a well-defined question.
View ArticleComment by Kamil Maciorowski on Keep command line visible while scrolling
Something similar, using tmux+bash: here. Not perfect though.
View ArticleComment by Kamil Maciorowski on Alternative for transfer.sh
Questions seeking service recommendations are off-topic.
View ArticleComment by Kamil Maciorowski on why does assigning a var with command...
"for some reason ansible devs think storing a vault-password in a plain text file is secure" – They give you another option. Use the "If executable, it will be run and the resulting stdout will be used...
View ArticleComment by Kamil Maciorowski on Tmux session disconnect does not preserve...
(1) How do you start the tmux sessions? and sftp within? (2) Do you really need multiple tmux sessions? One tmux session with one window with multiple panes may be enough. (3) When detached from tmux,...
View ArticleAnswer by Kamil Maciorowski for How do I list all directories with include...
With GNU find:find /music -type d -execdir test -d {}/{} \; -printFor each file of the type directory test will be run. The trick is in how -execdir differs from -exec: for a directory named something,...
View ArticleComment by Kamil Maciorowski on tail -f does not follows files on WSL
Does this help? stackoverflow.com/q/69331285/10765659
View ArticleComment by Kamil Maciorowski on What does an asterisk in the password field...
@Sathesh unix.stackexchange.com/q/3586/108618
View Article