Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

mount network drive from windows wsl ubuntu

sudo apt install cifs-utils
sudo mkdir /mnt/share
# note the slashes are forwards
# version is sometimes needed but optional
sudo mount -t cifs -o user='joe',pass='shmo',vers='1.0' //server/share /mnt/share
# to dismount
sudo umount /mnt/share && sudo rmdir /mnt/share
Comment

PREVIOUS NEXT
Code Example
Shell :: kubernetes get persistent volumes 
Shell :: vite js install 
Shell :: vim change all spaces to tabs 
Shell :: install docker compose ubuntu 20.04 
Shell :: Could not install packages due to an EnvironmentError: [WinError 5] Access is denied: 
Shell :: oh-my-zsh 
Shell :: linux get oldest file in directory 
Shell :: install ghost script 
Shell :: gitignore files that are already tracked 
Shell :: windows start shortcut cmd administrator 
Shell :: how to change my default branch in git 
Shell :: create git repository 
Shell :: gcc info linux 
Shell :: git diff between one file 
Shell :: ubuntu iptables add rule 
Shell :: GIT: change branch 
Shell :: sed from match to end of file 
Shell :: docker push to private registry 
Shell :: how to cat only the first ten lines of a file linux 
Shell :: bash do while one line 
Shell :: install mongodb debian 10 
Shell :: pg_dump export single table 
Shell :: wsl2 curl localhost 
Shell :: git pull <remote 
Shell :: makefile linux 
Shell :: prettier npm 
Shell :: cmd run exe as service 
Shell :: git backtrack to commit 
Shell :: docker compose volumes 
Shell :: check scheduler on localhost laravel 
ADD CONTENT
Topic
Content
Source link
Name
9+7 =