Probably obvious but just in case I'll mention that you can also use $HOME
instead of ~.
On Wed, Sep 26, 2018 at 2:43 PM Kurtis Rader wrote:
> On Wed, Sep 26, 2018 at 1:43 PM John Chludzinski <
> john.chludzin...@gmail.com> wrote:
>
>> I tried to use ~ in a path and got this:
>>
>> sudo dd if=~
On Wed, Sep 26, 2018 at 1:43 PM John Chludzinski
wrote:
> I tried to use ~ in a path and got this:
>
> sudo dd if=~/Downloads/SSS/sss_image-20180817.img of=/dev/sdb bs=1048576
>
> dd: failed to open '~/Downloads/SSS/sss_image-20180817.img': No such
> file or directory
>
That is the expected beha
I tried to use ~ in a path and got this:
sudo dd if=~/Downloads/SSS/sss_image-20180817.img of=/dev/sdb bs=1048576
dd: failed to open '~/Downloads/SSS/sss_image-20180817.img': No such
file or directory
This works fine:
sudo dd if=/home/jski/Downloads/SSS/sss_image-20180817.img of=/dev/sdb
bs=10