Comment by Kamil Maciorowski on Why is -r recursive necessary when copying a...
"cp does not copy directories - cp copies files (and only files)" – Well, directory is officially a file.
View ArticleComment by Kamil Maciorowski on Bash function to make function for menu
options=( $(cd …&& find …) )– Do not go this way or some day a filename like a * b.java will surprise you. The line may kinda work after set -o noglob and with IFS=$'\n', but the right way is...
View ArticleComment by Kamil Maciorowski on Can I show multiple tmux sessions in one pane?
"6 different shells open on the same screen through tmux but I don't know what he was doing so" –Splitting a tmux window to multiple panes is one of the basic features. (1) So you have multiple tmux...
View ArticleComment by Kamil Maciorowski on Can two computers have the same default name?
Where does one observe the names you are talking about? (Like "in such-and-such a window of such-and-such OS".)
View ArticleComment by Kamil Maciorowski on Filezilla Server and Client Port 21 enabled?
This rant: FTP Must Die, paragraphs 2, 3 and 4.
View ArticleComment by Kamil Maciorowski on Can ionice reduce wear and tear on hard disks?
What do you mean by "by disk order"? I doubt my Debian knows the exact physical layout of heads, platters, remapped sectors and so in my HDDs. In the days of CHS OSs could and should know some of...
View ArticleComment by Kamil Maciorowski on How can fstab direct linux to mount the root...
On our sister site: How is /etc/fstab accessed before root is mounted?
View ArticleComment by Kamil Maciorowski on Why my windows drive is appearing as...
"drive is shown as encrypted in Linux" – Where exactly? Please [edit] and post the exact command plus its output (as text) that makes you believe your Linux finds the drive encrypted. Or if this...
View ArticleComment by Kamil Maciorowski on Why is my Windows drive is appearing as...
"drive is shown as encrypted in Linux" – Where exactly? Please [edit] and post the exact command plus its output (as text) that makes you believe your Linux finds the drive encrypted. Or if this...
View ArticleComment by Kamil Maciorowski on Bash: execute in parallel some processes but...
Aren't "I would like to cast many ipset-restore at once" and "I need that every process have finished before proceeding next" contradictory.
View ArticleComment by Kamil Maciorowski on Why is my Windows drive appearing as...
"drive is shown as encrypted in Linux" – Where exactly? Please [edit] and post the exact command plus its output (as text) that makes you believe your Linux finds the drive encrypted. Or if this...
View ArticleAnswer by Kamil Maciorowski for Shrink total disk image: UEFI GPT Flashdrive...
There should be a primary (main) GUID Partition Table at the beginning and a secondary (backup) one at the end of the raw file created by dd. Truncating the file destroys the secondary one. There is a...
View ArticleComment by Kamil Maciorowski on ubuntu filesystem display names in df -hT
Please don't post images of text.
View ArticleComment by Kamil Maciorowski on Does NFS have an intelligent algorithm for...
The question is about "multiple processes", your answer is about "multiple clients". It's not clear if the question is about multiple processes on multiple machines, or maybe about multiple processes...
View ArticleAnswer by Kamil Maciorowski for How to bring a job to foreground and then...
Basic solutionI wish to disable the Ctrl+Z shortcut from suspending the process.For this you don't need to disable job control. Tell the terminal driver not to send SIGTSTP upon Ctrl+Z:stty susp ''If...
View ArticleComment by Kamil Maciorowski on Mouse pointer shaking when moving
"Connecting a different mouse into the the computer works fine, and when connecting the faulty mouse into a different computer the fault persists." – So it's the mouse. What is the make and the model...
View ArticleComment by Kamil Maciorowski on How to achieve side by side output in Bash?
What if the lines are longer? What if the lines are of varying length? What if their lengths are not known in advance?
View ArticleComment by Kamil Maciorowski on tmux - How to change text color of current...
set-hook -g window-pane-changed 'if -F …?
View ArticleComment by Kamil Maciorowski on How can I use the last changed file as an...
In zsh: echo *(NDom[1])or so.
View ArticleComment by Kamil Maciorowski on setting up ssh between two windows machines -...
Please do not cross-post. For the record, the other copy is on Server Fault.
View Article