Como escrever Logcat inteiro em sdcard?

Preciso gravar o Logcat inteiro no sdcard e não no Logcat filtrado. Então eu tentei fazer dessa maneira

String[] cmd  ={"/system/bin/logcat " +"-f"+" /sdcard/d.txt"};
    Log.d("NTK","cmd string"+cmd);
    Runtime run = Runtime.getRuntime();

    Process pr;
    try {
        pr = run.exec(cmd);

    pr.waitFor();
    BufferedReader buf = new BufferedReader(new InputStreamReader(pr.getInputStream()));
    String line = "";
    while ((line=buf.readLine())!=null) {
        System.out.println(line);
        Log.i(NTL, "lines"+line);
    }
    } catch (IOException e1) {
        // TODO Auto-generated catch block
        e1.printStackTrace();
    } catch (InterruptedException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }

ambém forneci todas as permissões no arquivo de manifest

Não é possível gravar o logcat no sdcar

questionAnswers(2)

yourAnswerToTheQuestion